@class101/cdn-ui-system 0.0.10 → 0.0.14

Sign up to get free protection for your applications and to get access to all the features.
Files changed (1006) hide show
  1. package/{chunk-AY54FCVA.js → chunk-3KYAQ2NT.js} +12 -2
  2. package/{chunk-KBR5BGSG.js → chunk-7BBOJQDQ.js} +6 -34
  3. package/chunk-7YEJCBTL.js +9145 -0
  4. package/chunk-CX6TK7VK.js +254 -0
  5. package/{chunk-7BJXCATJ.js → chunk-DNFIUSBY.js} +6 -13
  6. package/chunk-FUJTAKKV.js +42 -0
  7. package/{chunk-F522NW23.js → chunk-GDCJAODR.js} +7 -26
  8. package/chunk-HW26YLKP.js +21 -0
  9. package/{chunk-E2KIAABB.js → chunk-I6RNEIJ3.js} +1 -1
  10. package/{chunk-UAWCTQGC.js → chunk-IANUYI35.js} +72 -353
  11. package/chunk-IPJCOOHW.js +70 -0
  12. package/chunk-KAXHKCBQ.js +326 -0
  13. package/{chunk-2VS4JN2V.js → chunk-M6Q4VQQO.js} +14 -13
  14. package/{chunk-IMWQE6G2.js → chunk-PIK2PPCH.js} +3 -2
  15. package/{chunk-FTDRDLT4.js → chunk-PLVSTHAU.js} +2 -2
  16. package/chunk-PXGPVISY.js +29 -0
  17. package/{chunk-QN5Q5NTF.js → chunk-QFKGGJAB.js} +1 -1
  18. package/{chunk-FRNHAL35.js → chunk-RBRSEVW3.js} +16 -17
  19. package/chunk-SBVDM6EP.js +58 -0
  20. package/{chunk-AXJOQSVO.js → chunk-XYFEP7P7.js} +1 -1
  21. package/{chunk-IKYIYCM6.js → chunk-YJWVUALA.js} +8 -8
  22. package/contexts/ImageContext/ImageContext.js +2 -2
  23. package/contexts/ImageContext/index.js +2 -2
  24. package/contexts/LinkContext/LinkContext.js +2 -2
  25. package/contexts/LinkContext/index.js +2 -2
  26. package/contexts/SafeAreaContext/SafeAreaContext.js +11 -0
  27. package/contexts/SafeAreaContext/index.js +10 -0
  28. package/contexts/ScrollContext/ScrollContext.js +18 -0
  29. package/contexts/ScrollContext/index.js +11 -0
  30. package/contexts/UiSystemProvider.js +12 -10
  31. package/core/colors/DarkModeColors.js +3 -2
  32. package/core/colors/LightModeColors.js +3 -2
  33. package/core/index.js +18 -8
  34. package/core/props/action.js +3 -3
  35. package/core/props/animator.js +3 -3
  36. package/core/props/background.js +10 -5
  37. package/core/props/border.js +25 -4
  38. package/core/props/color.js +3 -3
  39. package/core/props/flexbox.js +13 -5
  40. package/core/props/icon.js +3 -3
  41. package/core/props/image.js +10 -7
  42. package/core/props/index.js +40 -25
  43. package/core/props/layout.js +29 -4
  44. package/core/props/position.js +3 -3
  45. package/core/props/shadow.js +3 -3
  46. package/core/props/space.js +3 -3
  47. package/core/props/transform.js +29 -3
  48. package/core/props/transition.js +3 -3
  49. package/core/props/types/ResponsiveValue.js +1 -1
  50. package/core/props/types/SystemComponent.js +1 -1
  51. package/core/props/typography.js +6 -3
  52. package/core/props/utils/calculateResponsiveValues.js +27 -0
  53. package/core/props/utils/getResponsiveValue.js +7 -6
  54. package/core/props/utils/skipForwardProps.js +2 -2
  55. package/core/props/video.js +3 -3
  56. package/core/theme/baseTheme.js +14 -3
  57. package/core/theme/defaultTheme.js +9 -9
  58. package/core/theme/signatureTheme.js +11 -10
  59. package/core/variants/baseVariant/baseVariant.js +4 -4
  60. package/core/variants/baseVariant/index.js +2 -2
  61. package/core/variants/makeStyled/index.js +11 -0
  62. package/core/variants/makeStyled/makeStyled.js +18 -0
  63. package/core/variants/propVariant/index.js +2 -2
  64. package/core/variants/propVariant/propVariant.js +9 -13
  65. package/core/variants/propVariant/propVariant.spec.js +10 -10
  66. package/core/variants/propsVariant/index.js +10 -0
  67. package/core/variants/propsVariant/propsVariant.js +32 -0
  68. package/core/variants/propsVariant/propsVariant.spec.js +73 -0
  69. package/core/variants/styleVariant/index.js +2 -2
  70. package/core/variants/styleVariant/styleVariant.js +14 -11
  71. package/core/variants/styleVariant/styleVariant.spec.js +14 -12
  72. package/core/variants/stylesVariant/index.js +10 -0
  73. package/core/variants/stylesVariant/stylesVariant.js +40 -0
  74. package/core/variants/stylesVariant/stylesVariant.spec.js +52 -0
  75. package/core/variants/system/index.js +2 -2
  76. package/core/variants/system/system.js +21 -21
  77. package/core/variants/system/type.js +6 -0
  78. package/hooks/useIsMobile/index.js +10 -0
  79. package/hooks/useIsMobile/useIsMobile.js +12 -0
  80. package/hooks/useMediaQuery/index.js +10 -0
  81. package/hooks/useMediaQuery/useMediaQuery.js +32 -0
  82. package/hooks/useNativeResponsiveValue/index.js +10 -0
  83. package/hooks/useNativeResponsiveValue/useNativeResponsiveValue.js +12 -0
  84. package/hooks/useResponsiveValue/index.js +2 -2
  85. package/hooks/useResponsiveValue/useResponsiveValue.js +12 -8
  86. package/hooks/useWindowResizeEvent/index.js +10 -0
  87. package/hooks/useWindowResizeEvent/useWindowResizeEvent.js +27 -0
  88. package/index.js +159 -101
  89. package/lib/Accordion/Accordion.js +23 -16
  90. package/lib/Accordion/index.js +2 -2
  91. package/lib/Action/Action.js +12 -10
  92. package/lib/Action/index.js +2 -2
  93. package/lib/Alert/Alert.js +12 -10
  94. package/lib/Alert/index.js +2 -2
  95. package/lib/Animation/Animator/Animator.js +31 -20
  96. package/lib/Animation/Animator/index.js +2 -2
  97. package/lib/Animation/FadeAnimation/FadeAnimation.js +21 -15
  98. package/lib/Animation/FadeAnimation/index.js +2 -2
  99. package/lib/Animation/RotateAnimation/RotateAnimation.js +9 -8
  100. package/lib/Animation/RotateAnimation/index.js +2 -2
  101. package/lib/Animation/SlideAnimation/SlideAnimation.js +13 -10
  102. package/lib/Animation/SlideAnimation/index.js +2 -2
  103. package/lib/Animation/Transition/Transition.js +23 -15
  104. package/lib/Animation/Transition/index.js +2 -2
  105. package/lib/Avatar/Avatar.js +96 -88
  106. package/lib/Avatar/index.js +2 -2
  107. package/lib/Backdrop/Backdrop.js +11 -8
  108. package/lib/Backdrop/index.js +2 -2
  109. package/lib/Background/Background.js +11 -22
  110. package/lib/Background/index.js +2 -2
  111. package/lib/BackgroundImage/BackgroundImage.js +20 -0
  112. package/lib/BackgroundImage/index.js +10 -0
  113. package/lib/BreadCrumb/BreadCrumb.js +12 -12
  114. package/lib/BreadCrumb/index.js +2 -2
  115. package/lib/BulletPagination/BulletPagination.js +37 -0
  116. package/lib/BulletPagination/index.js +10 -0
  117. package/lib/Button/Button/Button.js +65 -18
  118. package/lib/Button/Button/index.js +2 -2
  119. package/lib/Button/ContainedButton/ContainedButton.js +143 -122
  120. package/lib/Button/ContainedButton/index.js +2 -2
  121. package/lib/Button/GhostButton/GhostButton.js +155 -0
  122. package/lib/Button/GhostButton/index.js +10 -0
  123. package/lib/Button/TextButton/TextButton.js +108 -110
  124. package/lib/Button/TextButton/index.js +2 -2
  125. package/lib/Callout/Callout.js +71 -0
  126. package/lib/Callout/index.js +10 -0
  127. package/lib/Chip/FilterChip/FilterChip.js +77 -0
  128. package/lib/Chip/FilterChip/index.js +10 -0
  129. package/lib/Chip/InputChip/InputChip.js +1441 -0
  130. package/lib/Chip/InputChip/index.js +10 -0
  131. package/lib/ConditionalWrapper/ConditionalWrapper.js +2 -2
  132. package/lib/ConditionalWrapper/index.js +2 -2
  133. package/lib/ContentArea/ContentArea.js +40 -0
  134. package/lib/ContentArea/index.js +10 -0
  135. package/lib/Divider/Divider.js +13 -10
  136. package/lib/Divider/index.js +2 -2
  137. package/lib/Dot/Dot.js +29 -0
  138. package/lib/Dot/index.js +10 -0
  139. package/lib/Drawer/Drawer.js +57 -0
  140. package/lib/Drawer/index.js +10 -0
  141. package/lib/Elevation/Elevation.js +10 -9
  142. package/lib/Elevation/index.js +2 -2
  143. package/lib/Form/CardNumberField/CardNumberField.js +28 -0
  144. package/lib/Form/CardNumberField/index.js +10 -0
  145. package/lib/Form/CardNumberInput/CardNumberInput.js +50 -0
  146. package/lib/Form/CardNumberInput/constants.js +16 -0
  147. package/lib/Form/CardNumberInput/index.js +10 -0
  148. package/lib/Form/CardNumberInput/utils.js +48 -0
  149. package/lib/Form/CheckBox/CheckBox.js +22 -23
  150. package/lib/Form/CheckBox/index.js +2 -2
  151. package/lib/Form/CheckBoxField/CheckBoxField.js +17 -15
  152. package/lib/Form/CheckBoxField/index.js +2 -2
  153. package/lib/Form/Description/Description.js +24 -25
  154. package/lib/Form/Description/index.js +2 -2
  155. package/lib/Form/FormField/FormField.js +6 -6
  156. package/lib/Form/FormField/index.js +2 -2
  157. package/lib/Form/HiddenInput/HiddenInput.js +22 -25
  158. package/lib/Form/HiddenInput/index.js +2 -2
  159. package/lib/Form/InlineTextLabel/InlineTextLabel.js +74 -19
  160. package/lib/Form/InlineTextLabel/index.js +2 -2
  161. package/lib/Form/Input/Input.js +19 -52
  162. package/lib/Form/Input/index.js +2 -2
  163. package/lib/Form/Label/Label.js +2 -2
  164. package/lib/Form/Label/index.js +2 -2
  165. package/lib/Form/Radio/Radio.js +47 -0
  166. package/lib/Form/Radio/index.js +10 -0
  167. package/lib/Form/RadioField/RadioField.js +38 -0
  168. package/lib/Form/RadioField/index.js +10 -0
  169. package/lib/Form/RadioGroupField/RadioGroupField.js +49 -0
  170. package/lib/Form/RadioGroupField/index.js +10 -0
  171. package/lib/Form/Range/Range.js +15 -12
  172. package/lib/Form/Range/index.js +2 -2
  173. package/lib/Form/SearchInput/SearchInput.js +72 -0
  174. package/lib/Form/SearchInput/index.js +10 -0
  175. package/lib/Form/Select/Select.js +50 -45
  176. package/lib/Form/Select/index.js +2 -2
  177. package/lib/Form/SelectField/SelectField.js +19 -15
  178. package/lib/Form/SelectField/index.js +2 -2
  179. package/lib/Form/TextArea/TextArea.js +12 -9
  180. package/lib/Form/TextArea/index.js +2 -2
  181. package/lib/Form/TextAreaField/TextAreaField.js +28 -0
  182. package/lib/Form/TextAreaField/index.js +10 -0
  183. package/lib/Form/TextField/TextField.js +19 -15
  184. package/lib/Form/TextField/index.js +2 -2
  185. package/lib/Form/TextInput/TextInput.js +32 -0
  186. package/lib/Form/TextInput/index.js +10 -0
  187. package/lib/Form/TextInput/variants.js +42 -0
  188. package/lib/Form/TextLabel/TextLabel.js +5 -5
  189. package/lib/Form/TextLabel/index.js +2 -2
  190. package/lib/GlobalStyle/GlobalStyle.js +25 -5
  191. package/lib/GlobalStyle/index.js +2 -2
  192. package/lib/GridList/GridList.js +31 -20
  193. package/lib/GridList/__mocks__/index.js +1 -1
  194. package/lib/GridList/index.js +2 -2
  195. package/lib/Highlight/Highlight.js +3 -3
  196. package/lib/Highlight/index.js +2 -2
  197. package/lib/HtmlContentStyle/HtmlContentStyle.js +31 -45
  198. package/lib/HtmlContentStyle/index.js +2 -2
  199. package/lib/Icon/Icon.js +1 -1
  200. package/lib/Icon/fill/Add.js +22 -12
  201. package/lib/Icon/fill/AddCircle.js +22 -12
  202. package/lib/Icon/fill/Alert.js +29 -19
  203. package/lib/Icon/fill/AlertCircle.js +22 -12
  204. package/lib/Icon/fill/Analysis.js +22 -12
  205. package/lib/Icon/fill/AppDownloadCircle.js +22 -12
  206. package/lib/Icon/fill/AppleCircle.js +22 -12
  207. package/lib/Icon/fill/Archive.js +22 -12
  208. package/lib/Icon/fill/ArrowDown.js +22 -12
  209. package/lib/Icon/fill/ArrowLeft.js +22 -12
  210. package/lib/Icon/fill/ArrowRight.js +22 -12
  211. package/lib/Icon/fill/ArrowUp.js +22 -12
  212. package/lib/Icon/fill/Badge.js +22 -12
  213. package/lib/Icon/fill/Bell.js +22 -12
  214. package/lib/Icon/fill/BellOff.js +22 -12
  215. package/lib/Icon/fill/Bold.js +22 -12
  216. package/lib/Icon/fill/Bookmark.js +22 -12
  217. package/lib/Icon/fill/Camera.js +22 -12
  218. package/lib/Icon/fill/Canlendar.js +22 -12
  219. package/lib/Icon/fill/Caption.js +25 -15
  220. package/lib/Icon/fill/Cart.js +32 -0
  221. package/lib/Icon/fill/Check.js +29 -19
  222. package/lib/Icon/fill/CheckCircle.js +22 -12
  223. package/lib/Icon/fill/CheckboxIndeterminated.js +22 -12
  224. package/lib/Icon/fill/CheckboxOff.js +22 -12
  225. package/lib/Icon/fill/CheckboxOn.js +22 -12
  226. package/lib/Icon/fill/ChevronDown.js +22 -12
  227. package/lib/Icon/fill/ChevronLeft.js +22 -12
  228. package/lib/Icon/fill/ChevronRight.js +22 -12
  229. package/lib/Icon/fill/ChevronUp.js +22 -12
  230. package/lib/Icon/fill/Clap.js +22 -12
  231. package/lib/Icon/fill/ClearStyle.js +22 -12
  232. package/lib/Icon/fill/Clip.js +22 -12
  233. package/lib/Icon/fill/Clock.js +29 -19
  234. package/lib/Icon/fill/Close.js +22 -12
  235. package/lib/Icon/fill/CloseCircle.js +22 -12
  236. package/lib/Icon/fill/Comment.js +22 -12
  237. package/lib/Icon/fill/Compass.js +22 -12
  238. package/lib/Icon/fill/Confetti.js +30 -20
  239. package/lib/Icon/fill/Contents.js +22 -12
  240. package/lib/Icon/fill/Copy.js +25 -15
  241. package/lib/Icon/fill/Coupon.js +22 -12
  242. package/lib/Icon/fill/CreditCard.js +22 -12
  243. package/lib/Icon/fill/Crop.js +22 -12
  244. package/lib/Icon/fill/Crown.js +22 -12
  245. package/lib/Icon/fill/DepositPassbook.js +22 -12
  246. package/lib/Icon/fill/Design.js +25 -15
  247. package/lib/Icon/fill/Development.js +22 -12
  248. package/lib/Icon/fill/DisclosureDown.js +22 -12
  249. package/lib/Icon/fill/DisclosureUp.js +22 -12
  250. package/lib/Icon/fill/Dislike.js +22 -12
  251. package/lib/Icon/fill/Divider.js +22 -12
  252. package/lib/Icon/fill/Download.js +25 -15
  253. package/lib/Icon/fill/DropDown.js +22 -12
  254. package/lib/Icon/fill/DropUp.js +22 -12
  255. package/lib/Icon/fill/Earybird.js +22 -12
  256. package/lib/Icon/fill/Edit.js +24 -14
  257. package/lib/Icon/fill/EyeOff.js +22 -12
  258. package/lib/Icon/fill/EyeOn.js +25 -15
  259. package/lib/Icon/fill/FacebookCircle.js +22 -12
  260. package/lib/Icon/fill/Filter.js +22 -12
  261. package/lib/Icon/fill/FullScreen.js +22 -12
  262. package/lib/Icon/fill/FullScreenExit.js +22 -12
  263. package/lib/Icon/fill/Gear.js +24 -14
  264. package/lib/Icon/fill/Ghost.js +22 -12
  265. package/lib/Icon/fill/Gift.js +22 -12
  266. package/lib/Icon/fill/Groove.js +22 -12
  267. package/lib/Icon/fill/Hashtag.js +22 -12
  268. package/lib/Icon/fill/Heart.js +22 -12
  269. package/lib/Icon/fill/HeartFull.js +22 -12
  270. package/lib/Icon/fill/HelpCircle.js +22 -12
  271. package/lib/Icon/fill/Home.js +22 -12
  272. package/lib/Icon/fill/Hot.js +22 -12
  273. package/lib/Icon/fill/InfoCircle.js +22 -12
  274. package/lib/Icon/fill/InstagramCircle.js +25 -15
  275. package/lib/Icon/fill/Laptop.js +22 -12
  276. package/lib/Icon/fill/Like.js +22 -12
  277. package/lib/Icon/fill/Link.js +25 -15
  278. package/lib/Icon/fill/LinkOutside.js +25 -15
  279. package/lib/Icon/fill/ListBullet.js +22 -12
  280. package/lib/Icon/fill/ListNumber.js +22 -12
  281. package/lib/Icon/fill/Location.js +22 -12
  282. package/lib/Icon/fill/LocationCurrent.js +22 -12
  283. package/lib/Icon/fill/Lock.js +22 -12
  284. package/lib/Icon/fill/LockOff.js +22 -12
  285. package/lib/Icon/fill/Logout.js +22 -12
  286. package/lib/Icon/fill/Menu.js +22 -12
  287. package/lib/Icon/fill/Message.js +28 -18
  288. package/lib/Icon/fill/Mic.js +25 -15
  289. package/lib/Icon/fill/Minus.js +22 -12
  290. package/lib/Icon/fill/MinusCircle.js +22 -12
  291. package/lib/Icon/fill/Mobile.js +22 -12
  292. package/lib/Icon/fill/Monitor.js +22 -12
  293. package/lib/Icon/fill/MoreHorizontal.js +22 -12
  294. package/lib/Icon/fill/MoreVertical.js +22 -12
  295. package/lib/Icon/fill/NaverCircle.js +22 -12
  296. package/lib/Icon/fill/Notice.js +22 -12
  297. package/lib/Icon/fill/Oa.js +22 -12
  298. package/lib/Icon/fill/Paper1.js +22 -12
  299. package/lib/Icon/fill/Paper2.js +22 -12
  300. package/lib/Icon/fill/Paper3.js +22 -12
  301. package/lib/Icon/fill/Person.js +25 -15
  302. package/lib/Icon/fill/Phone.js +22 -12
  303. package/lib/Icon/fill/Photo.js +25 -15
  304. package/lib/Icon/fill/PhotoAdd.js +25 -15
  305. package/lib/Icon/fill/PhotoDouble.js +28 -18
  306. package/lib/Icon/fill/Pin.js +22 -12
  307. package/lib/Icon/fill/Pip.js +25 -15
  308. package/lib/Icon/fill/Play.js +22 -12
  309. package/lib/Icon/fill/PlayBackA.js +28 -18
  310. package/lib/Icon/fill/PlayCircle.js +22 -12
  311. package/lib/Icon/fill/PlayFast.js +22 -12
  312. package/lib/Icon/fill/PlayFast10Sec.js +25 -15
  313. package/lib/Icon/fill/PlayFast15Sec.js +25 -15
  314. package/lib/Icon/fill/PlayFast5Sec.js +25 -15
  315. package/lib/Icon/fill/PlayNext.js +22 -12
  316. package/lib/Icon/fill/PlayPause.js +22 -12
  317. package/lib/Icon/fill/PlayPrev.js +22 -12
  318. package/lib/Icon/fill/PlayRewind10Sec.js +25 -15
  319. package/lib/Icon/fill/PlayRewind15Sec.js +25 -15
  320. package/lib/Icon/fill/PlayRewind5Sec.js +25 -15
  321. package/lib/Icon/fill/PlaySpeedX025.js +22 -12
  322. package/lib/Icon/fill/PlaySpeedX05.js +22 -12
  323. package/lib/Icon/fill/PlaySpeedX1.js +22 -12
  324. package/lib/Icon/fill/PlaySpeedX15.js +22 -12
  325. package/lib/Icon/fill/PlaySpeedX2.js +22 -12
  326. package/lib/Icon/fill/PlaystoreCircle.js +22 -12
  327. package/lib/Icon/fill/PointCircle.js +25 -15
  328. package/lib/Icon/fill/Project.js +22 -12
  329. package/lib/Icon/fill/Quote.js +22 -12
  330. package/lib/Icon/fill/QuoteReverse.js +22 -12
  331. package/lib/Icon/fill/Receipt.js +22 -12
  332. package/lib/Icon/fill/Repeat.js +22 -12
  333. package/lib/Icon/fill/Replay.js +25 -15
  334. package/lib/Icon/fill/Reply.js +22 -12
  335. package/lib/Icon/fill/Report.js +22 -12
  336. package/lib/Icon/fill/Rocket.js +22 -12
  337. package/lib/Icon/fill/RotateClockwise.js +29 -19
  338. package/lib/Icon/fill/Sad.js +22 -12
  339. package/lib/Icon/fill/Search.js +22 -12
  340. package/lib/Icon/fill/Send.js +22 -12
  341. package/lib/Icon/fill/Send2.js +22 -12
  342. package/lib/Icon/fill/Serious.js +22 -12
  343. package/lib/Icon/fill/Share.js +25 -15
  344. package/lib/Icon/fill/Sheild.js +22 -12
  345. package/lib/Icon/fill/ShippingTruck.js +25 -15
  346. package/lib/Icon/fill/Smile.js +22 -12
  347. package/lib/Icon/fill/SocialMedia.js +22 -12
  348. package/lib/Icon/fill/Sorting.js +28 -18
  349. package/lib/Icon/fill/Square.js +22 -12
  350. package/lib/Icon/fill/Star.js +22 -12
  351. package/lib/Icon/fill/StarFull.js +22 -12
  352. package/lib/Icon/fill/StarHalf.js +22 -12
  353. package/lib/Icon/fill/Stock.js +22 -12
  354. package/lib/Icon/fill/Store.js +22 -12
  355. package/lib/Icon/fill/Subtitle.js +22 -12
  356. package/lib/Icon/fill/TalkHelp.js +29 -19
  357. package/lib/Icon/fill/TextH1.js +22 -12
  358. package/lib/Icon/fill/TextH2.js +22 -12
  359. package/lib/Icon/fill/TextH3.js +22 -12
  360. package/lib/Icon/fill/ThunderCircle.js +22 -12
  361. package/lib/Icon/fill/Timer.js +22 -12
  362. package/lib/Icon/fill/ToggleOff.js +22 -12
  363. package/lib/Icon/fill/ToggleOn.js +22 -12
  364. package/lib/Icon/fill/ToteBag.js +22 -12
  365. package/lib/Icon/fill/Trash.js +22 -12
  366. package/lib/Icon/fill/TwitterCircle.js +22 -12
  367. package/lib/Icon/fill/Undo.js +22 -12
  368. package/lib/Icon/fill/Video.js +22 -12
  369. package/lib/Icon/fill/Volume.js +25 -15
  370. package/lib/Icon/fill/VolumeMute.js +22 -12
  371. package/lib/Icon/fill/Web.js +22 -12
  372. package/lib/Icon/fill/Won.js +22 -12
  373. package/lib/Icon/fill/WonBadge.js +22 -12
  374. package/lib/Icon/fill/WonCircle.js +22 -12
  375. package/lib/Icon/fill/Write.js +22 -12
  376. package/lib/Icon/fill/YoutubeCircle.js +25 -15
  377. package/lib/Icon/fill/index.js +179 -177
  378. package/lib/Icon/index.js +1 -1
  379. package/lib/Icon/regular/Add.js +22 -12
  380. package/lib/Icon/regular/AddCircle.js +25 -15
  381. package/lib/Icon/regular/Alert.js +25 -15
  382. package/lib/Icon/regular/AlertCircle.js +25 -15
  383. package/lib/Icon/regular/Analysis.js +22 -12
  384. package/lib/Icon/regular/AppDownloadCircle.js +28 -18
  385. package/lib/Icon/regular/AppleCircle.js +27 -17
  386. package/lib/Icon/regular/Archive.js +25 -15
  387. package/lib/Icon/regular/ArrowDown.js +22 -12
  388. package/lib/Icon/regular/ArrowLeft.js +22 -12
  389. package/lib/Icon/regular/ArrowRight.js +22 -12
  390. package/lib/Icon/regular/ArrowUp.js +22 -12
  391. package/lib/Icon/regular/Badge.js +25 -15
  392. package/lib/Icon/regular/Bell.js +27 -17
  393. package/lib/Icon/regular/BellOff.js +27 -17
  394. package/lib/Icon/regular/Bold.js +22 -12
  395. package/lib/Icon/regular/Bookmark.js +22 -12
  396. package/lib/Icon/regular/Camera.js +25 -15
  397. package/lib/Icon/regular/Canlendar.js +25 -15
  398. package/lib/Icon/regular/Caption.js +25 -15
  399. package/lib/Icon/regular/Cart.js +32 -0
  400. package/lib/Icon/regular/Check.js +22 -12
  401. package/lib/Icon/regular/CheckCircle.js +25 -15
  402. package/lib/Icon/regular/CheckboxIndeterminated.js +22 -12
  403. package/lib/Icon/regular/CheckboxOff.js +22 -12
  404. package/lib/Icon/regular/CheckboxOn.js +22 -12
  405. package/lib/Icon/regular/ChevronDown.js +22 -12
  406. package/lib/Icon/regular/ChevronLeft.js +22 -12
  407. package/lib/Icon/regular/ChevronRight.js +22 -12
  408. package/lib/Icon/regular/ChevronUp.js +22 -12
  409. package/lib/Icon/regular/Clap.js +25 -15
  410. package/lib/Icon/regular/ClearStyle.js +22 -12
  411. package/lib/Icon/regular/Clip.js +22 -12
  412. package/lib/Icon/regular/Clock.js +27 -17
  413. package/lib/Icon/regular/Close.js +22 -12
  414. package/lib/Icon/regular/CloseCircle.js +25 -15
  415. package/lib/Icon/regular/Comment.js +25 -15
  416. package/lib/Icon/regular/Compass.js +25 -15
  417. package/lib/Icon/regular/Confetti.js +22 -12
  418. package/lib/Icon/regular/Contents.js +25 -15
  419. package/lib/Icon/regular/Copy.js +25 -15
  420. package/lib/Icon/regular/Coupon.js +22 -12
  421. package/lib/Icon/regular/CreditCard.js +22 -12
  422. package/lib/Icon/regular/Crop.js +22 -12
  423. package/lib/Icon/regular/Crown.js +22 -12
  424. package/lib/Icon/regular/DepositPassbook.js +22 -12
  425. package/lib/Icon/regular/Design.js +25 -15
  426. package/lib/Icon/regular/Development.js +22 -12
  427. package/lib/Icon/regular/DisclosureDown.js +22 -12
  428. package/lib/Icon/regular/DisclosureUp.js +22 -12
  429. package/lib/Icon/regular/Dislike.js +29 -19
  430. package/lib/Icon/regular/Divider.js +22 -12
  431. package/lib/Icon/regular/Download.js +25 -15
  432. package/lib/Icon/regular/DropDown.js +22 -12
  433. package/lib/Icon/regular/DropUp.js +22 -12
  434. package/lib/Icon/regular/Earybird.js +25 -15
  435. package/lib/Icon/regular/Edit.js +22 -12
  436. package/lib/Icon/regular/EyeOff.js +22 -12
  437. package/lib/Icon/regular/EyeOn.js +25 -15
  438. package/lib/Icon/regular/FacebookCircle.js +27 -17
  439. package/lib/Icon/regular/Filter.js +22 -12
  440. package/lib/Icon/regular/FullScreen.js +22 -12
  441. package/lib/Icon/regular/FullScreenExit.js +22 -12
  442. package/lib/Icon/regular/Gear.js +24 -14
  443. package/lib/Icon/regular/Ghost.js +25 -15
  444. package/lib/Icon/regular/Gift.js +22 -12
  445. package/lib/Icon/regular/Groove.js +22 -12
  446. package/lib/Icon/regular/Hashtag.js +22 -12
  447. package/lib/Icon/regular/Heart.js +22 -12
  448. package/lib/Icon/regular/HeartFull.js +22 -12
  449. package/lib/Icon/regular/HelpCircle.js +25 -15
  450. package/lib/Icon/regular/Home.js +25 -15
  451. package/lib/Icon/regular/Hot.js +25 -15
  452. package/lib/Icon/regular/InfoCircle.js +25 -15
  453. package/lib/Icon/regular/InstagramCircle.js +28 -18
  454. package/lib/Icon/regular/Laptop.js +22 -12
  455. package/lib/Icon/regular/Like.js +22 -12
  456. package/lib/Icon/regular/Link.js +25 -15
  457. package/lib/Icon/regular/LinkOutside.js +25 -15
  458. package/lib/Icon/regular/ListBullet.js +22 -12
  459. package/lib/Icon/regular/ListNumber.js +22 -12
  460. package/lib/Icon/regular/Location.js +25 -15
  461. package/lib/Icon/regular/LocationCurrent.js +22 -12
  462. package/lib/Icon/regular/Lock.js +25 -15
  463. package/lib/Icon/regular/LockOff.js +25 -15
  464. package/lib/Icon/regular/Logout.js +22 -12
  465. package/lib/Icon/regular/Menu.js +22 -12
  466. package/lib/Icon/regular/Message.js +22 -12
  467. package/lib/Icon/regular/Mic.js +25 -15
  468. package/lib/Icon/regular/Minus.js +22 -12
  469. package/lib/Icon/regular/MinusCircle.js +25 -15
  470. package/lib/Icon/regular/Mobile.js +25 -15
  471. package/lib/Icon/regular/Monitor.js +22 -12
  472. package/lib/Icon/regular/MoreHorizontal.js +22 -12
  473. package/lib/Icon/regular/MoreVertical.js +22 -12
  474. package/lib/Icon/regular/NaverCircle.js +25 -15
  475. package/lib/Icon/regular/Notice.js +22 -12
  476. package/lib/Icon/regular/Oa.js +22 -12
  477. package/lib/Icon/regular/Paper1.js +22 -12
  478. package/lib/Icon/regular/Paper2.js +25 -15
  479. package/lib/Icon/regular/Paper3.js +25 -15
  480. package/lib/Icon/regular/Person.js +22 -12
  481. package/lib/Icon/regular/Phone.js +22 -12
  482. package/lib/Icon/regular/Photo.js +25 -15
  483. package/lib/Icon/regular/PhotoAdd.js +28 -18
  484. package/lib/Icon/regular/PhotoDouble.js +28 -18
  485. package/lib/Icon/regular/Pin.js +22 -12
  486. package/lib/Icon/regular/Pip.js +25 -15
  487. package/lib/Icon/regular/Play.js +22 -12
  488. package/lib/Icon/regular/PlayBackA.js +28 -18
  489. package/lib/Icon/regular/PlayCircle.js +25 -15
  490. package/lib/Icon/regular/PlayFast.js +22 -12
  491. package/lib/Icon/regular/PlayFast10Sec.js +25 -15
  492. package/lib/Icon/regular/PlayFast15Sec.js +25 -15
  493. package/lib/Icon/regular/PlayFast5Sec.js +25 -15
  494. package/lib/Icon/regular/PlayNext.js +22 -12
  495. package/lib/Icon/regular/PlayPause.js +22 -12
  496. package/lib/Icon/regular/PlayPrev.js +22 -12
  497. package/lib/Icon/regular/PlayRewind10Sec.js +25 -15
  498. package/lib/Icon/regular/PlayRewind15Sec.js +25 -15
  499. package/lib/Icon/regular/PlayRewind5Sec.js +25 -15
  500. package/lib/Icon/regular/PlaySpeedX025.js +22 -12
  501. package/lib/Icon/regular/PlaySpeedX05.js +22 -12
  502. package/lib/Icon/regular/PlaySpeedX1.js +22 -12
  503. package/lib/Icon/regular/PlaySpeedX15.js +22 -12
  504. package/lib/Icon/regular/PlaySpeedX2.js +22 -12
  505. package/lib/Icon/regular/PlaystoreCircle.js +25 -15
  506. package/lib/Icon/regular/PointCircle.js +25 -15
  507. package/lib/Icon/regular/Project.js +22 -12
  508. package/lib/Icon/regular/Quote.js +22 -12
  509. package/lib/Icon/regular/QuoteReverse.js +22 -12
  510. package/lib/Icon/regular/Receipt.js +25 -15
  511. package/lib/Icon/regular/Repeat.js +22 -12
  512. package/lib/Icon/regular/Replay.js +25 -15
  513. package/lib/Icon/regular/Reply.js +27 -17
  514. package/lib/Icon/regular/Report.js +22 -12
  515. package/lib/Icon/regular/Rocket.js +25 -15
  516. package/lib/Icon/regular/RotateClockwise.js +22 -12
  517. package/lib/Icon/regular/Sad.js +28 -18
  518. package/lib/Icon/regular/Search.js +22 -12
  519. package/lib/Icon/regular/Send.js +22 -12
  520. package/lib/Icon/regular/Send2.js +22 -12
  521. package/lib/Icon/regular/Serious.js +25 -15
  522. package/lib/Icon/regular/Share.js +25 -15
  523. package/lib/Icon/regular/Sheild.js +25 -15
  524. package/lib/Icon/regular/ShippingTruck.js +22 -12
  525. package/lib/Icon/regular/Smile.js +25 -15
  526. package/lib/Icon/regular/SocialMedia.js +25 -15
  527. package/lib/Icon/regular/Sorting.js +28 -18
  528. package/lib/Icon/regular/Square.js +22 -12
  529. package/lib/Icon/regular/Star.js +22 -12
  530. package/lib/Icon/regular/StarFull.js +22 -12
  531. package/lib/Icon/regular/StarHalf.js +22 -12
  532. package/lib/Icon/regular/Stock.js +22 -12
  533. package/lib/Icon/regular/Store.js +22 -12
  534. package/lib/Icon/regular/Subtitle.js +25 -15
  535. package/lib/Icon/regular/TalkHelp.js +25 -15
  536. package/lib/Icon/regular/TextH1.js +22 -12
  537. package/lib/Icon/regular/TextH2.js +22 -12
  538. package/lib/Icon/regular/TextH3.js +22 -12
  539. package/lib/Icon/regular/ThunderCircle.js +25 -15
  540. package/lib/Icon/regular/Timer.js +27 -17
  541. package/lib/Icon/regular/ToggleOff.js +22 -12
  542. package/lib/Icon/regular/ToggleOn.js +22 -12
  543. package/lib/Icon/regular/ToteBag.js +22 -12
  544. package/lib/Icon/regular/Trash.js +25 -15
  545. package/lib/Icon/regular/Twitter.js +32 -0
  546. package/lib/Icon/regular/TwitterCircle.js +25 -15
  547. package/lib/Icon/regular/Undo.js +22 -12
  548. package/lib/Icon/regular/Video.js +25 -15
  549. package/lib/Icon/regular/Volume.js +25 -15
  550. package/lib/Icon/regular/VolumeMute.js +22 -12
  551. package/lib/Icon/regular/Web.js +22 -12
  552. package/lib/Icon/regular/Won.js +22 -12
  553. package/lib/Icon/regular/WonBadge.js +25 -15
  554. package/lib/Icon/regular/WonCircle.js +25 -15
  555. package/lib/Icon/regular/Write.js +22 -12
  556. package/lib/Icon/regular/YoutubeCircle.js +25 -15
  557. package/lib/Icon/regular/index.js +181 -177
  558. package/lib/Icon/thin/Add.js +22 -12
  559. package/lib/Icon/thin/AddCircle.js +25 -15
  560. package/lib/Icon/thin/Alert.js +31 -21
  561. package/lib/Icon/thin/AlertCircle.js +25 -15
  562. package/lib/Icon/thin/Analysis.js +22 -12
  563. package/lib/Icon/thin/AppDownloadCircle.js +25 -15
  564. package/lib/Icon/thin/AppleCircle.js +27 -17
  565. package/lib/Icon/thin/Archive.js +25 -15
  566. package/lib/Icon/thin/ArrowDown.js +22 -12
  567. package/lib/Icon/thin/ArrowLeft.js +22 -12
  568. package/lib/Icon/thin/ArrowRight.js +22 -12
  569. package/lib/Icon/thin/ArrowUp.js +22 -12
  570. package/lib/Icon/thin/Badge.js +25 -15
  571. package/lib/Icon/thin/Bell.js +22 -12
  572. package/lib/Icon/thin/BellOff.js +22 -12
  573. package/lib/Icon/thin/Bold.js +22 -12
  574. package/lib/Icon/thin/Bookmark.js +22 -12
  575. package/lib/Icon/thin/Camera.js +25 -15
  576. package/lib/Icon/thin/Canlendar.js +25 -15
  577. package/lib/Icon/thin/Caption.js +25 -15
  578. package/lib/Icon/thin/Cart.js +32 -0
  579. package/lib/Icon/thin/Check.js +22 -12
  580. package/lib/Icon/thin/CheckCircle.js +25 -15
  581. package/lib/Icon/thin/CheckboxIndeterminated.js +24 -14
  582. package/lib/Icon/thin/CheckboxOff.js +22 -12
  583. package/lib/Icon/thin/CheckboxOn.js +24 -14
  584. package/lib/Icon/thin/ChevronDown.js +22 -12
  585. package/lib/Icon/thin/ChevronLeft.js +22 -12
  586. package/lib/Icon/thin/ChevronRight.js +22 -12
  587. package/lib/Icon/thin/ChevronUp.js +22 -12
  588. package/lib/Icon/thin/Clap.js +22 -12
  589. package/lib/Icon/thin/ClearStyle.js +22 -12
  590. package/lib/Icon/thin/Clip.js +22 -12
  591. package/lib/Icon/thin/Clock.js +25 -15
  592. package/lib/Icon/thin/Close.js +22 -12
  593. package/lib/Icon/thin/CloseCircle.js +25 -15
  594. package/lib/Icon/thin/Comment.js +25 -15
  595. package/lib/Icon/thin/Compass.js +25 -15
  596. package/lib/Icon/thin/Confetti.js +22 -12
  597. package/lib/Icon/thin/Contents.js +25 -15
  598. package/lib/Icon/thin/Copy.js +25 -15
  599. package/lib/Icon/thin/Coupon.js +22 -12
  600. package/lib/Icon/thin/CreditCard.js +22 -12
  601. package/lib/Icon/thin/Crop.js +22 -12
  602. package/lib/Icon/thin/Crown.js +22 -12
  603. package/lib/Icon/thin/DepositPassbook.js +22 -12
  604. package/lib/Icon/thin/Design.js +25 -15
  605. package/lib/Icon/thin/Development.js +22 -12
  606. package/lib/Icon/thin/DisclosureDown.js +22 -12
  607. package/lib/Icon/thin/DisclosureUp.js +22 -12
  608. package/lib/Icon/thin/Dislike.js +29 -19
  609. package/lib/Icon/thin/Divider.js +22 -12
  610. package/lib/Icon/thin/Download.js +25 -15
  611. package/lib/Icon/thin/DropDown.js +22 -12
  612. package/lib/Icon/thin/DropUp.js +22 -12
  613. package/lib/Icon/thin/Earybird.js +25 -15
  614. package/lib/Icon/thin/Edit.js +22 -12
  615. package/lib/Icon/thin/EyeOff.js +22 -12
  616. package/lib/Icon/thin/EyeOn.js +25 -15
  617. package/lib/Icon/thin/FacebookCircle.js +27 -17
  618. package/lib/Icon/thin/Filter.js +22 -12
  619. package/lib/Icon/thin/FullScreen.js +22 -12
  620. package/lib/Icon/thin/FullScreenExit.js +22 -12
  621. package/lib/Icon/thin/Gear.js +22 -12
  622. package/lib/Icon/thin/Ghost.js +25 -15
  623. package/lib/Icon/thin/Gift.js +22 -12
  624. package/lib/Icon/thin/Groove.js +22 -12
  625. package/lib/Icon/thin/Hashtag.js +22 -12
  626. package/lib/Icon/thin/Heart.js +22 -12
  627. package/lib/Icon/thin/HeartFull.js +22 -12
  628. package/lib/Icon/thin/HelpCircle.js +25 -15
  629. package/lib/Icon/thin/Home.js +25 -15
  630. package/lib/Icon/thin/Hot.js +25 -15
  631. package/lib/Icon/thin/InfoCircle.js +25 -15
  632. package/lib/Icon/thin/InstagramCircle.js +28 -18
  633. package/lib/Icon/thin/Laptop.js +22 -12
  634. package/lib/Icon/thin/Like.js +22 -12
  635. package/lib/Icon/thin/Link.js +25 -15
  636. package/lib/Icon/thin/LinkOutside.js +25 -15
  637. package/lib/Icon/thin/ListBullet.js +22 -12
  638. package/lib/Icon/thin/ListNumber.js +22 -12
  639. package/lib/Icon/thin/Location.js +25 -15
  640. package/lib/Icon/thin/LocationCurrent.js +22 -12
  641. package/lib/Icon/thin/Lock.js +25 -15
  642. package/lib/Icon/thin/LockOff.js +25 -15
  643. package/lib/Icon/thin/Logout.js +22 -12
  644. package/lib/Icon/thin/Menu.js +22 -12
  645. package/lib/Icon/thin/Message.js +22 -12
  646. package/lib/Icon/thin/Mic.js +25 -15
  647. package/lib/Icon/thin/Minus.js +22 -12
  648. package/lib/Icon/thin/MinusCircle.js +25 -15
  649. package/lib/Icon/thin/Mobile.js +25 -15
  650. package/lib/Icon/thin/Monitor.js +22 -12
  651. package/lib/Icon/thin/MoreHorizontal.js +22 -12
  652. package/lib/Icon/thin/MoreVertical.js +22 -12
  653. package/lib/Icon/thin/NaverCircle.js +25 -15
  654. package/lib/Icon/thin/Notice.js +22 -12
  655. package/lib/Icon/thin/Oa.js +22 -12
  656. package/lib/Icon/thin/Paper1.js +22 -12
  657. package/lib/Icon/thin/Paper2.js +25 -15
  658. package/lib/Icon/thin/Paper3.js +25 -15
  659. package/lib/Icon/thin/Person.js +22 -12
  660. package/lib/Icon/thin/Phone.js +22 -12
  661. package/lib/Icon/thin/Photo.js +25 -15
  662. package/lib/Icon/thin/PhotoAdd.js +25 -15
  663. package/lib/Icon/thin/PhotoDouble.js +25 -15
  664. package/lib/Icon/thin/Pin.js +22 -12
  665. package/lib/Icon/thin/Pip.js +25 -15
  666. package/lib/Icon/thin/Play.js +22 -12
  667. package/lib/Icon/thin/PlayBackA.js +22 -12
  668. package/lib/Icon/thin/PlayCircle.js +25 -15
  669. package/lib/Icon/thin/PlayFast.js +22 -12
  670. package/lib/Icon/thin/PlayFast10Sec.js +25 -15
  671. package/lib/Icon/thin/PlayFast15Sec.js +25 -15
  672. package/lib/Icon/thin/PlayFast5Sec.js +25 -15
  673. package/lib/Icon/thin/PlayNext.js +22 -12
  674. package/lib/Icon/thin/PlayPause.js +22 -12
  675. package/lib/Icon/thin/PlayPrev.js +22 -12
  676. package/lib/Icon/thin/PlayRewind10Sec.js +25 -15
  677. package/lib/Icon/thin/PlayRewind15Sec.js +25 -15
  678. package/lib/Icon/thin/PlayRewind5Sec.js +25 -15
  679. package/lib/Icon/thin/PlaySpeedX025.js +22 -12
  680. package/lib/Icon/thin/PlaySpeedX05.js +22 -12
  681. package/lib/Icon/thin/PlaySpeedX1.js +22 -12
  682. package/lib/Icon/thin/PlaySpeedX15.js +22 -12
  683. package/lib/Icon/thin/PlaySpeedX2.js +22 -12
  684. package/lib/Icon/thin/PlaystoreCircle.js +25 -15
  685. package/lib/Icon/thin/PointCircle.js +25 -15
  686. package/lib/Icon/thin/Project.js +22 -12
  687. package/lib/Icon/thin/Quote.js +22 -12
  688. package/lib/Icon/thin/QuoteReverse.js +22 -12
  689. package/lib/Icon/thin/Receipt.js +25 -15
  690. package/lib/Icon/thin/Repeat.js +22 -12
  691. package/lib/Icon/thin/Replay.js +25 -15
  692. package/lib/Icon/thin/Reply.js +25 -15
  693. package/lib/Icon/thin/Report.js +22 -12
  694. package/lib/Icon/thin/Rocket.js +25 -15
  695. package/lib/Icon/thin/RotateClockwise.js +25 -15
  696. package/lib/Icon/thin/Sad.js +28 -18
  697. package/lib/Icon/thin/Search.js +22 -12
  698. package/lib/Icon/thin/Send.js +22 -12
  699. package/lib/Icon/thin/Send2.js +22 -12
  700. package/lib/Icon/thin/Serious.js +31 -21
  701. package/lib/Icon/thin/Share.js +25 -15
  702. package/lib/Icon/thin/Sheild.js +25 -15
  703. package/lib/Icon/thin/ShippingTruck.js +22 -12
  704. package/lib/Icon/thin/Smile.js +28 -18
  705. package/lib/Icon/thin/SocialMedia.js +25 -15
  706. package/lib/Icon/thin/Sorting.js +22 -12
  707. package/lib/Icon/thin/Square.js +22 -12
  708. package/lib/Icon/thin/Star.js +22 -12
  709. package/lib/Icon/thin/StarFull.js +22 -12
  710. package/lib/Icon/thin/StarHalf.js +22 -12
  711. package/lib/Icon/thin/Stock.js +22 -12
  712. package/lib/Icon/thin/Store.js +22 -12
  713. package/lib/Icon/thin/Subtitle.js +25 -15
  714. package/lib/Icon/thin/TalkHelp.js +25 -15
  715. package/lib/Icon/thin/TextH1.js +22 -12
  716. package/lib/Icon/thin/TextH2.js +22 -12
  717. package/lib/Icon/thin/TextH3.js +22 -12
  718. package/lib/Icon/thin/ThunderCircle.js +25 -15
  719. package/lib/Icon/thin/Timer.js +25 -15
  720. package/lib/Icon/thin/ToggleOff.js +22 -12
  721. package/lib/Icon/thin/ToggleOn.js +22 -12
  722. package/lib/Icon/thin/ToteBag.js +22 -12
  723. package/lib/Icon/thin/Trash.js +25 -15
  724. package/lib/Icon/thin/TwitterCircle.js +25 -15
  725. package/lib/Icon/thin/Undo.js +22 -12
  726. package/lib/Icon/thin/Video.js +25 -15
  727. package/lib/Icon/thin/Volume.js +25 -15
  728. package/lib/Icon/thin/VolumeMute.js +25 -15
  729. package/lib/Icon/thin/Web.js +22 -12
  730. package/lib/Icon/thin/Won.js +22 -12
  731. package/lib/Icon/thin/WonBadge.js +25 -15
  732. package/lib/Icon/thin/WonCircle.js +25 -15
  733. package/lib/Icon/thin/Write.js +22 -12
  734. package/lib/Icon/thin/YoutubeCircle.js +25 -15
  735. package/lib/Icon/thin/index.js +179 -177
  736. package/lib/Icon/types.js +1 -1
  737. package/lib/ImageThumbnail/ImageThumbnail.js +27 -0
  738. package/lib/ImageThumbnail/index.js +10 -0
  739. package/lib/Layout/Center/Center.js +13 -24
  740. package/lib/Layout/Center/index.js +2 -2
  741. package/lib/Layout/HStack/HStack.js +14 -8
  742. package/lib/Layout/HStack/index.js +2 -2
  743. package/lib/Layout/Position/Position.js +4 -5
  744. package/lib/Layout/Position/index.js +2 -2
  745. package/lib/Layout/ResponsiveStack/ResponsiveStack.js +11 -7
  746. package/lib/Layout/ResponsiveStack/index.js +2 -2
  747. package/lib/Layout/VStack/VStack.js +14 -8
  748. package/lib/Layout/VStack/index.js +2 -2
  749. package/lib/Layout/ZStack/ZStack.js +34 -24
  750. package/lib/Layout/ZStack/index.js +2 -2
  751. package/lib/LinearGradient/LinearGradient.js +51 -0
  752. package/lib/LinearGradient/index.js +10 -0
  753. package/lib/Link/Link.js +15 -19
  754. package/lib/Link/index.js +2 -2
  755. package/lib/Linkify/Linkify.js +74 -0
  756. package/lib/Linkify/index.js +10 -0
  757. package/lib/List/List.js +51 -0
  758. package/lib/List/index.js +10 -0
  759. package/lib/Media/Image/Image.js +39 -20
  760. package/lib/Media/Image/index.js +2 -2
  761. package/lib/Media/Image/useActualSizes.js +37 -11
  762. package/lib/Media/SeekBar/SeekBar.js +6 -6
  763. package/lib/Media/SeekBar/index.js +2 -2
  764. package/lib/Media/Video/Video.js +7 -7
  765. package/lib/Media/Video/index.js +2 -2
  766. package/lib/Media/VideoCaption/VideoCaption.js +6 -6
  767. package/lib/Media/VideoCaption/index.js +2 -2
  768. package/lib/Media/VideoOverlay/VideoOverlay.js +19 -22
  769. package/lib/Media/VideoOverlay/index.js +2 -2
  770. package/lib/Media/VolumeBar/VolumeBar.js +10 -10
  771. package/lib/Media/VolumeBar/index.js +2 -2
  772. package/lib/Menu/Menu/Menu.js +15 -12
  773. package/lib/Menu/Menu/index.js +2 -2
  774. package/lib/Menu/MenuIcon/MenuIcon.js +11 -7
  775. package/lib/Menu/MenuIcon/index.js +2 -2
  776. package/lib/Menu/MenuItem/MenuItem.js +13 -13
  777. package/lib/Menu/MenuItem/index.js +2 -2
  778. package/lib/Menu/MenuText/MenuText.js +46 -41
  779. package/lib/Menu/MenuText/index.js +2 -2
  780. package/lib/Menu/MenuTextButton/MenuTextButton.js +12 -8
  781. package/lib/Menu/MenuTextButton/index.js +2 -2
  782. package/lib/Menu/MenuTextButtonItem/MenuTextButtonItem.js +34 -26
  783. package/lib/Menu/MenuTextButtonItem/index.js +2 -2
  784. package/lib/Menu/MenuTextItem/MenuTextItem.js +14 -10
  785. package/lib/Menu/MenuTextItem/index.js +2 -2
  786. package/lib/ModalBottomSheet/ModalBottomSheet.js +23 -27
  787. package/lib/ModalBottomSheet/index.js +3 -3
  788. package/lib/ModalBottomSheet/useModalBottomSheet.js +3 -3
  789. package/lib/NewLine/NewLine.js +9 -8
  790. package/lib/NewLine/index.js +2 -2
  791. package/lib/Opacity/Opacity.js +4 -3
  792. package/lib/Opacity/index.js +2 -2
  793. package/lib/Overlay/Overlay.js +6 -5
  794. package/lib/Overlay/index.js +2 -2
  795. package/lib/Pagination/Pagination.js +12 -11
  796. package/lib/Pagination/index.js +2 -2
  797. package/lib/Paper/Paper.js +111 -0
  798. package/lib/Paper/index.js +10 -0
  799. package/lib/PopoverBottomSheet/PopoverBottomSheet.js +57 -26
  800. package/lib/PopoverBottomSheet/index.js +2 -2
  801. package/lib/Portal/Portal.js +20 -12
  802. package/lib/Portal/index.js +2 -2
  803. package/lib/Profile/Profile.js +5 -5
  804. package/lib/Profile/index.js +2 -2
  805. package/lib/ProfileLabel/ProfileLabel.js +88 -64
  806. package/lib/ProfileLabel/index.js +2 -2
  807. package/lib/Progress/ProgressBar/ProgressBar.js +8 -8
  808. package/lib/Progress/ProgressBar/index.js +2 -2
  809. package/lib/Progress/ProgressStep/ProgressStep.js +61 -58
  810. package/lib/Progress/ProgressStep/index.js +2 -2
  811. package/lib/Rank/Rank.js +17 -17
  812. package/lib/Rank/index.js +2 -2
  813. package/lib/Ratio/Ratio.js +40 -41
  814. package/lib/Ratio/index.js +2 -2
  815. package/lib/SafeAreaContent/SafeAreaContent.js +26 -0
  816. package/lib/SafeAreaContent/index.js +10 -0
  817. package/lib/Scroll/Scroll.js +48 -0
  818. package/lib/Scroll/index.js +10 -0
  819. package/lib/Scroll/variant.js +6 -0
  820. package/lib/ScrollTarget/ScrollTarget.js +34 -0
  821. package/lib/ScrollTarget/index.js +10 -0
  822. package/lib/Section/Section.js +14 -22
  823. package/lib/Section/index.js +2 -2
  824. package/lib/SectionHeader/SectionHeader.js +11 -10
  825. package/lib/SectionHeader/index.js +2 -2
  826. package/lib/SideNavigation/SideNavigation/SideNavigation.js +15 -0
  827. package/lib/SideNavigation/SideNavigation/index.js +10 -0
  828. package/lib/SideNavigation/SideNavigationMenu/SideNavigationMenu.js +69 -0
  829. package/lib/SideNavigation/SideNavigationMenu/index.js +10 -0
  830. package/lib/SideNavigation/SideNavigationMenuGroup/SideNavigationMenuGroup.js +20 -0
  831. package/lib/SideNavigation/SideNavigationMenuGroup/index.js +10 -0
  832. package/lib/SideNavigation/SideNavigationSubMenu/SideNavigationSubMenu.js +44 -0
  833. package/lib/SideNavigation/SideNavigationSubMenu/index.js +10 -0
  834. package/lib/Skeleton/Skeleton.js +22 -18
  835. package/lib/Skeleton/index.js +2 -2
  836. package/lib/SlideList/SlideList.js +12 -12
  837. package/lib/SlideList/__mocks__/index.js +1 -1
  838. package/lib/SlideList/index.js +2 -2
  839. package/lib/Slider/Slider.js +1226 -123
  840. package/lib/Slider/hooks/usePageControl.js +98 -0
  841. package/lib/Slider/index.js +4 -4
  842. package/lib/Slider/plugins/AutoPlay.js +82 -0
  843. package/lib/Slider/useSliderState.js +40 -0
  844. package/lib/Slider/variants.js +25 -0
  845. package/lib/SliderSection/SliderSection.js +11 -10
  846. package/lib/SliderSection/index.js +2 -2
  847. package/lib/Space/Space.js +26 -0
  848. package/lib/Space/index.js +10 -0
  849. package/lib/Spinner/Spinner.js +30 -21
  850. package/lib/Spinner/index.js +2 -2
  851. package/lib/Svg/Svg.js +49 -0
  852. package/lib/Svg/index.js +10 -0
  853. package/lib/Tab/ScrollTabPanel/ScrollTabPanel.js +2 -2
  854. package/lib/Tab/ScrollTabPanel/index.js +2 -2
  855. package/lib/Tab/ScrollTabPanelWithObserver/ScrollTabPanelWithObserver.js +6 -6
  856. package/lib/Tab/ScrollTabPanelWithObserver/index.js +2 -2
  857. package/lib/Tab/ScrollTabs/ScrollTabs.js +40 -30
  858. package/lib/Tab/ScrollTabs/index.js +2 -2
  859. package/lib/Tab/Tab/Tab.js +36 -48
  860. package/lib/Tab/Tab/index.js +2 -2
  861. package/lib/Tab/ViewPagerTabPanel/ViewPagerTabPanel.js +8 -5
  862. package/lib/Tab/ViewPagerTabPanel/index.js +2 -2
  863. package/lib/Tab/ViewPagerTabs/ViewPagerTabs.js +43 -18
  864. package/lib/Tab/ViewPagerTabs/index.js +2 -2
  865. package/lib/Table/Table.js +7452 -0
  866. package/lib/Table/index.js +10 -0
  867. package/lib/Tag/Chip/Chip.js +62 -68
  868. package/lib/Tag/Chip/index.js +2 -2
  869. package/lib/Tag/IconBadge/IconBadge.js +21 -17
  870. package/lib/Tag/IconBadge/index.js +2 -2
  871. package/lib/Tag/StateTag/StateTag.js +18 -14
  872. package/lib/Tag/StateTag/index.js +2 -2
  873. package/lib/Tag/Tag/Tag.js +17 -23
  874. package/lib/Tag/Tag/index.js +2 -2
  875. package/lib/Tooltip/Tooltip.js +184 -0
  876. package/lib/Tooltip/index.js +10 -0
  877. package/lib/Typography/Body/Body.js +20 -9
  878. package/lib/Typography/Body/index.js +2 -2
  879. package/lib/Typography/Paragraph/Paragraph.js +13 -9
  880. package/lib/Typography/Paragraph/index.js +2 -2
  881. package/lib/Typography/Text/Text.js +42 -45
  882. package/lib/Typography/Text/index.js +2 -2
  883. package/lib/Typography/Title/Title.js +18 -13
  884. package/lib/Typography/Title/index.js +2 -2
  885. package/lib/Underline/Underline.js +42 -52
  886. package/lib/Underline/index.js +2 -2
  887. package/lib/ViewPager/ViewPager.js +11 -7
  888. package/lib/ViewPager/index.js +2 -2
  889. package/lib/ViewPager/type.js +1 -1
  890. package/lib/ViewPagerItem/ViewPagerItem.js +5 -5
  891. package/lib/ViewPagerItem/index.js +2 -2
  892. package/lib/VirtualizedList/VirtualizedList.js +49 -0
  893. package/lib/VirtualizedList/index.js +10 -0
  894. package/lib/VirtualizedList/variants.js +6 -0
  895. package/lib/deprecated/Slide/Slide.js +3 -3
  896. package/lib/deprecated/Slide/index.js +1 -1
  897. package/lib/deprecated/Swiper/Swiper.js +11 -9
  898. package/lib/deprecated/Swiper/hooks/useAutoPlay.js +3 -3
  899. package/lib/deprecated/Swiper/hooks/useSwiper.js +465 -13
  900. package/lib/deprecated/Swiper/index.js +1 -1
  901. package/lib/deprecated/Swiper/types/SwiperOptions.js +1 -1
  902. package/{mime-types-XQXFL7W2.js → mime-types-HSLMJAIU.js} +3 -3
  903. package/package.json +3 -2
  904. package/private/Bar/Bar.js +4 -4
  905. package/private/Bar/index.js +2 -2
  906. package/private/Box/Box.js +6 -5
  907. package/private/Box/index.js +2 -2
  908. package/private/Box/variants.js +6 -0
  909. package/private/ForwardStyle/ForwardStyle.js +10 -22
  910. package/private/ForwardStyle/StyledChildren.js +34 -0
  911. package/private/ForwardStyle/index.js +2 -2
  912. package/private/Stack/Stack.js +69 -66
  913. package/private/Stack/index.js +2 -2
  914. package/private/Transform/Transform.js +4 -5
  915. package/private/Transform/index.js +2 -2
  916. package/@types/image.d.js +0 -6
  917. package/@types/theme.d.js +0 -8
  918. package/chunk-44GVNF2V.js +0 -39
  919. package/chunk-5UMHOQ7R.js +0 -38
  920. package/chunk-CPDZ2HQZ.js +0 -38
  921. package/chunk-FRH3NN2M.js +0 -38
  922. package/chunk-K4FOIOQK.js +0 -43
  923. package/chunk-K4YVFYII.js +0 -462
  924. package/chunk-LVICGF6E.js +0 -49
  925. package/chunk-RGF42JSA.js +0 -40
  926. package/chunk-UMKGAET2.js +0 -63
  927. package/lib/Animation/Animator/Animator.stories.js +0 -69
  928. package/lib/Animation/FadeAnimation/FadeAnimation.stories.js +0 -45
  929. package/lib/Animation/SlideAnimation/SlideAnimation.stories.js +0 -38
  930. package/lib/Animation/Transition/Transition.stories.js +0 -54
  931. package/lib/Background/Background.stories.js +0 -38
  932. package/lib/Button/ButtonIcon/ButtonIcon.js +0 -57
  933. package/lib/Button/ButtonIcon/index.js +0 -10
  934. package/lib/Button/IconButton/IconButton.js +0 -144
  935. package/lib/Button/IconButton/index.js +0 -10
  936. package/lib/Button/TextButton/TextButton.stories.js +0 -9
  937. package/lib/ConditionalWrapper/ConditionalWrapper.stories.js +0 -43
  938. package/lib/Divider/Divider.stories.js +0 -81
  939. package/lib/Elevation/Elevation.stories.js +0 -36
  940. package/lib/Form/Description/Description.stories.js +0 -37
  941. package/lib/Form/FormField/FormField.stories.js +0 -9
  942. package/lib/Form/InlineTextLabel/InlineTextLabel.stories.js +0 -47
  943. package/lib/Form/Input/Input.stories.js +0 -9
  944. package/lib/Form/Label/Label.stories.js +0 -51
  945. package/lib/Form/Select/Select.stories.js +0 -9
  946. package/lib/Form/SelectField/SelectField.stories.js +0 -27
  947. package/lib/Form/TextField/TextField.stories.js +0 -33
  948. package/lib/Form/TextLabel/TextLabel.stories.js +0 -34
  949. package/lib/Frame/Frame.js +0 -73
  950. package/lib/Frame/index.js +0 -10
  951. package/lib/Highlight/Highlight.stories.js +0 -30
  952. package/lib/HtmlContentStyle/HtmlContentStyle.stories.js +0 -22
  953. package/lib/Layout/Center/Center.stories.js +0 -43
  954. package/lib/Layout/Position/Position.stories.js +0 -42
  955. package/lib/Link/Link.stories.js +0 -37
  956. package/lib/Media/Image/Image.stories.js +0 -27
  957. package/lib/Menu/Menu/Menu.stories.js +0 -36
  958. package/lib/Menu/MenuIcon/MenuIcon.stories.js +0 -31
  959. package/lib/Menu/MenuItem/MenuItem.stories.js +0 -9
  960. package/lib/Menu/MenuText/MenuText.stories.js +0 -9
  961. package/lib/Menu/MenuTextButton/MenuTextButton.stories.js +0 -10
  962. package/lib/Menu/MenuTextButtonItem/MenuTextButtonItem.stories.js +0 -39
  963. package/lib/Menu/MenuTextItem/MenuTextItem.stories.js +0 -30
  964. package/lib/Opacity/Opacity.stories.js +0 -33
  965. package/lib/Overlay/Overlay.stories.js +0 -33
  966. package/lib/Pagination/Pagination.stories.js +0 -37
  967. package/lib/Progress/ProgressBar/ProgressBar.stories.js +0 -57
  968. package/lib/Progress/ProgressStep/ProgressStep.stories.js +0 -43
  969. package/lib/Rank/Rank.stories.js +0 -39
  970. package/lib/Ratio/Ratio.stories.js +0 -34
  971. package/lib/Section/Section.stories.js +0 -49
  972. package/lib/SlideList/SlideList.stories.js +0 -60
  973. package/lib/Slider/Slider.stories.js +0 -47
  974. package/lib/Slider/__mocks__/index.js +0 -51
  975. package/lib/Slider/constants.js +0 -22
  976. package/lib/Slider/internalHooks/useAutoPlay.js +0 -40
  977. package/lib/Slider/internalHooks/usePageControl.js +0 -44
  978. package/lib/Slider/internalHooks/useVirtual.js +0 -27
  979. package/lib/Slider/useSlider.js +0 -42
  980. package/lib/SliderSection/SliderSection.stories.js +0 -84
  981. package/lib/Tab/ScrollTabPanel/ScrollTabPanel.stories.js +0 -21
  982. package/lib/Tab/ScrollTabPanelWithObserver/ScrollTabPanelWithObserver.stories.js +0 -21
  983. package/lib/Tab/ScrollTabs/ScrollTabs.stories.js +0 -58
  984. package/lib/Tab/Tab/Tab.stories.js +0 -47
  985. package/lib/Tag/Chip/Chip.stories.js +0 -56
  986. package/lib/Tag/Tag/Tag.stories.js +0 -42
  987. package/lib/Typography/Body/Body.stories.js +0 -36
  988. package/lib/Typography/Caption/Caption.js +0 -23
  989. package/lib/Typography/Caption/Caption.stories.js +0 -43
  990. package/lib/Typography/Caption/index.js +0 -10
  991. package/lib/Typography/Paragraph/Paragraph.stories.js +0 -43
  992. package/lib/Typography/Title/Title.stories.js +0 -41
  993. package/lib/Underline/Underline.stories.js +0 -38
  994. package/lib/ViewPager/ViewPager.stories.js +0 -77
  995. package/lib/deprecated/Swiper/Swiper.stories.js +0 -184
  996. package/private/Box/Box.stories.js +0 -63
  997. package/private/ForwardStyle/ForwardStyle.stories.js +0 -26
  998. package/private/Space/Space.js +0 -15
  999. package/private/Space/Space.stories.js +0 -39
  1000. package/private/Space/index.js +0 -10
  1001. package/private/Svg/Svg.js +0 -37
  1002. package/private/Svg/index.js +0 -10
  1003. package/utils/appendCssUnit/appendCssUnit.js +0 -15
  1004. package/utils/appendCssUnit/appendCssUnit.spec.js +0 -33
  1005. package/utils/appendCssUnit/index.js +0 -10
  1006. package/utils/index.js +0 -10
