pds-dev-kit-web-test 0.0.10 → 0.0.12

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (369) hide show
  1. package/.vscode/settings.json +1 -1
  2. package/dist/index.d.ts +10 -8
  3. package/dist/index.js +21 -6
  4. package/dist/src/common/assets/icons/fill/Bookmark.d.ts +4 -0
  5. package/dist/src/common/assets/icons/fill/Bookmark.js +34 -0
  6. package/dist/src/common/assets/icons/fill/index.d.ts +1 -0
  7. package/dist/src/common/assets/icons/fill/index.js +2 -0
  8. package/dist/src/common/assets/icons/line/BellNotification.js +2 -2
  9. package/dist/src/common/assets/icons/line/Bookmark.d.ts +4 -0
  10. package/dist/src/common/assets/icons/line/Bookmark.js +34 -0
  11. package/dist/src/common/assets/icons/line/HeartCare.d.ts +4 -0
  12. package/dist/src/common/assets/icons/line/HeartCare.js +36 -0
  13. package/dist/src/common/assets/icons/line/PhotoMultiple.d.ts +4 -0
  14. package/dist/src/common/assets/icons/line/PhotoMultiple.js +37 -0
  15. package/dist/src/common/assets/icons/line/PostArticle.d.ts +4 -0
  16. package/dist/src/common/assets/icons/line/PostArticle.js +36 -0
  17. package/dist/src/common/assets/icons/line/Unlock.d.ts +4 -0
  18. package/dist/src/common/assets/icons/line/Unlock.js +36 -0
  19. package/dist/src/common/assets/icons/line/VodShorts.d.ts +4 -0
  20. package/dist/src/common/assets/icons/line/VodShorts.js +36 -0
  21. package/dist/src/common/assets/icons/line/index.d.ts +6 -0
  22. package/dist/src/common/assets/icons/line/index.js +12 -0
  23. package/dist/src/common/assets/lotties/Confetti.json +1 -0
  24. package/dist/src/common/assets/lotties/Fire.json +1 -0
  25. package/dist/src/common/assets/lotties/Heart.json +1 -0
  26. package/dist/src/common/assets/lotties/Sad.json +1 -0
  27. package/dist/src/common/assets/lotties/ThumbUp.json +1 -0
  28. package/dist/src/common/assets/lotties/index.d.ts +2513 -0
  29. package/dist/src/common/assets/lotties/index.js +18 -0
  30. package/dist/src/common/components/CircularProgress/CircularProgress.d.ts +8 -0
  31. package/dist/src/common/components/CircularProgress/CircularProgress.js +74 -0
  32. package/dist/src/common/components/CircularProgress/index.d.ts +1 -0
  33. package/dist/src/common/components/CircularProgress/index.js +8 -0
  34. package/dist/src/common/components/ThreeBarProgress/ThreeBarProgress.d.ts +7 -0
  35. package/dist/src/common/components/ThreeBarProgress/ThreeBarProgress.js +26 -0
  36. package/dist/src/common/components/ThreeBarProgress/index.d.ts +1 -0
  37. package/dist/src/common/components/ThreeBarProgress/index.js +8 -0
  38. package/dist/src/common/components/index.d.ts +3 -1
  39. package/dist/src/common/components/index.js +5 -1
  40. package/dist/src/common/index.d.ts +2 -2
  41. package/dist/src/common/index.js +5 -1
  42. package/dist/src/common/styles/ToneTest/ToneTest.js +12 -0
  43. package/dist/src/common/styles/colorSet/PaletteColor_Dark.json +33 -1
  44. package/dist/src/common/styles/colorSet/PaletteColor_light.json +33 -1
  45. package/dist/src/common/styles/colorSet/SemanticColor.json +13 -1
  46. package/dist/src/common/styles/colorSet/UIColor.json +62 -2
  47. package/dist/src/common/styles/colorSet/index.d.ts +316 -180
  48. package/dist/src/common/styles/colorSet/index.js +3 -3
  49. package/dist/src/common/styles/colorSet/ui-type.d.ts +60 -0
  50. package/dist/src/common/styles/index.d.ts +49 -0
  51. package/dist/src/common/styles/index.js +9 -1
  52. package/dist/src/common/styles/loading/index.d.ts +1 -0
  53. package/dist/src/common/styles/loading/index.js +5 -0
  54. package/dist/src/common/styles/loading/skeletonLoadingStyle.d.ts +1 -0
  55. package/dist/src/common/styles/loading/skeletonLoadingStyle.js +28 -0
  56. package/dist/src/common/styles/theme.js +16 -17
  57. package/dist/src/common/types/components.d.ts +1 -1
  58. package/dist/src/common/types/styled-components.d.ts +13 -13
  59. package/dist/src/common/utils/numberHelper.d.ts +2 -0
  60. package/dist/src/common/utils/numberHelper.js +11 -0
  61. package/dist/src/desktop/common/components/TextFieldBase/TextFieldBase.d.ts +1 -1
  62. package/dist/src/desktop/common/components/TextFieldBase/TextFieldBase.js +8 -4
  63. package/dist/src/desktop/components/AdminList/AdminList.d.ts +2 -1
  64. package/dist/src/desktop/components/AdminList/AdminList.js +7 -4
  65. package/dist/src/desktop/components/AdminList/HeaderRow.d.ts +2 -1
  66. package/dist/src/desktop/components/AdminList/HeaderRow.js +2 -2
  67. package/dist/src/desktop/components/AdminListItem/AdminListItem.d.ts +4 -3
  68. package/dist/src/desktop/components/AdminListItem/AdminListItem.js +30 -6
  69. package/dist/src/desktop/components/BasicChatListItem/BasicChatListItem.d.ts +1 -1
  70. package/dist/src/desktop/components/BasicChatListItem/BasicChatListItem.js +7 -3
  71. package/dist/src/desktop/components/BasicList/BasicList.d.ts +2 -1
  72. package/dist/src/desktop/components/BasicList/BasicList.js +4 -4
  73. package/dist/src/desktop/components/BasicListItem/BasicListItem.d.ts +5 -1
  74. package/dist/src/desktop/components/BasicListItem/BasicListItem.js +58 -22
  75. package/dist/src/desktop/components/Card/Card.d.ts +2 -2
  76. package/dist/src/desktop/components/Card/Card.js +2 -2
  77. package/dist/src/desktop/components/ChatList/Body.d.ts +1 -1
  78. package/dist/src/desktop/components/ChatList/Body.js +2 -1
  79. package/dist/src/desktop/components/ChatList/ChatList.d.ts +2 -1
  80. package/dist/src/desktop/components/ChatList/ChatList.js +8 -8
  81. package/dist/src/desktop/components/ChatList/ChatTextField.d.ts +2 -2
  82. package/dist/src/desktop/components/ChatList/ChatTextField.js +2 -2
  83. package/dist/src/desktop/components/ChatList/Footer.d.ts +2 -2
  84. package/dist/src/desktop/components/ChatList/Footer.js +2 -2
  85. package/dist/src/desktop/components/ChatList/Header.d.ts +2 -2
  86. package/dist/src/desktop/components/ChatList/Header.js +5 -5
  87. package/dist/src/desktop/components/Chip/Chip.d.ts +7 -5
  88. package/dist/src/desktop/components/Chip/Chip.js +16 -17
  89. package/dist/src/desktop/components/DesktopAlertDialog/DesktopAlertDialog.d.ts +3 -3
  90. package/dist/src/desktop/components/Dropdown/Dropdown.js +1 -1
  91. package/dist/src/desktop/components/DynamicDesktopNavBar/DynamicDesktopNavBar.d.ts +4 -1
  92. package/dist/src/desktop/components/DynamicDesktopNavBar/DynamicDesktopNavBar.js +28 -11
  93. package/dist/src/desktop/components/DynamicDesktopNavBar/blocks/PrimaryMenu.js +1 -1
  94. package/dist/src/desktop/components/DynamicDesktopNavBar/blocks/UserProfile.d.ts +4 -2
  95. package/dist/src/desktop/components/DynamicDesktopNavBar/blocks/UserProfile.js +8 -4
  96. package/dist/src/desktop/components/DynamicDesktopNavBar/components/MenuItemNav/components/InternalLinkMenuItemNav.js +4 -1
  97. package/dist/src/desktop/components/DynamicDesktopNavBar/utils.d.ts +1 -0
  98. package/dist/src/desktop/components/DynamicDesktopNavBar/utils.js +19 -0
  99. package/dist/src/desktop/components/EditApplyTextField/EditApplyTextField.js +1 -1
  100. package/dist/src/desktop/components/FloatingActionButton/FloatingActionButton.d.ts +3 -3
  101. package/dist/src/desktop/components/FloatingActionButton/FloatingActionButton.js +4 -4
  102. package/dist/src/desktop/components/LottieReactionButton/LottieReactionButton.d.ts +18 -0
  103. package/dist/src/desktop/components/LottieReactionButton/LottieReactionButton.js +154 -0
  104. package/dist/src/desktop/components/LottieReactionButton/index.d.ts +1 -0
  105. package/dist/src/desktop/components/LottieReactionButton/index.js +8 -0
  106. package/dist/src/desktop/components/MainButton/MainButton.d.ts +6 -4
  107. package/dist/src/desktop/components/MainButton/MainButton.js +47 -15
  108. package/dist/src/desktop/components/ReactionButton/ReactionButton.d.ts +4 -4
  109. package/dist/src/desktop/components/ReactionButton/ReactionButton.js +10 -20
  110. package/dist/src/desktop/components/TextButton/TextButton.d.ts +2 -2
  111. package/dist/src/desktop/components/TextButton/TextButton.js +2 -2
  112. package/dist/src/desktop/components/TextField/TextField.d.ts +1 -1
  113. package/dist/src/desktop/components/TextField/TextField.js +81 -31
  114. package/dist/src/desktop/components/UploadIconButton/UploadIconButton.js +1 -0
  115. package/dist/src/desktop/components/UploadMainButton/UploadMainButton.d.ts +3 -1
  116. package/dist/src/desktop/components/UploadMainButton/UploadMainButton.js +72 -31
  117. package/dist/src/desktop/components/UploadTextButton/UploadTextButton.js +1 -0
  118. package/dist/src/desktop/components/UserDesktopSideTab/UserDesktopSideTab.js +1 -1
  119. package/dist/src/desktop/components/index.d.ts +2 -1
  120. package/dist/src/desktop/components/index.js +3 -1
  121. package/dist/src/desktop/index.d.ts +4 -4
  122. package/dist/src/desktop/index.js +6 -2
  123. package/dist/src/desktop/layout/LayoutWF/Containers/ContentsContainer/ContentsContainer.d.ts +3 -1
  124. package/dist/src/desktop/layout/LayoutWF/Containers/ContentsContainer/ContentsContainer.js +24 -24
  125. package/dist/src/desktop/layout/LayoutWF/Containers/ContentsContainer/variation/WFA.d.ts +2 -1
  126. package/dist/src/desktop/layout/LayoutWF/Containers/ContentsContainer/variation/WFA.js +8 -6
  127. package/dist/src/desktop/layout/LayoutWF/Containers/ContentsContainer/variation/WFB.d.ts +2 -1
  128. package/dist/src/desktop/layout/LayoutWF/Containers/ContentsContainer/variation/WFB.js +4 -3
  129. package/dist/src/desktop/layout/LayoutWF/Containers/ContentsContainer/variation/WFC.d.ts +2 -1
  130. package/dist/src/desktop/layout/LayoutWF/Containers/ContentsContainer/variation/WFC.js +4 -4
  131. package/dist/src/desktop/layout/LayoutWF/Containers/ContentsContainer/variation/WFD.d.ts +2 -1
  132. package/dist/src/desktop/layout/LayoutWF/Containers/ContentsContainer/variation/WFD.js +4 -4
  133. package/dist/src/desktop/layout/LayoutWF/Containers/ContentsContainer/variation/WFE.d.ts +2 -1
  134. package/dist/src/desktop/layout/LayoutWF/Containers/ContentsContainer/variation/WFE.js +4 -3
  135. package/dist/src/desktop/layout/LayoutWF/Containers/ContentsContainer/variation/WFF.d.ts +2 -1
  136. package/dist/src/desktop/layout/LayoutWF/Containers/ContentsContainer/variation/WFF.js +4 -4
  137. package/dist/src/desktop/layout/LayoutWF/Containers/ContentsContainer/variation/WFG.d.ts +3 -1
  138. package/dist/src/desktop/layout/LayoutWF/Containers/ContentsContainer/variation/WFG.js +6 -7
  139. package/dist/src/desktop/layout/LayoutWF/Containers/ContentsContainer/variation/WFH.d.ts +2 -1
  140. package/dist/src/desktop/layout/LayoutWF/Containers/ContentsContainer/variation/WFH.js +4 -4
  141. package/dist/src/desktop/layout/LayoutWF/Containers/ContentsContainer/variation/WFI.d.ts +3 -1
  142. package/dist/src/desktop/layout/LayoutWF/Containers/ContentsContainer/variation/WFI.js +6 -7
  143. package/dist/src/desktop/layout/LayoutWF/Containers/ContentsContainer/variation/WFJ.d.ts +2 -1
  144. package/dist/src/desktop/layout/LayoutWF/Containers/ContentsContainer/variation/WFJ.js +4 -4
  145. package/dist/src/desktop/layout/LayoutWF/Containers/ContentsContainer/variation/WFK.d.ts +3 -1
  146. package/dist/src/desktop/layout/LayoutWF/Containers/ContentsContainer/variation/WFK.js +6 -7
  147. package/dist/src/desktop/layout/LayoutWF/ContainersBox/ContainersBox.d.ts +3 -1
  148. package/dist/src/desktop/layout/LayoutWF/ContainersBox/ContainersBox.js +3 -3
  149. package/dist/src/desktop/layout/LayoutWS/Containers/ContentsContainer/ContentsContainer.d.ts +4 -2
  150. package/dist/src/desktop/layout/LayoutWS/Containers/ContentsContainer/ContentsContainer.js +19 -18
  151. package/dist/src/desktop/layout/LayoutWS/Containers/ContentsContainer/variation/WSA.d.ts +2 -1
  152. package/dist/src/desktop/layout/LayoutWS/Containers/ContentsContainer/variation/WSA.js +4 -4
  153. package/dist/src/desktop/layout/LayoutWS/Containers/ContentsContainer/variation/WSB.d.ts +2 -1
  154. package/dist/src/desktop/layout/LayoutWS/Containers/ContentsContainer/variation/WSB.js +4 -4
  155. package/dist/src/desktop/layout/LayoutWS/Containers/ContentsContainer/variation/WSC.d.ts +2 -1
  156. package/dist/src/desktop/layout/LayoutWS/Containers/ContentsContainer/variation/WSC.js +4 -4
  157. package/dist/src/desktop/layout/LayoutWS/Containers/ContentsContainer/variation/WSD.d.ts +2 -1
  158. package/dist/src/desktop/layout/LayoutWS/Containers/ContentsContainer/variation/WSD.js +4 -4
  159. package/dist/src/desktop/layout/LayoutWS/Containers/ContentsContainer/variation/WSE.d.ts +2 -1
  160. package/dist/src/desktop/layout/LayoutWS/Containers/ContentsContainer/variation/WSE.js +5 -5
  161. package/dist/src/desktop/layout/LayoutWS/Containers/ContentsContainer/variation/WSF.d.ts +3 -1
  162. package/dist/src/desktop/layout/LayoutWS/Containers/ContentsContainer/variation/WSF.js +6 -7
  163. package/dist/src/desktop/layout/LayoutWS/Containers/ContentsContainer/variation/WSG.d.ts +3 -1
  164. package/dist/src/desktop/layout/LayoutWS/Containers/ContentsContainer/variation/WSG.js +6 -7
  165. package/dist/src/desktop/layout/LayoutWS/Containers/ContentsContainer/variation/WSH.d.ts +12 -0
  166. package/dist/src/desktop/layout/LayoutWS/Containers/ContentsContainer/variation/WSH.js +80 -0
  167. package/dist/src/desktop/layout/LayoutWS/Containers/ContentsContainer/variation/index.d.ts +1 -0
  168. package/dist/src/desktop/layout/LayoutWS/Containers/ContentsContainer/variation/index.js +3 -1
  169. package/dist/src/desktop/layout/LayoutWS/ContainersBox/ContainersBox.d.ts +4 -2
  170. package/dist/src/desktop/layout/LayoutWS/ContainersBox/ContainersBox.js +2 -2
  171. package/dist/src/desktop/layout/LayoutWT/Containers/ContentsContainer/ContentsContainer.d.ts +4 -2
  172. package/dist/src/desktop/layout/LayoutWT/Containers/ContentsContainer/ContentsContainer.js +44 -43
  173. package/dist/src/desktop/layout/LayoutWT/Containers/ContentsContainer/variation/WTA.d.ts +2 -1
  174. package/dist/src/desktop/layout/LayoutWT/Containers/ContentsContainer/variation/WTA.js +4 -4
  175. package/dist/src/desktop/layout/LayoutWT/Containers/ContentsContainer/variation/WTB.d.ts +2 -1
  176. package/dist/src/desktop/layout/LayoutWT/Containers/ContentsContainer/variation/WTB.js +4 -4
  177. package/dist/src/desktop/layout/LayoutWT/Containers/ContentsContainer/variation/WTC.d.ts +2 -1
  178. package/dist/src/desktop/layout/LayoutWT/Containers/ContentsContainer/variation/WTC.js +4 -4
  179. package/dist/src/desktop/layout/LayoutWT/Containers/ContentsContainer/variation/WTD.d.ts +3 -1
  180. package/dist/src/desktop/layout/LayoutWT/Containers/ContentsContainer/variation/WTD.js +6 -7
  181. package/dist/src/desktop/layout/LayoutWT/Containers/ContentsContainer/variation/WTE.d.ts +2 -1
  182. package/dist/src/desktop/layout/LayoutWT/Containers/ContentsContainer/variation/WTE.js +4 -4
  183. package/dist/src/desktop/layout/LayoutWT/Containers/ContentsContainer/variation/WTF.d.ts +3 -1
  184. package/dist/src/desktop/layout/LayoutWT/Containers/ContentsContainer/variation/WTF.js +6 -7
  185. package/dist/src/desktop/layout/LayoutWT/Containers/ContentsContainer/variation/WTG.d.ts +2 -1
  186. package/dist/src/desktop/layout/LayoutWT/Containers/ContentsContainer/variation/WTG.js +4 -4
  187. package/dist/src/desktop/layout/LayoutWT/Containers/ContentsContainer/variation/WTH.d.ts +2 -1
  188. package/dist/src/desktop/layout/LayoutWT/Containers/ContentsContainer/variation/WTH.js +4 -4
  189. package/dist/src/desktop/layout/LayoutWT/Containers/ContentsContainer/variation/WTI.d.ts +2 -1
  190. package/dist/src/desktop/layout/LayoutWT/Containers/ContentsContainer/variation/WTI.js +4 -4
  191. package/dist/src/desktop/layout/LayoutWT/Containers/ContentsContainer/variation/WTJ.d.ts +3 -1
  192. package/dist/src/desktop/layout/LayoutWT/Containers/ContentsContainer/variation/WTJ.js +6 -7
  193. package/dist/src/desktop/layout/LayoutWT/Containers/ContentsContainer/variation/WTK.d.ts +5 -3
  194. package/dist/src/desktop/layout/LayoutWT/Containers/ContentsContainer/variation/WTK.js +48 -13
  195. package/dist/src/desktop/layout/LayoutWT/Containers/ContentsContainer/variation/WTL.d.ts +2 -1
  196. package/dist/src/desktop/layout/LayoutWT/Containers/ContentsContainer/variation/WTL.js +4 -4
  197. package/dist/src/desktop/layout/LayoutWT/Containers/ContentsContainer/variation/WTM.d.ts +2 -1
  198. package/dist/src/desktop/layout/LayoutWT/Containers/ContentsContainer/variation/WTM.js +4 -4
  199. package/dist/src/desktop/layout/LayoutWT/Containers/ContentsContainer/variation/WTN.d.ts +2 -1
  200. package/dist/src/desktop/layout/LayoutWT/Containers/ContentsContainer/variation/WTN.js +4 -4
  201. package/dist/src/desktop/layout/LayoutWT/Containers/ContentsContainer/variation/WTO.d.ts +2 -1
  202. package/dist/src/desktop/layout/LayoutWT/Containers/ContentsContainer/variation/WTO.js +4 -4
  203. package/dist/src/desktop/layout/LayoutWT/Containers/ContentsContainer/variation/WTP.d.ts +2 -1
  204. package/dist/src/desktop/layout/LayoutWT/Containers/ContentsContainer/variation/WTP.js +4 -4
  205. package/dist/src/desktop/layout/LayoutWT/Containers/ContentsContainer/variation/WTQ.d.ts +3 -1
  206. package/dist/src/desktop/layout/LayoutWT/Containers/ContentsContainer/variation/WTQ.js +6 -7
  207. package/dist/src/desktop/layout/LayoutWT/Containers/ContentsContainer/variation/WTS.d.ts +2 -1
  208. package/dist/src/desktop/layout/LayoutWT/Containers/ContentsContainer/variation/WTS.js +4 -3
  209. package/dist/src/desktop/layout/LayoutWT/Containers/ContentsContainer/variation/WTT.d.ts +2 -1
  210. package/dist/src/desktop/layout/LayoutWT/Containers/ContentsContainer/variation/WTT.js +4 -3
  211. package/dist/src/desktop/layout/LayoutWT/Containers/ContentsContainer/variation/WTU.d.ts +3 -1
  212. package/dist/src/desktop/layout/LayoutWT/Containers/ContentsContainer/variation/WTU.js +6 -7
  213. package/dist/src/desktop/layout/LayoutWT/ContainersBox/ContainersBox.d.ts +4 -2
  214. package/dist/src/desktop/layout/LayoutWT/ContainersBox/ContainersBox.js +6 -2
  215. package/dist/src/desktop/panels/AnnotationSheet/AnnotationSheet.d.ts +57 -0
  216. package/dist/src/desktop/panels/AnnotationSheet/AnnotationSheet.js +134 -0
  217. package/dist/src/desktop/panels/AnnotationSheet/index.d.ts +1 -0
  218. package/dist/src/desktop/panels/AnnotationSheet/index.js +8 -0
  219. package/dist/src/desktop/panels/ContentSheet/ContentSheet.d.ts +60 -0
  220. package/dist/src/desktop/panels/ContentSheet/ContentSheet.js +142 -0
  221. package/dist/src/desktop/panels/ContentSheet/index.d.ts +1 -0
  222. package/dist/src/desktop/panels/ContentSheet/index.js +8 -0
  223. package/dist/src/desktop/panels/SectionSheet/SectionSheet.d.ts +57 -0
  224. package/dist/src/desktop/panels/SectionSheet/SectionSheet.js +134 -0
  225. package/dist/src/desktop/panels/SectionSheet/index.d.ts +1 -0
  226. package/dist/src/desktop/panels/SectionSheet/index.js +8 -0
  227. package/dist/src/desktop/panels/index.d.ts +4 -1
  228. package/dist/src/desktop/panels/index.js +7 -1
  229. package/dist/src/hybrid/components/Divider/Divider.d.ts +1 -1
  230. package/dist/src/hybrid/components/Divider/Divider.js +17 -4
  231. package/dist/src/hybrid/components/Icon/Icon.js +2 -1
  232. package/dist/src/hybrid/components/ImageView/ImageView.d.ts +3 -2
  233. package/dist/src/hybrid/components/ImageView/ImageView.js +38 -4
  234. package/dist/src/hybrid/components/LinearProgress/LinearProgress.d.ts +6 -0
  235. package/dist/src/hybrid/components/LinearProgress/LinearProgress.js +29 -0
  236. package/dist/src/hybrid/components/LinearProgress/index.d.ts +1 -0
  237. package/dist/src/hybrid/components/LinearProgress/index.js +8 -0
  238. package/dist/src/hybrid/components/LottieIcon/LottieIcon.d.ts +13 -0
  239. package/dist/src/hybrid/components/LottieIcon/LottieIcon.js +34 -0
  240. package/dist/src/hybrid/components/LottieIcon/index.d.ts +1 -0
  241. package/dist/src/hybrid/components/LottieIcon/index.js +8 -0
  242. package/dist/src/hybrid/components/index.d.ts +3 -1
  243. package/dist/src/hybrid/components/index.js +5 -1
  244. package/dist/src/hybrid/index.d.ts +2 -2
  245. package/dist/src/hybrid/index.js +3 -1
  246. package/dist/src/mobile/common/components/TextFieldBase/TextFieldBase.d.ts +1 -1
  247. package/dist/src/mobile/common/components/TextFieldBase/TextFieldBase.js +8 -4
  248. package/dist/src/mobile/components/BasicChatListItem/BasicChatListItem.d.ts +1 -1
  249. package/dist/src/mobile/components/BasicChatListItem/BasicChatListItem.js +7 -3
  250. package/dist/src/mobile/components/BasicList/BasicList.d.ts +2 -1
  251. package/dist/src/mobile/components/BasicList/BasicList.js +4 -4
  252. package/dist/src/mobile/components/BasicListItem/BasicListItem.d.ts +4 -1
  253. package/dist/src/mobile/components/BasicListItem/BasicListItem.js +58 -22
  254. package/dist/src/mobile/components/Card/Card.d.ts +2 -2
  255. package/dist/src/mobile/components/Card/Card.js +2 -2
  256. package/dist/src/mobile/components/ChatList/Body.d.ts +1 -1
  257. package/dist/src/mobile/components/ChatList/Body.js +2 -1
  258. package/dist/src/mobile/components/ChatList/ChatList.d.ts +2 -1
  259. package/dist/src/mobile/components/ChatList/ChatList.js +8 -8
  260. package/dist/src/mobile/components/ChatList/ChatTextField.d.ts +2 -2
  261. package/dist/src/mobile/components/ChatList/ChatTextField.js +2 -2
  262. package/dist/src/mobile/components/ChatList/Footer.d.ts +2 -2
  263. package/dist/src/mobile/components/ChatList/Footer.js +2 -2
  264. package/dist/src/mobile/components/ChatList/Header.d.ts +2 -2
  265. package/dist/src/mobile/components/ChatList/Header.js +5 -5
  266. package/dist/src/mobile/components/Chip/Chip.d.ts +7 -5
  267. package/dist/src/mobile/components/Chip/Chip.js +16 -17
  268. package/dist/src/mobile/components/Dropdown/Dropdown.js +1 -1
  269. package/dist/src/mobile/components/FloatingActionButton/FloatingActionButton.d.ts +16 -0
  270. package/dist/src/mobile/components/FloatingActionButton/FloatingActionButton.js +89 -0
  271. package/dist/src/mobile/components/FloatingActionButton/index.d.ts +1 -0
  272. package/dist/src/mobile/components/FloatingActionButton/index.js +8 -0
  273. package/dist/src/mobile/components/LottieReactionButton/LottieReactionButton.d.ts +20 -0
  274. package/dist/src/mobile/components/LottieReactionButton/LottieReactionButton.js +157 -0
  275. package/dist/src/mobile/components/LottieReactionButton/index.d.ts +1 -0
  276. package/dist/src/mobile/components/LottieReactionButton/index.js +8 -0
  277. package/dist/src/mobile/components/MainButton/MainButton.d.ts +6 -4
  278. package/dist/src/mobile/components/MainButton/MainButton.js +46 -15
  279. package/dist/src/mobile/components/MobileAlertDialog/MobileAlertDialog.d.ts +3 -3
  280. package/dist/src/mobile/components/MobileHeaderBar/MobileHeaderBar.d.ts +4 -4
  281. package/dist/src/mobile/components/MobileHeaderBar/MobileHeaderBar.js +6 -6
  282. package/dist/src/mobile/components/ReactionButton/ReactionButton.d.ts +4 -4
  283. package/dist/src/mobile/components/ReactionButton/ReactionButton.js +10 -20
  284. package/dist/src/mobile/components/TextButton/TextButton.d.ts +2 -2
  285. package/dist/src/mobile/components/TextButton/TextButton.js +2 -2
  286. package/dist/src/mobile/components/TextField/TextField.d.ts +1 -1
  287. package/dist/src/mobile/components/TextField/TextField.js +81 -31
  288. package/dist/src/mobile/components/UploadIconButton/UploadIconButton.js +1 -0
  289. package/dist/src/mobile/components/UploadMainButton/UploadMainButton.d.ts +3 -1
  290. package/dist/src/mobile/components/UploadMainButton/UploadMainButton.js +58 -21
  291. package/dist/src/mobile/components/UploadTextButton/UploadTextButton.js +1 -0
  292. package/dist/src/mobile/components/index.d.ts +3 -1
  293. package/dist/src/mobile/components/index.js +5 -1
  294. package/dist/src/mobile/index.d.ts +4 -4
  295. package/dist/src/mobile/index.js +6 -1
  296. package/dist/src/mobile/layout/LayoutMF/Containers/ContentsContainer/ContentsContainer.d.ts +3 -1
  297. package/dist/src/mobile/layout/LayoutMF/Containers/ContentsContainer/ContentsContainer.js +8 -8
  298. package/dist/src/mobile/layout/LayoutMF/Containers/ContentsContainer/variation/MFA.d.ts +2 -1
  299. package/dist/src/mobile/layout/LayoutMF/Containers/ContentsContainer/variation/MFA.js +4 -4
  300. package/dist/src/mobile/layout/LayoutMF/Containers/ContentsContainer/variation/MFB.d.ts +3 -1
  301. package/dist/src/mobile/layout/LayoutMF/Containers/ContentsContainer/variation/MFB.js +6 -7
  302. package/dist/src/mobile/layout/LayoutMF/Containers/ContentsContainer/variation/MFC.d.ts +2 -1
  303. package/dist/src/mobile/layout/LayoutMF/Containers/ContentsContainer/variation/MFC.js +4 -4
  304. package/dist/src/mobile/layout/LayoutMF/Containers/ContentsContainer/variation/MFD.d.ts +2 -1
  305. package/dist/src/mobile/layout/LayoutMF/Containers/ContentsContainer/variation/MFD.js +4 -4
  306. package/dist/src/mobile/layout/LayoutMF/Containers/ContentsContainer/variation/MFE.d.ts +3 -1
  307. package/dist/src/mobile/layout/LayoutMF/Containers/ContentsContainer/variation/MFE.js +6 -7
  308. package/dist/src/mobile/layout/LayoutMF/ContainersBox/ContainersBox.d.ts +3 -1
  309. package/dist/src/mobile/layout/LayoutMF/ContainersBox/ContainersBox.js +2 -2
  310. package/dist/src/mobile/layout/LayoutMM/Containers/ContentsContainer/ContentsContainer.d.ts +2 -1
  311. package/dist/src/mobile/layout/LayoutMM/Containers/ContentsContainer/ContentsContainer.js +3 -3
  312. package/dist/src/mobile/layout/LayoutMM/Containers/ContentsContainer/variation/MMA.d.ts +2 -1
  313. package/dist/src/mobile/layout/LayoutMM/Containers/ContentsContainer/variation/MMA.js +4 -4
  314. package/dist/src/mobile/layout/LayoutMM/Containers/ContentsContainer/variation/MMB.d.ts +2 -1
  315. package/dist/src/mobile/layout/LayoutMM/Containers/ContentsContainer/variation/MMB.js +4 -4
  316. package/dist/src/mobile/layout/LayoutMM/ContainersBox/ContainersBox.d.ts +2 -1
  317. package/dist/src/mobile/layout/LayoutMM/ContainersBox/ContainersBox.js +2 -2
  318. package/dist/src/mobile/layout/LayoutMP/Containers/ContentsContainer/ContentsContainer.d.ts +3 -1
  319. package/dist/src/mobile/layout/LayoutMP/Containers/ContentsContainer/ContentsContainer.js +9 -9
  320. package/dist/src/mobile/layout/LayoutMP/Containers/ContentsContainer/variation/MPA.d.ts +2 -1
  321. package/dist/src/mobile/layout/LayoutMP/Containers/ContentsContainer/variation/MPA.js +4 -4
  322. package/dist/src/mobile/layout/LayoutMP/Containers/ContentsContainer/variation/MPB.d.ts +2 -1
  323. package/dist/src/mobile/layout/LayoutMP/Containers/ContentsContainer/variation/MPB.js +4 -4
  324. package/dist/src/mobile/layout/LayoutMP/Containers/ContentsContainer/variation/MPC.d.ts +3 -1
  325. package/dist/src/mobile/layout/LayoutMP/Containers/ContentsContainer/variation/MPC.js +6 -7
  326. package/dist/src/mobile/layout/LayoutMP/Containers/ContentsContainer/variation/MPD.d.ts +2 -1
  327. package/dist/src/mobile/layout/LayoutMP/Containers/ContentsContainer/variation/MPD.js +4 -4
  328. package/dist/src/mobile/layout/LayoutMP/Containers/ContentsContainer/variation/MPE.d.ts +2 -1
  329. package/dist/src/mobile/layout/LayoutMP/Containers/ContentsContainer/variation/MPE.js +4 -4
  330. package/dist/src/mobile/layout/LayoutMP/Containers/ContentsContainer/variation/MPF.d.ts +3 -1
  331. package/dist/src/mobile/layout/LayoutMP/Containers/ContentsContainer/variation/MPF.js +6 -7
  332. package/dist/src/mobile/layout/LayoutMP/ContainersBox/ContainersBox.d.ts +3 -1
  333. package/dist/src/mobile/layout/LayoutMP/ContainersBox/ContainersBox.js +2 -2
  334. package/dist/src/mobile/layout/LayoutMS/Containers/ContentsContainer/ContentsContainer.d.ts +3 -1
  335. package/dist/src/mobile/layout/LayoutMS/Containers/ContentsContainer/ContentsContainer.js +11 -11
  336. package/dist/src/mobile/layout/LayoutMS/Containers/ContentsContainer/variation/MSA.d.ts +2 -1
  337. package/dist/src/mobile/layout/LayoutMS/Containers/ContentsContainer/variation/MSA.js +4 -4
  338. package/dist/src/mobile/layout/LayoutMS/Containers/ContentsContainer/variation/MSB.d.ts +2 -1
  339. package/dist/src/mobile/layout/LayoutMS/Containers/ContentsContainer/variation/MSB.js +4 -4
  340. package/dist/src/mobile/layout/LayoutMS/Containers/ContentsContainer/variation/MSC.d.ts +3 -1
  341. package/dist/src/mobile/layout/LayoutMS/Containers/ContentsContainer/variation/MSC.js +6 -7
  342. package/dist/src/mobile/layout/LayoutMS/Containers/ContentsContainer/variation/MSD.d.ts +2 -1
  343. package/dist/src/mobile/layout/LayoutMS/Containers/ContentsContainer/variation/MSD.js +4 -4
  344. package/dist/src/mobile/layout/LayoutMS/Containers/ContentsContainer/variation/MSE.d.ts +2 -1
  345. package/dist/src/mobile/layout/LayoutMS/Containers/ContentsContainer/variation/MSE.js +4 -4
  346. package/dist/src/mobile/layout/LayoutMS/Containers/ContentsContainer/variation/MSF.d.ts +3 -1
  347. package/dist/src/mobile/layout/LayoutMS/Containers/ContentsContainer/variation/MSF.js +6 -7
  348. package/dist/src/mobile/layout/LayoutMS/Containers/ContentsContainer/variation/MSG.d.ts +2 -1
  349. package/dist/src/mobile/layout/LayoutMS/Containers/ContentsContainer/variation/MSG.js +4 -4
  350. package/dist/src/mobile/layout/LayoutMS/Containers/ContentsContainer/variation/MSH.d.ts +2 -1
  351. package/dist/src/mobile/layout/LayoutMS/Containers/ContentsContainer/variation/MSH.js +4 -4
  352. package/dist/src/mobile/layout/LayoutMS/ContainersBox/ContainersBox.d.ts +3 -1
  353. package/dist/src/mobile/layout/LayoutMS/ContainersBox/ContainersBox.js +2 -2
  354. package/dist/src/mobile/panels/AnnotationSheet/AnnotationSheet.d.ts +56 -0
  355. package/dist/src/mobile/panels/AnnotationSheet/AnnotationSheet.js +131 -0
  356. package/dist/src/mobile/panels/AnnotationSheet/index.d.ts +1 -0
  357. package/dist/src/mobile/panels/AnnotationSheet/index.js +8 -0
  358. package/dist/src/mobile/panels/ContentSheet/ContentSheet.d.ts +59 -0
  359. package/dist/src/mobile/panels/ContentSheet/ContentSheet.js +139 -0
  360. package/dist/src/mobile/panels/ContentSheet/index.d.ts +1 -0
  361. package/dist/src/mobile/panels/ContentSheet/index.js +8 -0
  362. package/dist/src/mobile/panels/SectionSheet/SectionSheet.d.ts +56 -0
  363. package/dist/src/mobile/panels/SectionSheet/SectionSheet.js +131 -0
  364. package/dist/src/mobile/panels/SectionSheet/index.d.ts +1 -0
  365. package/dist/src/mobile/panels/SectionSheet/index.js +8 -0
  366. package/dist/src/mobile/panels/index.d.ts +4 -1
  367. package/dist/src/mobile/panels/index.js +7 -1
  368. package/package.json +2 -1
  369. package/release-note.md +9 -4