@@ -1,10 +1,10 @@
1
1
  import {
2
2
  position
3
- } from "../../chunk-7BJXCATJ.js";
4
- import "../../chunk-AXJOQSVO.js";
3
+ } from "../../chunk-DNFIUSBY.js";
4
+ import "../../chunk-XYFEP7P7.js";
5
5
  import {
6
6
  init_react_shim
7
- } from "../../chunk-CPDZ2HQZ.js";
7
+ } from "../../chunk-IPJCOOHW.js";
8
8
 
9
9
  // libs/shared/ui-system/src/core/props/position.ts
10
10
  init_react_shim();
@@ -1,10 +1,10 @@
1
1
  import {
2
2
  shadow
3
- } from "../../chunk-7BJXCATJ.js";
4
- import "../../chunk-AXJOQSVO.js";
3
+ } from "../../chunk-DNFIUSBY.js";
4
+ import "../../chunk-XYFEP7P7.js";
5
5
  import {
6
6
  init_react_shim
7
- } from "../../chunk-CPDZ2HQZ.js";
7
+ } from "../../chunk-IPJCOOHW.js";
8
8
 
9
9
  // libs/shared/ui-system/src/core/props/shadow.ts
10
10
  init_react_shim();
@@ -1,10 +1,10 @@
1
1
  import {
2
2
  space
3
- } from "../../chunk-7BJXCATJ.js";
4
- import "../../chunk-AXJOQSVO.js";
3
+ } from "../../chunk-DNFIUSBY.js";
4
+ import "../../chunk-XYFEP7P7.js";
5
5
  import {
6
6
  init_react_shim
7
- } from "../../chunk-CPDZ2HQZ.js";
7
+ } from "../../chunk-IPJCOOHW.js";
8
8
 
9
9
  // libs/shared/ui-system/src/core/props/space.ts
10
10
  init_react_shim();
@@ -1,13 +1,28 @@
1
1
  import {
2
2
  system
3
- } from "../../chunk-7BJXCATJ.js";
4
- import "../../chunk-AXJOQSVO.js";
3
+ } from "../../chunk-DNFIUSBY.js";
4
+ import "../../chunk-XYFEP7P7.js";
5
5
  import {
6
6
  init_react_shim
7
- } from "../../chunk-CPDZ2HQZ.js";
7
+ } from "../../chunk-IPJCOOHW.js";
8
8
 
9
9
  // libs/shared/ui-system/src/core/props/transform.ts
10
10
  init_react_shim();
11
+ var REACT_NATIVE_VALID_TRANSFORM_FUNCTIONS = [
12
+ "perspective",
13
+ "rotate",
14
+ "rotateX",
15
+ "rotateY",
16
+ "rotateZ",
17
+ "scale",
18
+ "scaleX",
19
+ "scaleY",
20
+ "translateX",
21
+ "translateY",
22
+ "skewX",
23
+ "skewY",
24
+ "matrix"
25
+ ];
11
26
  function getTransformValue(value) {
12
27
  if (value === void 0) {
13
28
  return "";
@@ -22,6 +37,10 @@ var transform = system({
22
37
  property: "transform",
23
38
  transform: (value) => {
24
39
  let style = "";
40
+ if (value["perspective"]) {
41
+ style += `perspective(${getTransformValue(value["perspective"])}) `;
42
+ value["perspective"] = void 0;
43
+ }
25
44
  for (const key of Object.keys(value)) {
26
45
  if (value[key] === void 0) {
27
46
  continue;
@@ -32,6 +51,13 @@ var transform = system({
32
51
  }
33
52
  }
34
53
  });
54
+ var nativeTransform = system({
55
+ transform: {
56
+ property: "transform",
57
+ transform: (value) => Object.keys(value).filter((key) => REACT_NATIVE_VALID_TRANSFORM_FUNCTIONS.includes(key) && value[key] !== void 0).map((key) => ({ [key]: value[key] }))
58
+ }
59
+ });
35
60
  export {
61
+ nativeTransform,
36
62
  transform
37
63
  };
@@ -1,10 +1,10 @@
1
1
  import {
2
2
  system
3
- } from "../../chunk-7BJXCATJ.js";
4
- import "../../chunk-AXJOQSVO.js";
3
+ } from "../../chunk-DNFIUSBY.js";
4
+ import "../../chunk-XYFEP7P7.js";
5
5
  import {
6
6
  init_react_shim
7
- } from "../../chunk-CPDZ2HQZ.js";
7
+ } from "../../chunk-IPJCOOHW.js";
8
8
 
9
9
  // libs/shared/ui-system/src/core/props/transition.ts
10
10
  init_react_shim();
@@ -1,6 +1,6 @@
1
1
  import {
2
2
  init_react_shim
3
- } from "../../../chunk-CPDZ2HQZ.js";
3
+ } from "../../../chunk-IPJCOOHW.js";
4
4
 
5
5
  // libs/shared/ui-system/src/core/props/types/ResponsiveValue.ts
6
6
  init_react_shim();
@@ -1,6 +1,6 @@
1
1
  import {
2
2
  init_react_shim
3
- } from "../../../chunk-CPDZ2HQZ.js";
3
+ } from "../../../chunk-IPJCOOHW.js";
4
4
 
5
5
  // libs/shared/ui-system/src/core/props/types/SystemComponent.ts
6
6
  init_react_shim();
@@ -2,11 +2,11 @@ import {
2
2
  compose,
3
3
  system,
4
4
  typography
5
- } from "../../chunk-7BJXCATJ.js";
6
- import "../../chunk-AXJOQSVO.js";
5
+ } from "../../chunk-DNFIUSBY.js";
6
+ import "../../chunk-XYFEP7P7.js";
7
7
  import {
8
8
  init_react_shim
9
- } from "../../chunk-CPDZ2HQZ.js";
9
+ } from "../../chunk-IPJCOOHW.js";
10
10
 