@@ -0,0 +1,134 @@
1
+ "use strict";
2
+ var __makeTemplateObject = (this && this.__makeTemplateObject) || function (cooked, raw) {
3
+ if (Object.defineProperty) { Object.defineProperty(cooked, "raw", { value: raw }); } else { cooked.raw = raw; }
4
+ return cooked;
5
+ };
6
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
7
+ if (k2 === undefined) k2 = k;
8
+ Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } });
9
+ }) : (function(o, m, k, k2) {
10
+ if (k2 === undefined) k2 = k;
11
+ o[k2] = m[k];
12
+ }));
13
+ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
14
+ Object.defineProperty(o, "default", { enumerable: true, value: v });
15
+ }) : function(o, v) {
16
+ o["default"] = v;
17
+ });
18
+ var __importStar = (this && this.__importStar) || function (mod) {
19
+ if (mod && mod.__esModule) return mod;
20
+ var result = {};
21
+ if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
22
+ __setModuleDefault(result, mod);
23
+ return result;
24
+ };
25
+ var __importDefault = (this && this.__importDefault) || function (mod) {
26
+ return (mod && mod.__esModule) ? mod : { "default": mod };
27
+ };
28
+ Object.defineProperty(exports, "__esModule", { value: true });
29
+ var react_1 = __importDefault(require("react"));
30
+ var styled_components_1 = __importStar(require("styled-components"));
31
+ var backgroundColorTheme = {
32
+ transparent: 'ui_cpnt_sheet_base_03',
33
+ white: 'ui_cpnt_sheet_base_white',
34
+ black: 'ui_cpnt_sheet_base_black',
35
+ base1: 'ui_cpnt_sheet_base_01',
36
+ base2: 'ui_cpnt_sheet_base_02',
37
+ base3: 'ui_cpnt_sheet_base'
38
+ };
39
+ var borderColorTheme = {
40
+ grey: 'ui_cpnt_sheet_border_01',
41
+ blue: 'ui_cpnt_sheet_border_02',
42
+ green: 'ui_cpnt_sheet_border_03'
43
+ };
44
+ var paddingSpacing = {
45
+ spacing_a: 'spacingA',
46
+ spacing_b: 'spacingB',
47
+ spacing_c: 'spacingC',
48
+ spacing_d: 'spacingD',
49
+ spacing_e: 'spacingE',
50
+ spacing_f: 'spacingF',
51
+ spacing_g: 'spacingG',
52
+ spacing_h: 'spacingH',
53
+ spacing_i: 'spacingI',
54
+ spacing_j: 'spacingJ',
55
+ spacing_k: 'spacingK',
56
+ spacing_l: 'spacingL',
57
+ spacing_m: 'spacingM',
58
+ spacing_n: 'spacingN'
59
+ };
60
+ function SectionSheet(_a) {
61
+ var width = _a.width, height = _a.height, _b = _a.backgroundColorTheme, backgroundColorTheme = _b === void 0 ? 'transparent' : _b, overrideBackgroundColorKey = _a.overrideBackgroundColorKey, _c = _a.borderMode, borderMode = _c === void 0 ? 'none' : _c, _d = _a.borderWidth, borderWidth = _d === void 0 ? 1 : _d, _e = _a.borderColorTheme, borderColorTheme = _e === void 0 ? 'grey' : _e, overrideBorderColorKey = _a.overrideBorderColorKey, _f = _a.shapeType, shapeType = _f === void 0 ? 'rectangle' : _f, _g = _a.radius, radius = _g === void 0 ? 24 : _g, _h = _a.paddingTop, paddingTop = _h === void 0 ? 'spacing_e' : _h, _j = _a.paddingRight, paddingRight = _j === void 0 ? 'spacing_e' : _j, _k = _a.paddingBottom, paddingBottom = _k === void 0 ? 'spacing_e' : _k, _l = _a.paddingLeft, paddingLeft = _l === void 0 ? 'spacing_e' : _l, overrideCSS = _a.overrideCSS, children = _a.children, onClick = _a.onClick;
62
+ var handleClick = function (e) {
63
+ if (onClick) {
64
+ onClick(e);
65
+ }
66
+ };
67
+ return (react_1.default.createElement(S_SectionSheet, { "$width": width, "$height": height, "$backgroundColorTheme": backgroundColorTheme, overrideBackgroundColorKey: overrideBackgroundColorKey, borderMode: borderMode, "$borderWidth": borderWidth, "$borderColorTheme": borderColorTheme, overrideBorderColorKey: overrideBorderColorKey, shapeType: shapeType, "$radius": radius, paddingTop: paddingTop, paddingRight: paddingRight, paddingBottom: paddingBottom, paddingLeft: paddingLeft, style: overrideCSS, onClick: handleClick, hasOnClick: !!onClick }, children));
68
+ }
69
+ var radiusStyle = (0, styled_components_1.css)(templateObject_1 || (templateObject_1 = __makeTemplateObject(["\n border-radius: ", ";\n"], ["\n border-radius: ", ";\n"])), function (_a) {
70
+ var $radius = _a.$radius;
71
+ return $radius + "px";
72
+ });
73
+ var paddingTopStyle = (0, styled_components_1.css)(templateObject_2 || (templateObject_2 = __makeTemplateObject(["\n padding-top: ", ";\n"], ["\n padding-top: ", ";\n"])), function (_a) {
74
+ var theme = _a.theme, paddingTop = _a.paddingTop;
75
+ return paddingTop && (paddingTop === 'none' ? 0 : theme.spacing[paddingSpacing[paddingTop]]);
76
+ });
77
+ var paddingRightStyle = (0, styled_components_1.css)(templateObject_3 || (templateObject_3 = __makeTemplateObject(["\n padding-right: ", ";\n"], ["\n padding-right: ", ";\n"])), function (_a) {
78
+ var theme = _a.theme, paddingRight = _a.paddingRight;
79
+ return paddingRight && (paddingRight === 'none' ? 0 : theme.spacing[paddingSpacing[paddingRight]]);
80
+ });
81
+ var paddingBottomStyle = (0, styled_components_1.css)(templateObject_4 || (templateObject_4 = __makeTemplateObject(["\n padding-bottom: ", ";\n"], ["\n padding-bottom: ", ";\n"])), function (_a) {
82
+ var theme = _a.theme, paddingBottom = _a.paddingBottom;
83
+ return paddingBottom && (paddingBottom === 'none' ? 0 : theme.spacing[paddingSpacing[paddingBottom]]);
84
+ });
85
+ var paddingLeftStyle = (0, styled_components_1.css)(templateObject_5 || (templateObject_5 = __makeTemplateObject(["\n padding-left: ", ";\n"], ["\n padding-left: ", ";\n"])), function (_a) {
86
+ var theme = _a.theme, paddingLeft = _a.paddingLeft;
87
+ return paddingLeft && (paddingLeft === 'none' ? 0 : theme.spacing[paddingSpacing[paddingLeft]]);
88
+ });
89
+ var advancedCSS = (0, styled_components_1.css)(templateObject_6 || (templateObject_6 = __makeTemplateObject(["\n background-color: ", ";\n border-color: ", ";\n"], ["\n background-color: ", ";\n border-color: ", ";\n"])), function (_a) {
90
+ var theme = _a.theme, overrideBackgroundColorKey = _a.overrideBackgroundColorKey;
91
+ return overrideBackgroundColorKey && theme[overrideBackgroundColorKey];
92
+ }, function (_a) {
93
+ var theme = _a.theme, overrideBorderColorKey = _a.overrideBorderColorKey;
94
+ return overrideBorderColorKey && theme[overrideBorderColorKey];
95
+ });
96
+ var S_SectionSheet = styled_components_1.default.div(templateObject_7 || (templateObject_7 = __makeTemplateObject(["\n width: ", ";\n height: ", ";\n background-color: ", ";\n border-style: ", ";\n border-width: ", ";\n border-color: ", ";\n cursor: ", ";\n box-sizing: border-box;\n\n ", ";\n\n ", ";\n ", ";\n ", ";\n ", ";\n\n ", "\n"], ["\n width: ", ";\n height: ", ";\n background-color: ", ";\n border-style: ", ";\n border-width: ", ";\n border-color: ", ";\n cursor: ", ";\n box-sizing: border-box;\n\n ", ";\n\n ", ";\n ", ";\n ", ";\n ", ";\n\n ", "\n"])), function (_a) {
97
+ var $width = _a.$width;
98
+ return $width;
99
+ }, function (_a) {
100
+ var $height = _a.$height;
101
+ return $height;
102
+ }, function (_a) {
103
+ var theme = _a.theme, $backgroundColorTheme = _a.$backgroundColorTheme;
104
+ return $backgroundColorTheme && theme[backgroundColorTheme[$backgroundColorTheme]];
105
+ }, function (_a) {
106
+ var borderMode = _a.borderMode;
107
+ return (borderMode === 'use' ? 'solid' : 'none');
108
+ }, function (_a) {
109
+ var $borderWidth = _a.$borderWidth;
110
+ return $borderWidth + "px";
111
+ }, function (_a) {
112
+ var theme = _a.theme, $borderColorTheme = _a.$borderColorTheme;
113
+ return $borderColorTheme && theme[borderColorTheme[$borderColorTheme]];
114
+ }, function (_a) {
115
+ var hasOnClick = _a.hasOnClick;
116
+ return (hasOnClick ? 'pointer' : 'default');
117
+ }, function (_a) {
118
+ var shapeType = _a.shapeType;
119
+ return shapeType === 'round' && radiusStyle;
120
+ }, function (_a) {
121
+ var paddingTop = _a.paddingTop;
122
+ return paddingTop !== 'none' && paddingTopStyle;
123
+ }, function (_a) {
124
+ var paddingRight = _a.paddingRight;
125
+ return paddingRight !== 'none' && paddingRightStyle;
126
+ }, function (_a) {
127
+ var paddingBottom = _a.paddingBottom;
128
+ return paddingBottom !== 'none' && paddingBottomStyle;
129
+ }, function (_a) {
130
+ var paddingLeft = _a.paddingLeft;
131
+ return paddingLeft !== 'none' && paddingLeftStyle;
132
+ }, advancedCSS);
133
+ exports.default = SectionSheet;
134
+ var templateObject_1, templateObject_2, templateObject_3, templateObject_4, templateObject_5, templateObject_6, templateObject_7;
@@ -0,0 +1 @@
1
+ export { default as SectionSheet } from './SectionSheet';
@@ -0,0 +1,8 @@
1
+ "use strict";
2
+ var __importDefault = (this && this.__importDefault) || function (mod) {
3
+ return (mod && mod.__esModule) ? mod : { "default": mod };
4
+ };
5
+ Object.defineProperty(exports, "__esModule", { value: true });
6
+ exports.SectionSheet = void 0;
7
+ var SectionSheet_1 = require("./SectionSheet");
8
+ Object.defineProperty(exports, "SectionSheet", { enumerable: true, get: function () { return __importDefault(SectionSheet_1).default; } });
@@ -1,3 +1,6 @@
1
+ import { AnnotationSheet } from './AnnotationSheet';
2
+ import { ContentSheet } from './ContentSheet';
1
3
  import { DesktopBasicModal } from './DesktopBasicModal';