11
11
  // libs/shared/ui-system/src/core/props/typography.ts
12
12
  init_react_shim();
@@ -28,6 +28,9 @@ var customTypography = system({
28
28
  userSelect: true
29
29
  });
30
30
  var typography2 = compose(typography, customTypography);
31
+ var nativeCustomTypography = system({});
32
+ var nativeTypography = compose(typography, nativeCustomTypography);
31
33
  export {
34
+ nativeTypography,
32
35
  typography2 as typography
33
36
  };
@@ -0,0 +1,27 @@
1
+ import {
2
+ init_react_shim
3
+ } from "../../../chunk-IPJCOOHW.js";
4
+
5
+ // libs/shared/ui-system/src/core/props/utils/calculateResponsiveValues.ts
6
+ init_react_shim();
7
+ var getSafeResponsiveValue = (responsiveValue, index) => {
8
+ if (Array.isArray(responsiveValue)) {
9
+ return responsiveValue[Math.min(responsiveValue.length - 1, index)];
10
+ }
11
+ return responsiveValue;
12
+ };
13
+ var calculateResponsiveValues = (...values) => {
14
+ const fn = values.pop();
15
+ const maxResponsiveLength = values.reduce((prev, value) => Math.max(prev, Array.isArray(value) ? value.length : 1), 1);
16
+ const resultValue = new Array(maxResponsiveLength).fill(void 0).map((_, index) => fn(...values.map((value) => getSafeResponsiveValue(value, index))));
17
+ return resultValue.length === 1 ? resultValue[0] : resultValue.reduce((prev, value) => {
18
+ Object.keys(value).forEach((key) => {
19
+ var _a;
20
+ prev[key] = [...(_a = prev[key]) != null ? _a : [], value[key]];
21
+ });
22
+ return prev;
23
+ }, {});
24
+ };
25
+ export {
26
+ calculateResponsiveValues
27
+ };
@@ -1,16 +1,18 @@
1
1
  import {
2
2
  require_lodash
3
- } from "../../../chunk-IKYIYCM6.js";
3
+ } from "../../../chunk-YJWVUALA.js";
4
4
  import {
5
+ __spreadProps,
6
+ __spreadValues,
5
7
  __toModule,
6
8
  init_react_shim
7
- } from "../../../chunk-CPDZ2HQZ.js";
9
+ } from "../../../chunk-IPJCOOHW.js";
8
10
 