2
4
  import { DesktopHeadlessModal } from './DesktopHeadlessModal';
3
- export { DesktopBasicModal, DesktopHeadlessModal };
5
+ import { SectionSheet } from './SectionSheet';
6
+ export { AnnotationSheet, ContentSheet, DesktopBasicModal, DesktopHeadlessModal, SectionSheet };
@@ -1,7 +1,13 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.DesktopHeadlessModal = exports.DesktopBasicModal = void 0;
3
+ exports.SectionSheet = exports.DesktopHeadlessModal = exports.DesktopBasicModal = exports.ContentSheet = exports.AnnotationSheet = void 0;
4
+ var AnnotationSheet_1 = require("./AnnotationSheet");
5
+ Object.defineProperty(exports, "AnnotationSheet", { enumerable: true, get: function () { return AnnotationSheet_1.AnnotationSheet; } });
6
+ var ContentSheet_1 = require("./ContentSheet");
7
+ Object.defineProperty(exports, "ContentSheet", { enumerable: true, get: function () { return ContentSheet_1.ContentSheet; } });
4
8
  var DesktopBasicModal_1 = require("./DesktopBasicModal");
5
9
  Object.defineProperty(exports, "DesktopBasicModal", { enumerable: true, get: function () { return DesktopBasicModal_1.DesktopBasicModal; } });