9
11
  // libs/shared/ui-system/src/core/props/utils/getResponsiveValue.ts
10
12
  init_react_shim();
11
13
  var import_lodash = __toModule(require_lodash());
12
14
  var getBreakpointKeys = (breakpoints) => {
13
- const {length} = breakpoints;
15
+ const { length } = breakpoints;
14
16
  const breakpointPixels = breakpoints.map((breakpoint) => parseInt(breakpoint, 10));
15
17
  return (0, import_lodash.range)(length + 1).map((idx) => {
16
18
  if (idx === 0) {
@@ -24,10 +26,9 @@ var getResponsiveOptions = (breakpoints, responsiveOptions) => {
24
26
  const options = Object.fromEntries(new Map(breakpointKeys.map((_, idx) => [breakpointKeys[idx], {}])));
25
27
  Object.entries(responsiveOptions).forEach(([key, value]) => {
26
28
  (0, import_lodash.range)(breakpointKeys.length).forEach((idx) => {
27
- options[breakpointKeys[idx]] = {
28
- ...options[breakpointKeys[idx]],
29
+ options[breakpointKeys[idx]] = __spreadProps(__spreadValues({}, options[breakpointKeys[idx]]), {
29
30
  [key]: value[idx <= value.length - 1 ? idx : value.length - 1]
30
- };
31
+ });
31
32
  });
32
33
  });
33
34
  return options;
@@ -1,9 +1,9 @@
1
1
  import {
2
2
  emotion_memoize_browser_esm_default
3
- } from "../../../chunk-QN5Q5NTF.js";
3
+ } from "../../../chunk-QFKGGJAB.js";
4
4
  import {
5
5
  init_react_shim
6
- } from "../../../chunk-CPDZ2HQZ.js";
6
+ } from "../../../chunk-IPJCOOHW.js";
7
7
 
8
8
  // libs/shared/ui-system/src/core/props/utils/skipForwardProps.ts
9
9
  init_react_shim();
@@ -1,11 +1,11 @@
1
1
  import {
2
2
  compose,
3
3
  system
4
- } from "../../chunk-7BJXCATJ.js";
5
- import "../../chunk-AXJOQSVO.js";
4
+ } from "../../chunk-DNFIUSBY.js";
5
+ import "../../chunk-XYFEP7P7.js";
6
6
  import {
7
7
  init_react_shim
8
- } from "../../chunk-CPDZ2HQZ.js";
8
+ } from "../../chunk-IPJCOOHW.js";
9
9
 
10
10
  // libs/shared/ui-system/src/core/props/video.ts
11
11
  init_react_shim();
@@ -1,10 +1,11 @@
1
1
  import {
2
2
  init_react_shim
3
- } from "../../chunk-CPDZ2HQZ.js";
3
+ } from "../../chunk-IPJCOOHW.js";
4
4
 