6
10
  var DesktopHeadlessModal_1 = require("./DesktopHeadlessModal");
7
11
  Object.defineProperty(exports, "DesktopHeadlessModal", { enumerable: true, get: function () { return DesktopHeadlessModal_1.DesktopHeadlessModal; } });
12
+ var SectionSheet_1 = require("./SectionSheet");
13
+ Object.defineProperty(exports, "SectionSheet", { enumerable: true, get: function () { return SectionSheet_1.SectionSheet; } });
@@ -3,7 +3,7 @@ export declare type DividerProps = {
3
3
  displayType?: 'line' | 'area';
4
4
  direction?: 'vertical' | 'horizontal';
5
5
  height?: number;
6
- colorTheme?: 'none' | 'divider1';
6
+ colorTheme?: 'none' | 'divider1' | 'divider2';
7
7
  };
8
8
  declare function Divider({ displayType, direction, height, colorTheme }: DividerProps): JSX.Element;
9
9
  export default Divider;
@@ -54,15 +54,28 @@ var vertical = (0, styled_components_1.css)(templateObject_2 || (templateObject_
54
54
  var $height = _a.$height;
55
55
  return ($height ? $height + "px" : '100%');
56
56
  });
57
- var S_Divider = styled_components_1.default.div(templateObject_3 || (templateObject_3 = __makeTemplateObject(["\n ", ";\n ", ";\n ", "\n"], ["\n ", ";\n ", ";\n ", "\n"])), function (_a) {
57
+ var divider1Color = (0, styled_components_1.css)(templateObject_3 || (templateObject_3 = __makeTemplateObject(["\n background-color: ", ";\n"], ["\n background-color: ", ";\n"])), function (_a) {
58
+ var theme = _a.theme;
59
+ return theme.ui_cpnt_divider_white_opacity30;
60
+ });
61
+ var divider2Color = (0, styled_components_1.css)(templateObject_4 || (templateObject_4 = __makeTemplateObject(["\n background-color: ", ";\n"], ["\n background-color: ", ";\n"])), function (_a) {
62
+ var theme = _a.theme;
63
+ return theme.ui_cpnt_divider_white_opacity00;
64
+ });
65
+ var S_Divider = styled_components_1.default.div(templateObject_5 || (templateObject_5 = __makeTemplateObject(["\n ", ";\n ", ";\n ", ";\n"], ["\n ", ";\n ", ";\n ", ";\n"])), function (_a) {
58
66
  var $direction = _a.$direction;
59
67
  return $direction === 'horizontal' && horizontal;
60
68
  }, function (_a) {
61
69
  var $direction = _a.$direction, displayType = _a.displayType;
62
70
  return $direction === 'vertical' && displayType === 'line' && vertical;
63
71
  }, function (_a) {
64
- var colorTheme = _a.colorTheme, theme = _a.theme;
65
- return colorTheme === 'divider1' && "background-color: " + theme.ui_cpnt_divider_white_opacity30 + ";";
72
+ var colorTheme = _a.colorTheme;
73
+ return colorTheme &&
74
+ {
75
+ divider1: divider1Color,
76
+ divider2: divider2Color,
77
+ none: ''
78
+ }[colorTheme];
66
79
  });
67
80
  exports.default = Divider;
68
- var templateObject_1, templateObject_2, templateObject_3;
81
+ var templateObject_1, templateObject_2, templateObject_3, templateObject_4, templateObject_5;
@@ -10,9 +10,10 @@ var line_1 = __importDefault(require("../../../common/assets/icons/line"));
10
10
  var Icon = function (_a) {
11
11
  var _b = _a.iconName, iconName = _b === void 0 ? 'ic_unavailable' : _b, _c = _a.size, size = _c === void 0 ? 24 : _c, _d = _a.colorKey, colorKey = _d === void 0 ? 'ui_cpnt_icon_sys_grey_01' : _d, _e = _a.fillType, fillType = _e === void 0 ? 'line' : _e;
12
12
  var theme = (0, styled_components_1.useTheme)();
13
+ var DefaultIcon = line_1.default.ic_unavailable;
13
14
  var SelectedIcon = fillType === 'line'
14
15
  ? line_1.default[iconName] || fill_1.default[iconName]
15
16
  : fill_1.default[iconName] || line_1.default[iconName];
16
- return (react_1.default.createElement(SelectedIcon, { color: theme[colorKey], size: size, style: { minWidth: size, minHeight: size } }));
17
+ return SelectedIcon ? (react_1.default.createElement(SelectedIcon, { color: theme[colorKey], size: size, style: { minWidth: size, minHeight: size } })) : (react_1.default.createElement(DefaultIcon, { color: theme[colorKey], size: size, style: { minWidth: size, minHeight: size } }));
17
18
  };
18
19
  exports.default = Icon;
@@ -7,10 +7,11 @@ export declare type ImageViewProps = {
7
7
  height?: number | 'responsive';
8
8
  noImageHeight?: number;
9
9
  noImageWidth?: number;
10
- ratio?: '16_9' | '9_16' | '16_10' | '10_16' | '4_3' | '3_4' | '1_1' | 'auto';
10
+ ratio?: '16_9' | '9_16' | '16_10' | '10_16' | '4_3' | '3_4' | '3_2' | '2_3' | '1_1' | 'auto';
11
11
  scaleType?: 'fill' | 'contain' | 'cover' | 'none';
12
12
  borderMode?: 'use' | 'none';
13
13
  backgroundFillMode?: 'use' | 'none';
14
+ isLoading?: boolean;
14
15
  };
15
- declare const ImageView: ({ src, shapeType, radius, width, height, noImageHeight, noImageWidth, ratio, scaleType, borderMode, backgroundFillMode }: ImageViewProps) => JSX.Element;
16
+ declare const ImageView: ({ src, shapeType, radius, width, height, noImageHeight, noImageWidth, ratio, scaleType, borderMode, backgroundFillMode, isLoading }: ImageViewProps) => JSX.Element;
16
17
  export default ImageView;
@@ -28,10 +28,39 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
28
28
  Object.defineProperty(exports, "__esModule", { value: true });
29
29
  var react_1 = __importDefault(require("react"));
30
30
  var styled_components_1 = __importStar(require("styled-components"));
31
+ var styles_1 = require("../../../common/styles");
31
32
  var ImageView = function (_a) {
32
- var src = _a.src, _b = _a.shapeType, shapeType = _b === void 0 ? 'round' : _b, _c = _a.radius, radius = _c === void 0 ? 8 : _c, width = _a.width, height = _a.height, noImageHeight = _a.noImageHeight, noImageWidth = _a.noImageWidth, _d = _a.ratio, ratio = _d === void 0 ? 'auto' : _d, _e = _a.scaleType, scaleType = _e === void 0 ? 'none' : _e, _f = _a.borderMode, borderMode = _f === void 0 ? 'none' : _f, _g = _a.backgroundFillMode, backgroundFillMode = _g === void 0 ? 'none' : _g;
33
- return (react_1.default.createElement(react_1.default.Fragment, null, ratio === 'auto' ? (react_1.default.createElement(S_AutoImageViewWrapper, { "$height": height, "$width": width, noImageHeight: noImageHeight, noImageWidth: noImageWidth, borderMode: borderMode, shapeType: shapeType, "$radius": radius, backgroundFillMode: backgroundFillMode, "$src": src }, src && (react_1.default.createElement(S_AutoImageView, { src: src, "$height": height, "$width": width, scaleType: scaleType })))) : (react_1.default.createElement(S_RatioImageViewWrapper, { "$width": width, borderMode: borderMode, shapeType: shapeType, "$radius": radius, backgroundFillMode: backgroundFillMode },
34
- react_1.default.createElement(S_RatioImageView, { "$src": src, scaleType: scaleType, ratio: ratio })))));
33
+ var src = _a.src, _b = _a.shapeType, shapeType = _b === void 0 ? 'round' : _b, _c = _a.radius, radius = _c === void 0 ? 8 : _c, width = _a.width, height = _a.height, noImageHeight = _a.noImageHeight, noImageWidth = _a.noImageWidth, _d = _a.ratio, ratio = _d === void 0 ? 'auto' : _d, _e = _a.scaleType, scaleType = _e === void 0 ? 'none' : _e, _f = _a.borderMode, borderMode = _f === void 0 ? 'none' : _f, _g = _a.backgroundFillMode, backgroundFillMode = _g === void 0 ? 'none' : _g, isLoading = _a.isLoading;
34
+ var LoadingAutoImageView = function () {
35
+ if (width && !height && !noImageHeight) {
36
+ return (react_1.default.createElement(S_LoadingRatioImageViewWrapper, { "$width": width, shapeType: shapeType, "$radius": radius },
37
+ react_1.default.createElement(S_LoadingRatioImageView, { ratio: "4_3" })));
38
+ }
39
+ if (height && height !== 'responsive' && !width && !noImageWidth) {
40
+ return (react_1.default.createElement(S_LoadingRatioImageViewWrapper, { "$width": (height * 4) / 3, shapeType: shapeType, "$radius": radius },
41
+ react_1.default.createElement(S_LoadingRatioImageView, { ratio: "4_3" })));
42
+ }
43
+ if (height === 'responsive' && !width && !noImageWidth) {
44
+ return (react_1.default.createElement(S_LoadingAutoImageViewWrapper, { "$height": height, "$width": 300, shapeType: shapeType, "$radius": radius }));
45
+ }
46
+ return (react_1.default.createElement(S_LoadingAutoImageViewWrapper, { "$height": height, "$width": width, noImageHeight: noImageHeight, noImageWidth: noImageWidth, shapeType: shapeType, "$radius": radius }));
47
+ };
48
+ var LoadingRatioImageView = (react_1.default.createElement(S_LoadingRatioImageViewWrapper, { "$width": width, shapeType: shapeType, "$radius": radius },
49
+ react_1.default.createElement(S_LoadingRatioImageView, { ratio: ratio })));
50
+ var LoadingImageView = function () {
51
+ if (ratio === 'auto') {
52
+ return LoadingAutoImageView();
53
+ }
54
+ return LoadingRatioImageView;
55
+ };
56
+ var ImageViewVariation = function () {
57
+ if (isLoading) {
58
+ return LoadingImageView();
59
+ }
60
+ return (react_1.default.createElement(react_1.default.Fragment, null, ratio === 'auto' ? (react_1.default.createElement(S_AutoImageViewWrapper, { "$height": height, "$width": width, noImageHeight: noImageHeight, noImageWidth: noImageWidth, borderMode: borderMode, shapeType: shapeType, "$radius": radius, backgroundFillMode: backgroundFillMode, "$src": src }, src && (react_1.default.createElement(S_AutoImageView, { src: src, "$height": height, "$width": width, scaleType: scaleType })))) : (react_1.default.createElement(S_RatioImageViewWrapper, { "$width": width, borderMode: borderMode, shapeType: shapeType, "$radius": radius, backgroundFillMode: backgroundFillMode },
61
+ react_1.default.createElement(S_RatioImageView, { "$src": src, scaleType: scaleType, ratio: ratio })))));
62
+ };
63
+ return ImageViewVariation();
35
64
  };
36
65
  var wrapperStyle = (0, styled_components_1.css)(templateObject_1 || (templateObject_1 = __makeTemplateObject(["\n box-sizing: border-box;\n display: inline-block;\n vertical-align: bottom;\n overflow: hidden;\n ", ";\n ", ";\n ", ";\n"], ["\n box-sizing: border-box;\n display: inline-block;\n vertical-align: bottom;\n overflow: hidden;\n ", ";\n ", ";\n ", ";\n"])), function (_a) {
37
66
  var theme = _a.theme, backgroundFillMode = _a.backgroundFillMode;
@@ -78,6 +107,8 @@ var S_RatioImageView = styled_components_1.default.div(templateObject_3 || (temp
78
107
  '10_16': 'padding-top: 159.74%',
79
108
  '4_3': 'padding-top: 75%',
80
109
  '3_4': 'padding-top: 133.33%',
110
+ '3_2': 'padding-top: 66.66%',
111
+ '2_3': 'padding-top: 150%',
81
112
  '1_1': 'padding-top: 100%'
82
113
  }[ratio];
83
114
  });
@@ -155,5 +186,8 @@ var S_AutoImageView = styled_components_1.default.img(templateObject_11 || (temp
155
186
  var $width = _a.$width, $height = _a.$height;
156
187
  return $width && $height && bothStyle;
157
188
  });
189
+ var S_LoadingAutoImageViewWrapper = (0, styled_components_1.default)(S_AutoImageViewWrapper)(templateObject_12 || (templateObject_12 = __makeTemplateObject(["\n ", "\n"], ["\n ", "\n"])), styles_1.skeletonLoadingStyle);
190
+ var S_LoadingRatioImageViewWrapper = (0, styled_components_1.default)(S_RatioImageViewWrapper)(templateObject_13 || (templateObject_13 = __makeTemplateObject(["\n ", "\n"], ["\n ", "\n"])), styles_1.skeletonLoadingStyle);
191
+ var S_LoadingRatioImageView = (0, styled_components_1.default)(S_RatioImageView)(templateObject_14 || (templateObject_14 = __makeTemplateObject(["\n ", "\n"], ["\n ", "\n"])), styles_1.skeletonLoadingStyle);
158
192
  exports.default = ImageView;
159
- var templateObject_1, templateObject_2, templateObject_3, templateObject_4, templateObject_5, templateObject_6, templateObject_7, templateObject_8, templateObject_9, templateObject_10, templateObject_11;
193
+ var templateObject_1, templateObject_2, templateObject_3, templateObject_4, templateObject_5, templateObject_6, templateObject_7, templateObject_8, templateObject_9, templateObject_10, templateObject_11, templateObject_12, templateObject_13, templateObject_14;
@@ -0,0 +1,6 @@
1
+ /// <reference types="react" />
2
+ export declare type LinearProgressProps = {
3
+ value?: number;
4
+ };
5
+ declare function LinearProgress({ value }: LinearProgressProps): JSX.Element;
6
+ export default LinearProgress;
@@ -0,0 +1,29 @@
1
+ "use strict";
2
+ var __makeTemplateObject = (this && this.__makeTemplateObject) || function (cooked, raw) {
3
+ if (Object.defineProperty) { Object.defineProperty(cooked, "raw", { value: raw }); } else { cooked.raw = raw; }
4
+ return cooked;
5
+ };
6
+ var __importDefault = (this && this.__importDefault) || function (mod) {
7
+ return (mod && mod.__esModule) ? mod : { "default": mod };
8
+ };
9
+ Object.defineProperty(exports, "__esModule", { value: true });
10
+ var react_1 = __importDefault(require("react"));
11
+ var styled_components_1 = __importDefault(require("styled-components"));
12
+ function LinearProgress(_a) {
13
+ var _b = _a.value, value = _b === void 0 ? 0 : _b;
14
+ return (react_1.default.createElement(S_LinearProgressWrapper, { value: value },
15
+ react_1.default.createElement(S_LinearProgressBar, { value: value })));
16
+ }
17
+ var S_LinearProgressWrapper = styled_components_1.default.div(templateObject_1 || (templateObject_1 = __makeTemplateObject(["\n background-color: ", ";\n position: relative;\n overflow: hidden;\n height: 4px;\n"], ["\n background-color: ", ";\n position: relative;\n overflow: hidden;\n height: 4px;\n"])), function (_a) {
18
+ var theme = _a.theme;
19
+ return theme.ui_loading_linear_base;
20
+ });
21
+ var S_LinearProgressBar = styled_components_1.default.div(templateObject_2 || (templateObject_2 = __makeTemplateObject(["\n background-color: ", ";\n position: absolute;\n width: ", "%;\n height: 100%;\n transition: width 0.2s ease 0s;\n"], ["\n background-color: ", ";\n position: absolute;\n width: ", "%;\n height: 100%;\n transition: width 0.2s ease 0s;\n"])), function (_a) {
22
+ var theme = _a.theme;
23
+ return theme.ui_loading_linear_bar;
24
+ }, function (_a) {
25
+ var value = _a.value;
26
+ return value;
27
+ });
28
+ exports.default = LinearProgress;
29
+ var templateObject_1, templateObject_2;
@@ -0,0 +1 @@
1
+ export { default as LinearProgress } from './LinearProgress';
@@ -0,0 +1,8 @@
1
+ "use strict";
2
+ var __importDefault = (this && this.__importDefault) || function (mod) {
3
+ return (mod && mod.__esModule) ? mod : { "default": mod };
4
+ };
5
+ Object.defineProperty(exports, "__esModule", { value: true });
6
+ exports.LinearProgress = void 0;
7
+ var LinearProgress_1 = require("./LinearProgress");
8
+ Object.defineProperty(exports, "LinearProgress", { enumerable: true, get: function () { return __importDefault(LinearProgress_1).default; } });
@@ -0,0 +1,13 @@
1
+ import { LottieRef } from 'lottie-react';
2
+ import { AnimationEventHandler } from 'react';
3
+ import { LottieIconNameKeys } from '../../../common/assets/lotties';
4
+ export declare type LottieIconProps = {
5
+ iconName?: LottieIconNameKeys;
6
+ size?: 12 | 16 | 20 | 24 | 32 | 48 | 56 | 64 | 72;
7
+ autoplayMode?: 'none' | 'use';
8
+ loopMode?: 'none' | 'use';
9
+ lottieRef?: LottieRef;
10
+ onComplete?: AnimationEventHandler | null;
11
+ } & Record<string, any>;
12
+ declare const LottieIcon: ({ iconName, size, autoplayMode, loopMode, lottieRef, onComplete }: LottieIconProps) => JSX.Element;
13
+ export default LottieIcon;
@@ -0,0 +1,34 @@
1
+ "use strict";
2
+ var __makeTemplateObject = (this && this.__makeTemplateObject) || function (cooked, raw) {
3
+ if (Object.defineProperty) { Object.defineProperty(cooked, "raw", { value: raw }); } else { cooked.raw = raw; }
4
+ return cooked;
5
+ };
6
+ var __importDefault = (this && this.__importDefault) || function (mod) {
7
+ return (mod && mod.__esModule) ? mod : { "default": mod };
8
+ };
9
+ Object.defineProperty(exports, "__esModule", { value: true });
10
+ var lottie_react_1 = __importDefault(require("lottie-react"));
11
+ var react_1 = __importDefault(require("react"));
12
+ var styled_components_1 = __importDefault(require("styled-components"));
13
+ var lotties_1 = __importDefault(require("../../../common/assets/lotties"));
14
+ var LottieIcon = function (_a) {
15
+ var _b = _a.iconName, iconName = _b === void 0 ? 'ic_lottie_heart' : _b, _c = _a.size, size = _c === void 0 ? 24 : _c, _d = _a.autoplayMode, autoplayMode = _d === void 0 ? 'use' : _d, _e = _a.loopMode, loopMode = _e === void 0 ? 'use' : _e, lottieRef = _a.lottieRef, onComplete = _a.onComplete;
16
+ var animationData = lotties_1.default[iconName];
17
+ return (react_1.default.createElement(react_1.default.Fragment, null,
18
+ react_1.default.createElement(S_Lottie, { animationData: animationData, lottieRef: lottieRef, autoplay: autoplayMode === 'use' ? true : false, loop: loopMode === 'use' ? true : false, "$size": size, onComplete: onComplete })));
19
+ };
20
+ var S_Lottie = (0, styled_components_1.default)(lottie_react_1.default)(templateObject_1 || (templateObject_1 = __makeTemplateObject(["\n height: ", ";\n width: ", ";\n min-width: ", ";\n min-height: ", ";\n"], ["\n height: ", ";\n width: ", ";\n min-width: ", ";\n min-height: ", ";\n"])), function (_a) {
21
+ var $size = _a.$size;
22
+ return $size + "px";
23
+ }, function (_a) {
24
+ var $size = _a.$size;
25
+ return $size + "px";
26
+ }, function (_a) {
27
+ var $size = _a.$size;
28
+ return $size + "px";
29
+ }, function (_a) {
30
+ var $size = _a.$size;
31
+ return $size + "px";
32
+ });
33
+ exports.default = LottieIcon;
34
+ var templateObject_1;
@@ -0,0 +1 @@
1
+ export { default as LottieIcon } from './LottieIcon';
@@ -0,0 +1,8 @@
1
+ "use strict";
2
+ var __importDefault = (this && this.__importDefault) || function (mod) {
3
+ return (mod && mod.__esModule) ? mod : { "default": mod };
4
+ };
5
+ Object.defineProperty(exports, "__esModule", { value: true });
6
+ exports.LottieIcon = void 0;
7
+ var LottieIcon_1 = require("./LottieIcon");
8
+ Object.defineProperty(exports, "LottieIcon", { enumerable: true, get: function () { return __importDefault(LottieIcon_1).default; } });
@@ -1,6 +1,8 @@
1
1
  import { Divider } from './Divider';
2
2
  import { Icon } from './Icon';
3
3
  import { ImageView } from './ImageView';
4
+ import { LinearProgress } from './LinearProgress';
5
+ import { LottieIcon } from './LottieIcon';
4
6
  import { Spacing } from './Spacing';
5
7
  import { Switch } from './Switch';
6
- export { Divider, Icon, ImageView, Spacing, Switch };
8
+ export { Divider, Icon, ImageView, LinearProgress, LottieIcon, Spacing, Switch };
@@ -1,12 +1,16 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.Switch = exports.Spacing = exports.ImageView = exports.Icon = exports.Divider = void 0;
3
+ exports.Switch = exports.Spacing = exports.LottieIcon = exports.LinearProgress = exports.ImageView = exports.Icon = exports.Divider = void 0;
4
4
  var Divider_1 = require("./Divider");
5
5
  Object.defineProperty(exports, "Divider", { enumerable: true, get: function () { return Divider_1.Divider; } });
6
6
  var Icon_1 = require("./Icon");
7
7
  Object.defineProperty(exports, "Icon", { enumerable: true, get: function () { return Icon_1.Icon; } });
8
8
  var ImageView_1 = require("./ImageView");
9
9
  Object.defineProperty(exports, "ImageView", { enumerable: true, get: function () { return ImageView_1.ImageView; } });
10
+ var LinearProgress_1 = require("./LinearProgress");
11
+ Object.defineProperty(exports, "LinearProgress", { enumerable: true, get: function () { return LinearProgress_1.LinearProgress; } });
12
+ var LottieIcon_1 = require("./LottieIcon");
13
+ Object.defineProperty(exports, "LottieIcon", { enumerable: true, get: function () { return LottieIcon_1.LottieIcon; } });
10
14
  var Spacing_1 = require("./Spacing");
11
15
  Object.defineProperty(exports, "Spacing", { enumerable: true, get: function () { return Spacing_1.Spacing; } });
12
16
  var Switch_1 = require("./Switch");
@@ -1,2 +1,2 @@
1
- import { Divider, Icon, ImageView, Spacing, Switch } from './components';
2
- export { Divider, Icon, ImageView, Spacing, Switch };
1
+ import { Divider, Icon, ImageView, LinearProgress, LottieIcon, Spacing, Switch } from './components';
2
+ export { Divider, Icon, ImageView, LinearProgress, LottieIcon, Spacing, Switch };
@@ -2,11 +2,13 @@
2
2
  /* eslint-disable import/order */
3
3
  /* eslint-disable import/first */
4
4
  Object.defineProperty(exports, "__esModule", { value: true });
5
- exports.Switch = exports.Spacing = exports.ImageView = exports.Icon = exports.Divider = void 0;
5
+ exports.Switch = exports.Spacing = exports.LottieIcon = exports.LinearProgress = exports.ImageView = exports.Icon = exports.Divider = void 0;
6
6
  // component
7
7
  var components_1 = require("./components");
8
8
  Object.defineProperty(exports, "Divider", { enumerable: true, get: function () { return components_1.Divider; } });
9
9
  Object.defineProperty(exports, "Icon", { enumerable: true, get: function () { return components_1.Icon; } });
10
10
  Object.defineProperty(exports, "ImageView", { enumerable: true, get: function () { return components_1.ImageView; } });
11
+ Object.defineProperty(exports, "LinearProgress", { enumerable: true, get: function () { return components_1.LinearProgress; } });
12
+ Object.defineProperty(exports, "LottieIcon", { enumerable: true, get: function () { return components_1.LottieIcon; } });
11
13
  Object.defineProperty(exports, "Spacing", { enumerable: true, get: function () { return components_1.Spacing; } });
12
14
  Object.defineProperty(exports, "Switch", { enumerable: true, get: function () { return components_1.Switch; } });
@@ -16,7 +16,7 @@ export declare type TextFieldBaseProps = {
16
16
  autoMaxRows?: number;
17
17
  inputType?: string;
18
18
  state?: 'normal' | 'read_only' | 'disabled';
19
- colorTheme?: 'none' | 'dark';
19
+ colorTheme?: 'none' | 'dark' | 'transparent';
20
20
  min?: number;
21
21
  max?: number;
22
22
  maxLength?: number;
@@ -194,7 +194,8 @@ var read_only = (0, styled_components_1.css)(templateObject_2 || (templateObject
194
194
  return colorTheme &&
195
195
  {
196
196
  none: theme.ui_cpnt_textfield_text_disabled,
197
- dark: theme.ui_cpnt_textfield_text_darktheme_disabled
197
+ dark: theme.ui_cpnt_textfield_text_darktheme_disabled,
198
+ transparent: theme.ui_cpnt_textfield_text_colortheme_transparent_readonly
198
199
  }[colorTheme];
199
200
  });
200
201
  var disabled = (0, styled_components_1.css)(templateObject_3 || (templateObject_3 = __makeTemplateObject(["\n color: ", ";\n pointer-events: none;\n"], ["\n color: ", ";\n pointer-events: none;\n"])), function (_a) {
@@ -202,7 +203,8 @@ var disabled = (0, styled_components_1.css)(templateObject_3 || (templateObject_
202
203
  return colorTheme &&
203
204
  {
204
205
  none: theme.ui_cpnt_textfield_text_disabled,
205
- dark: theme.ui_cpnt_textfield_text_darktheme_disabled
206
+ dark: theme.ui_cpnt_textfield_text_darktheme_disabled,
207
+ transparent: theme.ui_cpnt_textfield_text_colortheme_transparent_disabled
206
208
  }[colorTheme];
207
209
  });
208
210
  var basicStyle = (0, styled_components_1.css)(templateObject_4 || (templateObject_4 = __makeTemplateObject(["\n display: inline-flex;\n justify-content: center;\n background-color: transparent;\n border: none;\n box-sizing: border-box;\n color: ", ";\n font-size: ", ";\n font-weight: ", ";\n height: 100%;\n line-height: ", ";\n outline: 0;\n overflow: hidden;\n padding: 0;\n width: 100%;\n -webkit-tap-highlight-color: rgba(0, 0, 0, 0);\n &::placeholder {\n color: ", ";\n font-size: ", ";\n font-weight: ", ";\n line-height: ", ";\n }\n\n ", ";\n ", "\n"], ["\n display: inline-flex;\n justify-content: center;\n background-color: transparent;\n border: none;\n box-sizing: border-box;\n color: ", ";\n font-size: ", ";\n font-weight: ", ";\n height: 100%;\n line-height: ", ";\n outline: 0;\n overflow: hidden;\n padding: 0;\n width: 100%;\n -webkit-tap-highlight-color: rgba(0, 0, 0, 0);\n &::placeholder {\n color: ", ";\n font-size: ", ";\n font-weight: ", ";\n line-height: ", ";\n }\n\n ", ";\n ", "\n"])), function (_a) {
@@ -210,7 +212,8 @@ var basicStyle = (0, styled_components_1.css)(templateObject_4 || (templateObjec
210
212
  return colorTheme &&
211
213
  {
212
214
  none: theme.ui_cpnt_textfield_text_typed,
213
- dark: theme.ui_cpnt_textfield_text_darktheme_enabled
215
+ dark: theme.ui_cpnt_textfield_text_darktheme_enabled,
216
+ transparent: theme.ui_cpnt_textfield_text_colortheme_transparent_enabled
214
217
  }[colorTheme];
215
218
  }, function (_a) {
216
219
  var textSize = _a.textSize;
@@ -226,7 +229,8 @@ var basicStyle = (0, styled_components_1.css)(templateObject_4 || (templateObjec
226
229
  return colorTheme &&
227
230
  {
228
231
  none: theme.ui_cpnt_textfield_text_hint,
229
- dark: theme.ui_cpnt_textfield_text_darktheme_hint
232
+ dark: theme.ui_cpnt_textfield_text_darktheme_hint,
233
+ transparent: theme.ui_cpnt_textfield_text_colortheme_transparent_hint
230
234
  }[colorTheme];
231
235
  }, function (_a) {
232
236
  var textSize = _a.textSize;
@@ -8,7 +8,7 @@ declare type Props = {
8
8
  hoverMode?: 'none' | 'use';
9
9
  contextMenuOptionArray?: PDSValueOption[];
10
10
  contextMenuState?: 'normal' | 'disabled';
11
- colorTheme?: 'seller' | 'subscriber';
11
+ colorTheme?: 'seller' | 'subscriber' | 'seller_transparent' | 'subscriber_transparent';
12
12
  onClickContextMenuItem?: (option: PDSValueOption) => void;
13
13
  };
14
14
  declare function BasicChatListItem({ titleText, contentText, leftImageMode, imageSrc, hoverMode, contextMenuOptionArray, onClickContextMenuItem, contextMenuState, colorTheme }: Props): JSX.Element;
@@ -36,11 +36,15 @@ var TextLabel_1 = require("../TextLabel");
36
36
  var Popup_1 = require("./Popup");
37
37
  var titleTextColors = {
38
38
  seller: 'usrTextBrandPrimary',
39
- subscriber: 'sysTextSecondary'
39
+ subscriber: 'sysTextSecondary',
40
+ seller_transparent: 'usrTextBrandPrimary',
41
+ subscriber_transparent: 'sysTextWhite'
40
42
  };
41
43
  var backgroundColorTheme = {
42
44
  seller: 'ui_cpnt_list_base_area_seller',
43
- subscriber: 'ui_cpnt_list_base_area'
45
+ subscriber: 'ui_cpnt_list_base_area',
46
+ seller_transparent: 'ui_cpnt_list_base_area_transparent_seller',
47
+ subscriber_transparent: 'ui_cpnt_list_base_area_transparent'
44
48
  };
45
49
  function BasicChatListItem(_a) {
46
50
  var titleText = _a.titleText, contentText = _a.contentText, _b = _a.leftImageMode, leftImageMode = _b === void 0 ? 'none' : _b, imageSrc = _a.imageSrc, _c = _a.hoverMode, hoverMode = _c === void 0 ? 'use' : _c, contextMenuOptionArray = _a.contextMenuOptionArray, onClickContextMenuItem = _a.onClickContextMenuItem, _d = _a.contextMenuState, contextMenuState = _d === void 0 ? 'normal' : _d, _e = _a.colorTheme, colorTheme = _e === void 0 ? 'subscriber' : _e;
@@ -76,7 +80,7 @@ function BasicChatListItem(_a) {
76
80
  react_1.default.createElement(hybrid_1.ImageView, { shapeType: "circular", ratio: "1_1", scaleType: "cover", src: imageSrc, width: "responsive" }))),
77
81
  react_1.default.createElement(TextLabel_1.TextLabel, { text: titleText, styleTheme: "caption1Bold", colorTheme: titleTextColors[colorTheme] }),
78
82
  react_1.default.createElement(S_ContentTextWrapper, null,
79
- react_1.default.createElement(TextLabel_1.TextLabel, { text: contentText, styleTheme: "caption1Regular", colorTheme: "sysTextPrimary", wordBreak: "break_all" })),
83
+ react_1.default.createElement(TextLabel_1.TextLabel, { text: contentText, styleTheme: "caption1Regular", colorTheme: colorTheme === 'subscriber_transparent' ? 'sysTextWhite' : 'sysTextPrimary', wordBreak: "break_all" })),
80
84
  hoverMode === 'use' && (react_1.default.createElement(S_SeeMoreButton, { isContextMenuOpen: isContextMenuOpen, hoverMode: hoverMode, ref: contextMenuRef },
81
85
  react_1.default.createElement(IconButton_1.IconButton, { fillType: "fill", baseSize: "xsmall", iconFillType: "fill", iconSize: 20, iconName: "ic_more", baseColorKey: "ui_cpnt_button_fill_base_transparent", iconColorKey: "ui_cpnt_button_icon_enabled", onClick: handleMoreButtonClick }))),
82
86
  react_1.default.createElement(Popup_1.PopupProvider, null,
@@ -8,6 +8,7 @@ declare type BasicListProps = {
8
8
  columns?: 1 | 2 | 3 | 4 | 5 | 6;
9
9
  columnSpacing?: 0 | 16 | 24;
10
10
  rowSpacing?: 0 | 24 | 32 | 48 | 64;
11
+ spacingMode?: 'none' | 'use';
11
12
  };
12
- declare function BasicList({ children, titleStyleTheme, titleText, captionText, columns, columnSpacing, rowSpacing }: BasicListProps): JSX.Element;
13
+ declare function BasicList({ children, titleStyleTheme, titleText, captionText, columns, columnSpacing, rowSpacing, spacingMode }: BasicListProps): JSX.Element;
13
14
  export default BasicList;
@@ -12,9 +12,9 @@ var styled_components_1 = __importDefault(require("styled-components"));
12
12
  var hybrid_1 = require("../../../hybrid");
13
13
  var TextLabel_1 = require("../TextLabel");
14
14
  function BasicList(_a) {
15
- var children = _a.children, _b = _a.titleStyleTheme, titleStyleTheme = _b === void 0 ? 'headingBold' : _b, titleText = _a.titleText, captionText = _a.captionText, _c = _a.columns, columns = _c === void 0 ? 1 : _c, _d = _a.columnSpacing, columnSpacing = _d === void 0 ? 16 : _d, _e = _a.rowSpacing, rowSpacing = _e === void 0 ? 0 : _e;
15
+ var children = _a.children, _b = _a.titleStyleTheme, titleStyleTheme = _b === void 0 ? 'headingBold' : _b, titleText = _a.titleText, captionText = _a.captionText, _c = _a.columns, columns = _c === void 0 ? 1 : _c, _d = _a.columnSpacing, columnSpacing = _d === void 0 ? 16 : _d, _e = _a.rowSpacing, rowSpacing = _e === void 0 ? 0 : _e, _f = _a.spacingMode, spacingMode = _f === void 0 ? 'use' : _f;
16
16
  return (react_1.default.createElement(react_1.default.Fragment, null,
17
- (titleText || captionText) && (react_1.default.createElement(S_TitleBox, null,
17
+ (titleText || captionText) && (react_1.default.createElement(S_TitleBox, { spacingMode: spacingMode },
18
18
  react_1.default.createElement(TextLabel_1.TextLabel, { text: titleText, styleTheme: titleStyleTheme }),
19
19
  titleText && captionText && react_1.default.createElement(hybrid_1.Spacing, { size: "spacing_a", spacingType: "height" }),
20
20
  captionText && react_1.default.createElement(TextLabel_1.TextLabel, { text: captionText, styleTheme: "body2Regular" }))),
@@ -24,8 +24,8 @@ var S_TitleBox = styled_components_1.default.div(templateObject_1 || (templateOb
24
24
  var theme = _a.theme;
25
25
  return "" + theme.spacing.spacingD;
26
26
  }, function (_a) {
27
- var theme = _a.theme;
28
- return "0 " + theme.spacing.spacingE;
27
+ var spacingMode = _a.spacingMode, theme = _a.theme;
28
+ return spacingMode === 'use' && "0 " + theme.spacing.spacingE;
29
29
  });
30
30
  var S_BasicListWrapper = styled_components_1.default.div(templateObject_2 || (templateObject_2 = __makeTemplateObject(["\n column-gap: ", ";\n display: grid;\n grid-template-columns: ", ";\n row-gap: ", ";\n"], ["\n column-gap: ", ";\n display: grid;\n grid-template-columns: ", ";\n row-gap: ", ";\n"])), function (_a) {
31
31
  var columnSpacing = _a.columnSpacing;