5
5
  // libs/shared/ui-system/src/core/theme/baseTheme.ts
6
6
  init_react_shim();
7
7
  var baseTheme = {
8
+ maxWidth: 1304,
8
9
  space: {
9
10
  0: 0,
10
11
  2: 2,
@@ -20,13 +21,23 @@ var baseTheme = {
20
21
  24: 24,
21
22
  28: 28,
22
23
  30: 30,
24
+ 32: 32,
23
25
  36: 36,
24
26
  40: 40,
25
27
  48: 48,
26
28
  56: 56,
27
- 120: 120
29
+ 64: 64,
30
+ 72: 72,
31
+ 80: 80,
32
+ 100: 100,
33
+ 120: 120,
34
+ 160: 160,
35
+ 200: 200
28
36
  },
29
- breakpoints: ["414px", "768px", "1240px"]
37
+ breakpoints: ["414px", "768px", "1240px"],
38
+ mediaQueries: {
39
+ mobile: "(max-width: 640px)"
40
+ }
30
41
  };
31
42
  export {
32
43
  baseTheme
@@ -1,18 +1,18 @@
1
1
  import {
2
+ __spreadProps,
3
+ __spreadValues,
2
4
  init_react_shim
3
- } from "../../chunk-CPDZ2HQZ.js";
5
+ } from "../../chunk-IPJCOOHW.js";
4
6
 
5
7
  // libs/shared/ui-system/src/core/theme/defaultTheme.ts
6
8
  init_react_shim();
7
- import {LightModeColors} from "../colors/LightModeColors.js";
8
- import {baseTheme} from "./baseTheme.js";
9
- var defaultTheme = {
10
- ...baseTheme,
11
- colors: {
12
- ...LightModeColors,
9
+ import { LightModeColors } from "../colors/LightModeColors.js";
10
+ import { baseTheme } from "./baseTheme.js";
11
+ var defaultTheme = __spreadProps(__spreadValues({}, baseTheme), {
12
+ colors: __spreadProps(__spreadValues({}, LightModeColors), {
13
13
  primary: LightModeColors.orange
14
- }
15
- };
14
+ })
15
+ });
16
16
  export {
17
17
  defaultTheme
18
18
  };
@@ -1,18 +1,19 @@
1
1
  import {
2
+ __spreadProps,
3
+ __spreadValues,
2
4
  init_react_shim
3
- } from "../../chunk-CPDZ2HQZ.js";
5
+ } from "../../chunk-IPJCOOHW.js";
4
6
 
5
7
  // libs/shared/ui-system/src/core/theme/signatureTheme.ts
6
8
  init_react_shim();
7
- import {DarkModeColors} from "../colors/DarkModeColors.js";
8
- import {baseTheme} from "./baseTheme.js";
9
- var signatureTheme = {
10
- ...baseTheme,
11
- colors: {
12
- ...DarkModeColors,
13
- primary: DarkModeColors.orange
14
- }
15
- };
9
+ import { DarkModeColors } from "../colors/DarkModeColors.js";
10
+ import { baseTheme } from "./baseTheme.js";
11
+ var signatureTheme = __spreadProps(__spreadValues({}, baseTheme), {
12
+ colors: __spreadProps(__spreadValues({}, DarkModeColors), {
13
+ primary: DarkModeColors.orange,
14
+ gray: __spreadProps(__spreadValues({}, DarkModeColors.gray), { 0: "#1A1A1A" })
15
+ })
16
+ });
16
17
  export {
17
18
  signatureTheme
18
19
  };
@@ -1,15 +1,15 @@
1
1
  import {
2
2
  init_react_shim
3
- } from "../../../chunk-CPDZ2HQZ.js";
3
+ } from "../../../chunk-IPJCOOHW.js";
4
4
 
5
5
  // libs/shared/ui-system/src/core/variants/baseVariant/baseVariant.ts
6
6
  init_react_shim();
7
- function getVariantValue(key, variantFnOrRecord) {
7
+ function getVariantValue(prop, variantFnOrRecord) {
8
8
  if (Object.keys(variantFnOrRecord).length > 0) {
9
- return variantFnOrRecord[key];
9
+ return variantFnOrRecord[prop];
10
10
  }
11
11
  if (typeof variantFnOrRecord === "function") {
12
- return variantFnOrRecord(key);
12
+ return variantFnOrRecord(prop);
13
13
  }
14
14
  return {};
15
15
  }
@@ -1,10 +1,10 @@
1
1
  import {
2
2
  init_react_shim
3
- } from "../../../chunk-CPDZ2HQZ.js";
3
+ } from "../../../chunk-IPJCOOHW.js";
4
4
 
5
5
  // libs/shared/ui-system/src/core/variants/baseVariant/index.ts
6
6
  init_react_shim();
7
- import {getVariantValue} from "./baseVariant.js";
7
+ import { getVariantValue } from "./baseVariant.js";
8
8
  export {
9
9
  getVariantValue
10
10
  };
@@ -0,0 +1,11 @@
1
+ import {
2
+ init_react_shim
3
+ } from "../../../chunk-IPJCOOHW.js";
4
+
5
+ // libs/shared/ui-system/src/core/variants/makeStyled/index.ts
6
+ init_react_shim();
7
+ import { makeStyled, makeStyle } from "./makeStyled.js";
8
+ export {
9
+ makeStyle,
10
+ makeStyled
11
+ };
@@ -0,0 +1,18 @@
1
+ import {
2
+ emotion_styled_browser_esm_default
3
+ } from "../../../chunk-7BBOJQDQ.js";
4
+ import "../../../chunk-IANUYI35.js";
5
+ import "../../../chunk-KAXHKCBQ.js";
6
+ import "../../../chunk-QFKGGJAB.js";
7
+ import {
8
+ init_react_shim
9
+ } from "../../../chunk-IPJCOOHW.js";
10
+
11
+ // libs/shared/ui-system/src/core/variants/makeStyled/makeStyled.ts
12
+ init_react_shim();
13
+ var makeStyled = (component) => emotion_styled_browser_esm_default(component);
14
+ var makeStyle = (style) => style;
15
+ export {
16
+ makeStyle,
17
+ makeStyled
18
+ };
@@ -1,10 +1,10 @@
1
1
  import {
2
2
  init_react_shim
3
- } from "../../../chunk-CPDZ2HQZ.js";
3
+ } from "../../../chunk-IPJCOOHW.js";
4
4
 
5
5
  // libs/shared/ui-system/src/core/variants/propVariant/index.ts
6
6
  init_react_shim();
7
- import {propVariant} from "./propVariant.js";
7
+ import { propVariant } from "./propVariant.js";
8
8
  export {
9
9
  propVariant
10
10
  };
@@ -1,21 +1,23 @@
1
1
  import {
2
+ __spreadValues,
2
3
  init_react_shim
3
- } from "../../../chunk-CPDZ2HQZ.js";
4
+ } from "../../../chunk-IPJCOOHW.js";
4
5
 
5
6
  // libs/shared/ui-system/src/core/variants/propVariant/propVariant.ts
6
7
  init_react_shim();
7
- import {getVariantValue} from "../baseVariant/index.js";
8
+ import { getVariantValue } from "../baseVariant/index.js";
8
9
  function propVariant(option) {
9
10
  return (originalProps) => {
10
- const {variants, prop, defaultValue, responsive, skipForward} = option;
11
- const variantKey = originalProps[prop] ?? defaultValue;
11
+ var _a;
12
+ const { variants, prop, defaultValue, responsive, skipForward } = option;
13
+ const variantKey = (_a = originalProps[prop]) != null ? _a : defaultValue;
12
14
  if (variantKey === void 0 || !variants) {
13
15
  return originalProps;
14
16
  }
15
17
  let nextProps;
16
18
  if (responsive && Array.isArray(variantKey)) {
17
19
  const variantValue = variantKey.reduce((prev, curr, index) => {
18
- const nextValue = {...prev};
20
+ const nextValue = __spreadValues({}, prev);
19
21
  const value = getVariantValue(curr, variants);
20
22
  for (const key of Object.keys(value)) {
21
23
  if (prev[key] === void 0) {
@@ -25,15 +27,9 @@ function propVariant(option) {
25
27
  }
26
28
  return nextValue;
27
29
  }, {});
28
- nextProps = {
29
- ...originalProps,
30
- ...variantValue
31
- };
30
+ nextProps = __spreadValues(__spreadValues({}, originalProps), variantValue);
32
31
  } else {
33
- nextProps = {
34
- ...originalProps,
35
- ...getVariantValue(variantKey, variants)
36
- };
32
+ nextProps = __spreadValues(__spreadValues({}, originalProps), getVariantValue(variantKey, variants));
37
33
  }
38
34
  if (skipForward) {
39
35
  delete nextProps[prop];
@@ -1,21 +1,21 @@
1
1
  import {
2
2
  init_react_shim
3
- } from "../../../chunk-CPDZ2HQZ.js";
3
+ } from "../../../chunk-IPJCOOHW.js";
4
4
 
5
5
  // libs/shared/ui-system/src/core/variants/propVariant/propVariant.spec.ts
6
6
  init_react_shim();
7
- import {propVariant} from "./propVariant.js";
7
+ import { propVariant } from "./propVariant.js";
8
8
  describe("propVariant", () => {
9
9
  describe.each([
10
10
  {
11
11
  type: "\uD568\uC218",
12
- variants: (value) => ({testResult: value + 1})
12
+ variants: (value) => ({ testResult: value + 1 })
13
13
  },
14
14
  {
15
15
  type: "\uAC1D\uCCB4",
16
- variants: {3: {testResult: 4}, 4: {testResult: 5}}
16
+ variants: { 3: { testResult: 4 }, 4: { testResult: 5 } }
17
17
  }
18
- ])("variants\uAC00 $type\uB85C \uC815\uC758\uB418\uACE0", ({variants}) => {
18
+ ])("variants\uAC00 $type\uB85C \uC815\uC758\uB418\uACE0", ({ variants }) => {
19
19
  describe("responsive value\uAC00 \uC544\uB2D0 \uB54C", () => {
20
20
  let variantFn;
21
21
  beforeEach(() => {
@@ -27,7 +27,7 @@ describe("propVariant", () => {
27
27
  describe("variant\uC5D0 \uC788\uB294 prop\uC744 \uB118\uACBC\uC744 \uB54C", () => {
28
28
  let result;
29
29
  beforeEach(() => {
30
- result = variantFn({test: 3});
30
+ result = variantFn({ test: 3 });
31
31
  });
32
32
  it("variant\uC758 \uACB0\uACFC\uAC12\uC774 \uC800\uC7A5\uB41C\uB2E4", () => {
33
33
  expect(result.testResult).toBe(4);
@@ -39,7 +39,7 @@ describe("propVariant", () => {
39
39
  describe("variant\uC5D0 \uC5C6\uB294 prop\uC744 \uB118\uACBC\uC744 \uB54C", () => {
40
40
  let result;
41
41
  beforeEach(() => {
42
- result = variantFn({test2: 3});
42
+ result = variantFn({ test2: 3 });
43
43
  });
44
44
  it("variant\uAC00 \uC801\uC6A9\uB41C \uAC12\uC740 \uC5C6\uB2E4", () => {
45
45
  expect(result.testResult).toBeUndefined();
@@ -52,12 +52,12 @@ describe("propVariant", () => {
52
52
  describe("responsive value\uC77C \uB54C", () => {
53
53
  let variantFn;
54
54
  beforeEach(() => {
55
- variantFn = propVariant({prop: "test", variants, responsive: true});
55
+ variantFn = propVariant({ prop: "test", variants, responsive: true });
56
56
  });
57
57
  describe("prop\uC744 \uBC30\uC5F4\uB85C \uB118\uAE30\uBA74", () => {
58
58
  let result;
59
59
  beforeEach(() => {
60
- result = variantFn({test: [3, 4, 3, 4]});
60
+ result = variantFn({ test: [3, 4, 3, 4] });
61
61
  });
62
62
  it("variant\uAC00 \uC801\uC6A9\uB41C \uAC12\uC774 \uBC30\uC5F4\uB85C \uC5F0\uC0B0\uB418\uC5B4 \uB098\uC628\uB2E4", () => {
63
63
  expect(result.testResult).toEqual([4, 5, 4, 5]);
@@ -69,7 +69,7 @@ describe("propVariant", () => {
69
69
  });
70
70
  describe("prop \uAC12\uC774 \uB118\uC5B4\uAC00\uC9C0 \uC54A\uC744 \uB54C", () => {
71
71
  let variantFn;
72
- const execute = () => variantFn({test: null});
72
+ const execute = () => variantFn({ test: null });
73
73
  describe("defaultValue\uAC00 \uC124\uC815\uB418\uC5B4 \uC788\uC73C\uBA74", () => {
74
74
  beforeEach(() => {
75
75
  variantFn = propVariant({
@@ -0,0 +1,10 @@
1
+ import {
2
+ init_react_shim
3
+ } from "../../../chunk-IPJCOOHW.js";
4
+
5
+ // libs/shared/ui-system/src/core/variants/propsVariant/index.ts
6
+ init_react_shim();
7
+ import { propsVariant } from "./propsVariant.js";
8
+ export {
9
+ propsVariant
10
+ };
@@ -0,0 +1,32 @@
1
+ import {
2
+ __spreadProps,
3
+ __spreadValues,
4
+ init_react_shim
5
+ } from "../../../chunk-IPJCOOHW.js";
6
+
7
+ // libs/shared/ui-system/src/core/variants/propsVariant/propsVariant.ts
8
+ init_react_shim();
9
+ import { getPaddedResponsiveArray } from "../../props/utils/getResponsiveValue.js";
10
+ import { getVariantValue } from "../baseVariant/index.js";
11
+ function propsVariant(options) {
12
+ return (originalProps) => {
13
+ const { props, variants } = options;
14
+ const { __theme__ } = originalProps;
15
+ const nextProps = __spreadValues({}, originalProps);
16
+ const values = props ? props.reduce((prev, curr) => {
17
+ if (curr.skipForward) {
18
+ delete nextProps[curr.name];
19
+ }
20
+ if (originalProps[curr.name] === void 0) {
21
+ return prev;
22
+ }
23
+ return __spreadProps(__spreadValues({}, prev), {
24
+ [curr.name]: curr.responsive ? getPaddedResponsiveArray(__theme__.breakpoints, originalProps[curr.name]) : originalProps[curr.name]
25
+ });
26
+ }, {}) : originalProps;
27
+ return __spreadValues(__spreadValues({}, nextProps), getVariantValue(values, variants));
28
+ };
29
+ }
30
+ export {
31
+ propsVariant
32
+ };
@@ -0,0 +1,73 @@
1
+ import {
2
+ __spreadValues,
3
+ init_react_shim
4
+ } from "../../../chunk-IPJCOOHW.js";
5
+
6
+ // libs/shared/ui-system/src/core/variants/propsVariant/propsVariant.spec.ts
7
+ init_react_shim();
8
+ import { defaultTheme } from "../../theme/defaultTheme.js";
9
+ import { propsVariant } from "./propsVariant.js";
10
+ import { getPaddedResponsiveArray } from "../../props/utils/getResponsiveValue.js";
11
+ describe("propsVariant", () => {
12
+ const theme = defaultTheme;
13
+ describe("Props\uC5D0 size, direction\uC774 \uC788\uACE0", () => {
14
+ let variantFn;
15
+ beforeEach(() => {
16
+ variantFn = propsVariant({
17
+ props: [
18
+ {
19
+ name: "size",
20
+ skipForward: true
21
+ },
22
+ {
23
+ name: "direction",
24
+ responsive: true
25
+ }
26
+ ],
27
+ variants: ({ size, direction }) => ({
28
+ result: {
29
+ size,
30
+ direction
31
+ }
32
+ })
33
+ });
34
+ });
35
+ describe.each([
36
+ { props: { size: "sm", direction: "vertical" } },
37
+ { props: { size: "sm", direction: ["vertical", "horizontal"] } }
38
+ ])("prop\uC5D0 $props.size, $props.direction\uC744 \uB118\uAE30\uBA74", ({ props }) => {
39
+ let variantFnResult;
40
+ beforeEach(() => {
41
+ variantFnResult = variantFn(__spreadValues({
42
+ __theme__: theme
43
+ }, props));
44
+ });
45
+ it("skipForward \uC635\uC158\uC744 \uC900 size prop\uC740 \uC0AC\uB77C\uC9C4\uB2E4", () => {
46
+ expect(variantFnResult.size).toBeUndefined();
47
+ });
48
+ it("skipForward \uC635\uC158\uC744 \uC8FC\uC9C0 \uC54A\uC740 direction prop\uC740 \uADF8\uB300\uB85C\uC774\uB2E4", () => {
49
+ expect(variantFnResult.direction).toEqual(props.direction);
50
+ });
51
+ it("result\uC5D0 size\uB294 prop\uC73C\uB85C \uB118\uAE34 size \uAC12\uC774\uB2E4", () => {
52
+ expect(variantFnResult.result.size).toEqual(props.size);
53
+ });
54
+ it("result\uC5D0 direction\uC740 breakpoints \uB9CC\uD07C \uBC30\uC5F4\uB85C \uB9CC\uB4E4\uC5B4\uC9C4\uB2E4", () => {
55
+ expect(variantFnResult.result.direction).toEqual(getPaddedResponsiveArray(theme.breakpoints, props.direction));
56
+ });
57
+ });
58
+ describe(`prop\uC5D0 size, direction \uAC12\uC744 \uB118\uAE30\uC9C0 \uC54A\uC73C\uBA74`, () => {
59
+ let variantFnResult;
60
+ beforeEach(() => {
61
+ variantFnResult = variantFn({
62
+ __theme__: theme
63
+ });
64
+ });
65
+ it("result\uC5D0 size \uAC12\uC740 undefined\uC774\uB2E4", () => {
66
+ expect(variantFnResult.result.size).toBeUndefined();
67
+ });
68
+ it("result\uC5D0 direction \uAC12\uC740 undefined\uC774\uB2E4", () => {
69
+ expect(variantFnResult.result.direction).toBeUndefined();
70
+ });
71
+ });
72
+ });
73
+ });