@class101/cdn-ui-system 0.0.10 → 0.0.14

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 (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,148 +1,1251 @@
1
1
  import {
2
- h
3
- } from "../../chunk-K4YVFYII.js";
2
+ EVENTS,
3
+ ExternalPanel,
4
+ ExternalRenderer,
5
+ Flicking,
6
+ NormalRenderingStrategy,
7
+ VirtualRenderingStrategy,
8
+ component_esm_default,
9
+ getDefaultCameraTransform,
10
+ getFlickingAttached,
11
+ getRenderingPanels,
12
+ range,
13
+ sync,
14
+ withFlickingMethods
15
+ } from "../../chunk-7YEJCBTL.js";
4
16
  import {
5
17
  emotion_styled_browser_esm_default
6
- } from "../../chunk-KBR5BGSG.js";
18
+ } from "../../chunk-7BBOJQDQ.js";
7
19
  import {
8
- css,
9
20
  useTheme
10
- } from "../../chunk-UAWCTQGC.js";
11
- import "../../chunk-QN5Q5NTF.js";
21
+ } from "../../chunk-IANUYI35.js";
22
+ import "../../chunk-KAXHKCBQ.js";
23
+ import "../../chunk-QFKGGJAB.js";
12
24
  import {
13
25
  React,
26
+ __commonJS,
27
+ __spreadValues,
28
+ __toModule,
14
29
  init_react_shim
15
- } from "../../chunk-CPDZ2HQZ.js";
30
+ } from "../../chunk-IPJCOOHW.js";
31
+
32
+ // node_modules/@egjs/react-flicking/node_modules/react-is/cjs/react-is.development.js
33
+ var require_react_is_development = __commonJS({
34
+ "node_modules/@egjs/react-flicking/node_modules/react-is/cjs/react-is.development.js"(exports) {
35
+ init_react_shim();
36
+ "use strict";
37
+ if (true) {
38
+ (function() {
39
+ "use strict";
40
+ var REACT_ELEMENT_TYPE = 60103;
41
+ var REACT_PORTAL_TYPE = 60106;
42
+ var REACT_FRAGMENT_TYPE = 60107;
43
+ var REACT_STRICT_MODE_TYPE = 60108;
44
+ var REACT_PROFILER_TYPE = 60114;
45
+ var REACT_PROVIDER_TYPE = 60109;
46
+ var REACT_CONTEXT_TYPE = 60110;
47
+ var REACT_FORWARD_REF_TYPE = 60112;
48
+ var REACT_SUSPENSE_TYPE = 60113;
49
+ var REACT_SUSPENSE_LIST_TYPE = 60120;
50
+ var REACT_MEMO_TYPE = 60115;
51
+ var REACT_LAZY_TYPE = 60116;
52
+ var REACT_BLOCK_TYPE = 60121;
53
+ var REACT_SERVER_BLOCK_TYPE = 60122;
54
+ var REACT_FUNDAMENTAL_TYPE = 60117;
55
+ var REACT_SCOPE_TYPE = 60119;
56
+ var REACT_OPAQUE_ID_TYPE = 60128;
57
+ var REACT_DEBUG_TRACING_MODE_TYPE = 60129;
58
+ var REACT_OFFSCREEN_TYPE = 60130;
59
+ var REACT_LEGACY_HIDDEN_TYPE = 60131;
60
+ if (typeof Symbol === "function" && Symbol.for) {
61
+ var symbolFor = Symbol.for;
62
+ REACT_ELEMENT_TYPE = symbolFor("react.element");
63
+ REACT_PORTAL_TYPE = symbolFor("react.portal");
64
+ REACT_FRAGMENT_TYPE = symbolFor("react.fragment");
65
+ REACT_STRICT_MODE_TYPE = symbolFor("react.strict_mode");
66
+ REACT_PROFILER_TYPE = symbolFor("react.profiler");
67
+ REACT_PROVIDER_TYPE = symbolFor("react.provider");
68
+ REACT_CONTEXT_TYPE = symbolFor("react.context");
69
+ REACT_FORWARD_REF_TYPE = symbolFor("react.forward_ref");
70
+ REACT_SUSPENSE_TYPE = symbolFor("react.suspense");
71
+ REACT_SUSPENSE_LIST_TYPE = symbolFor("react.suspense_list");
72
+ REACT_MEMO_TYPE = symbolFor("react.memo");
73
+ REACT_LAZY_TYPE = symbolFor("react.lazy");
74
+ REACT_BLOCK_TYPE = symbolFor("react.block");
75
+ REACT_SERVER_BLOCK_TYPE = symbolFor("react.server.block");
76
+ REACT_FUNDAMENTAL_TYPE = symbolFor("react.fundamental");
77
+ REACT_SCOPE_TYPE = symbolFor("react.scope");
78
+ REACT_OPAQUE_ID_TYPE = symbolFor("react.opaque.id");
79
+ REACT_DEBUG_TRACING_MODE_TYPE = symbolFor("react.debug_trace_mode");
80
+ REACT_OFFSCREEN_TYPE = symbolFor("react.offscreen");
81
+ REACT_LEGACY_HIDDEN_TYPE = symbolFor("react.legacy_hidden");
82
+ }
83
+ var enableScopeAPI = false;
84
+ function isValidElementType(type) {
85
+ if (typeof type === "string" || typeof type === "function") {
86
+ return true;
87
+ }
88
+ if (type === REACT_FRAGMENT_TYPE || type === REACT_PROFILER_TYPE || type === REACT_DEBUG_TRACING_MODE_TYPE || type === REACT_STRICT_MODE_TYPE || type === REACT_SUSPENSE_TYPE || type === REACT_SUSPENSE_LIST_TYPE || type === REACT_LEGACY_HIDDEN_TYPE || enableScopeAPI) {
89
+ return true;
90
+ }
91
+ if (typeof type === "object" && type !== null) {
92
+ if (type.$$typeof === REACT_LAZY_TYPE || type.$$typeof === REACT_MEMO_TYPE || type.$$typeof === REACT_PROVIDER_TYPE || type.$$typeof === REACT_CONTEXT_TYPE || type.$$typeof === REACT_FORWARD_REF_TYPE || type.$$typeof === REACT_FUNDAMENTAL_TYPE || type.$$typeof === REACT_BLOCK_TYPE || type[0] === REACT_SERVER_BLOCK_TYPE) {
93
+ return true;
94
+ }
95
+ }
96
+ return false;
97
+ }
98
+ function typeOf(object) {
99
+ if (typeof object === "object" && object !== null) {
100
+ var $$typeof = object.$$typeof;
101
+ switch ($$typeof) {
102
+ case REACT_ELEMENT_TYPE:
103
+ var type = object.type;
104
+ switch (type) {
105
+ case REACT_FRAGMENT_TYPE:
106
+ case REACT_PROFILER_TYPE:
107
+ case REACT_STRICT_MODE_TYPE:
108
+ case REACT_SUSPENSE_TYPE:
109
+ case REACT_SUSPENSE_LIST_TYPE:
110
+ return type;
111
+ default:
112
+ var $$typeofType = type && type.$$typeof;
113
+ switch ($$typeofType) {
114
+ case REACT_CONTEXT_TYPE:
115
+ case REACT_FORWARD_REF_TYPE:
116
+ case REACT_LAZY_TYPE:
117
+ case REACT_MEMO_TYPE:
118
+ case REACT_PROVIDER_TYPE:
119
+ return $$typeofType;
120
+ default:
121
+ return $$typeof;
122
+ }
123
+ }
124
+ case REACT_PORTAL_TYPE:
125
+ return $$typeof;
126
+ }
127
+ }
128
+ return void 0;
129
+ }
130
+ var ContextConsumer = REACT_CONTEXT_TYPE;
131
+ var ContextProvider = REACT_PROVIDER_TYPE;
132
+ var Element = REACT_ELEMENT_TYPE;
133
+ var ForwardRef = REACT_FORWARD_REF_TYPE;
134
+ var Fragment2 = REACT_FRAGMENT_TYPE;
135
+ var Lazy = REACT_LAZY_TYPE;
136
+ var Memo = REACT_MEMO_TYPE;
137
+ var Portal = REACT_PORTAL_TYPE;
138
+ var Profiler = REACT_PROFILER_TYPE;
139
+ var StrictMode = REACT_STRICT_MODE_TYPE;
140
+ var Suspense = REACT_SUSPENSE_TYPE;
141
+ var hasWarnedAboutDeprecatedIsAsyncMode = false;
142
+ var hasWarnedAboutDeprecatedIsConcurrentMode = false;
143
+ function isAsyncMode(object) {
144
+ {
145
+ if (!hasWarnedAboutDeprecatedIsAsyncMode) {
146
+ hasWarnedAboutDeprecatedIsAsyncMode = true;
147
+ console["warn"]("The ReactIs.isAsyncMode() alias has been deprecated, and will be removed in React 18+.");
148
+ }
149
+ }
150
+ return false;
151
+ }
152
+ function isConcurrentMode(object) {
153
+ {
154
+ if (!hasWarnedAboutDeprecatedIsConcurrentMode) {
155
+ hasWarnedAboutDeprecatedIsConcurrentMode = true;
156
+ console["warn"]("The ReactIs.isConcurrentMode() alias has been deprecated, and will be removed in React 18+.");
157
+ }
158
+ }
159
+ return false;
160
+ }
161
+ function isContextConsumer(object) {
162
+ return typeOf(object) === REACT_CONTEXT_TYPE;
163
+ }
164
+ function isContextProvider(object) {
165
+ return typeOf(object) === REACT_PROVIDER_TYPE;
166
+ }
167
+ function isElement(object) {
168
+ return typeof object === "object" && object !== null && object.$$typeof === REACT_ELEMENT_TYPE;
169
+ }
170
+ function isForwardRef(object) {
171
+ return typeOf(object) === REACT_FORWARD_REF_TYPE;
172
+ }
173
+ function isFragment2(object) {
174
+ return typeOf(object) === REACT_FRAGMENT_TYPE;
175
+ }
176
+ function isLazy(object) {
177
+ return typeOf(object) === REACT_LAZY_TYPE;
178
+ }
179
+ function isMemo(object) {
180
+ return typeOf(object) === REACT_MEMO_TYPE;
181
+ }
182
+ function isPortal(object) {
183
+ return typeOf(object) === REACT_PORTAL_TYPE;
184
+ }
185
+ function isProfiler(object) {
186
+ return typeOf(object) === REACT_PROFILER_TYPE;
187
+ }
188
+ function isStrictMode(object) {
189
+ return typeOf(object) === REACT_STRICT_MODE_TYPE;
190
+ }
191
+ function isSuspense(object) {
192
+ return typeOf(object) === REACT_SUSPENSE_TYPE;
193
+ }
194
+ exports.ContextConsumer = ContextConsumer;
195
+ exports.ContextProvider = ContextProvider;
196
+ exports.Element = Element;
197
+ exports.ForwardRef = ForwardRef;
198
+ exports.Fragment = Fragment2;
199
+ exports.Lazy = Lazy;
200
+ exports.Memo = Memo;
201
+ exports.Portal = Portal;
202
+ exports.Profiler = Profiler;
203
+ exports.StrictMode = StrictMode;
204
+ exports.Suspense = Suspense;
205
+ exports.isAsyncMode = isAsyncMode;
206
+ exports.isConcurrentMode = isConcurrentMode;
207
+ exports.isContextConsumer = isContextConsumer;
208
+ exports.isContextProvider = isContextProvider;
209
+ exports.isElement = isElement;
210
+ exports.isForwardRef = isForwardRef;
211
+ exports.isFragment = isFragment2;
212
+ exports.isLazy = isLazy;
213
+ exports.isMemo = isMemo;
214
+ exports.isPortal = isPortal;
215
+ exports.isProfiler = isProfiler;
216
+ exports.isStrictMode = isStrictMode;
217
+ exports.isSuspense = isSuspense;
218
+ exports.isValidElementType = isValidElementType;
219
+ exports.typeOf = typeOf;
220
+ })();
221
+ }
222
+ }
223
+ });
224
+
225
+ // node_modules/@egjs/react-flicking/node_modules/react-is/index.js
226
+ var require_react_is = __commonJS({
227
+ "node_modules/@egjs/react-flicking/node_modules/react-is/index.js"(exports, module) {
228
+ init_react_shim();
229
+ "use strict";
230
+ if (false) {
231
+ module.exports = null;
232
+ } else {
233
+ module.exports = require_react_is_development();
234
+ }
235
+ }
236
+ });
16
237
 
17
238
  // libs/shared/ui-system/src/lib/Slider/Slider.tsx
18
239
  init_react_shim();
19
- import {forwardRef, useCallback, useState} from "react";
20
- import {Box} from "../../private/Box/index.js";
21
- import {skipForwardProps, getPaddedResponsiveArray, getResponsiveOptions} from "../../core/index.js";
22
- import {INITIAL_STATES} from "./constants.js";
23
- import {useAutoPlay} from "./internalHooks/useAutoPlay.js";
24
- import {usePageControl} from "./internalHooks/usePageControl.js";
25
- import {useVirtual} from "./internalHooks/useVirtual.js";
26
- var Slider = forwardRef(({
27
- className,
28
- autoPlay = false,
29
- autoPlayDurationMs = 1e3,
30
- controls = true,
31
- loop = false,
32
- spacing = 0,
33
- slidesPerView = 1,
34
- centered = false,
35
- offsetX,
36
- children,
37
- onIndexChange,
38
- onProgressStateChange,
39
- initial = 0
40
- }, forwardedRef) => {
41
- const {breakpoints} = useTheme();
42
- const responsiveSlidesPerView = getPaddedResponsiveArray(breakpoints, slidesPerView);
43
- const responsiveSpacing = getPaddedResponsiveArray(breakpoints, spacing);
44
- const responsiveControls = getPaddedResponsiveArray(breakpoints, controls);
45
- const [index, setIndex] = useState(INITIAL_STATES.index);
46
- const [currentSlidesPerView, setCurrentSlidesPerView] = useState(responsiveSlidesPerView?.slice(-1)[0]);
47
- const responsiveOptions = getResponsiveOptions(breakpoints, {
48
- controls: responsiveControls,
49
- spacing: responsiveSpacing,
50
- slidesPerView: responsiveSlidesPerView
51
- });
52
- const [sliderRef, slider] = h({
53
- loop,
54
- initial,
55
- centered,
56
- rubberband: false,
57
- breakpoints: responsiveOptions,
58
- slideChanged: (sliderElement) => {
59
- const {relativeSlide} = sliderElement.details();
60
- handleIndexChange(relativeSlide);
61
- },
62
- afterChange: (sliderElement) => {
63
- setAutoPlayTimer(sliderElement);
240
+ import {
241
+ Children as Children2,
242
+ forwardRef,
243
+ isValidElement,
244
+ useCallback,
245
+ useEffect,
246
+ useImperativeHandle,
247
+ useMemo,
248
+ useRef
249
+ } from "react";
250
+
251
+ // node_modules/@egjs/react-flicking/dist/flicking.esm.js
252
+ init_react_shim();
253
+ import {
254
+ Children,
255
+ Component,
256
+ Fragment,
257
+ PureComponent,
258
+ cloneElement,
259
+ createElement,
260
+ createRef
261
+ } from "react";
262
+ import React__default from "react";
263
+
264
+ // node_modules/@egjs/list-differ/dist/list-differ.esm.js
265
+ init_react_shim();
266
+ var PolyMap = /* @__PURE__ */ function() {
267
+ function PolyMap2() {
268
+ this.keys = [];
269
+ this.values = [];
270
+ }
271
+ var __proto = PolyMap2.prototype;
272
+ __proto.get = function(key) {
273
+ return this.values[this.keys.indexOf(key)];
274
+ };
275
+ __proto.set = function(key, value) {
276
+ var keys = this.keys;
277
+ var values = this.values;
278
+ var prevIndex = keys.indexOf(key);
279
+ var index = prevIndex === -1 ? keys.length : prevIndex;
280
+ keys[index] = key;
281
+ values[index] = value;
282
+ };
283
+ return PolyMap2;
284
+ }();
285
+ var HashMap = /* @__PURE__ */ function() {
286
+ function HashMap2() {
287
+ this.object = {};
288
+ }
289
+ var __proto = HashMap2.prototype;
290
+ __proto.get = function(key) {
291
+ return this.object[key];
292
+ };
293
+ __proto.set = function(key, value) {
294
+ this.object[key] = value;
295
+ };
296
+ return HashMap2;
297
+ }();
298
+ var SUPPORT_MAP = typeof Map === "function";
299
+ var Link = /* @__PURE__ */ function() {
300
+ function Link2() {
301
+ }
302
+ var __proto = Link2.prototype;
303
+ __proto.connect = function(prevLink, nextLink) {
304
+ this.prev = prevLink;
305
+ this.next = nextLink;
306
+ prevLink && (prevLink.next = this);
307
+ nextLink && (nextLink.prev = this);
308
+ };
309
+ __proto.disconnect = function() {
310
+ var prevLink = this.prev;
311
+ var nextLink = this.next;
312
+ prevLink && (prevLink.next = nextLink);
313
+ nextLink && (nextLink.prev = prevLink);
314
+ };
315
+ __proto.getIndex = function() {
316
+ var link = this;
317
+ var index = -1;
318
+ while (link) {
319
+ link = link.prev;
320
+ ++index;
321
+ }
322
+ return index;
323
+ };
324
+ return Link2;
325
+ }();
326
+ function orderChanged(changed, fixed) {
327
+ var fromLinks = [];
328
+ var toLinks = [];
329
+ changed.forEach(function(_a) {
330
+ var from = _a[0], to = _a[1];
331
+ var link = new Link();
332
+ fromLinks[from] = link;
333
+ toLinks[to] = link;
334
+ });
335
+ fromLinks.forEach(function(link, i) {
336
+ link.connect(fromLinks[i - 1]);
337
+ });
338
+ return changed.filter(function(_, i) {
339
+ return !fixed[i];
340
+ }).map(function(_a, i) {
341
+ var from = _a[0], to = _a[1];
342
+ if (from === to) {
343
+ return [0, 0];
344
+ }
345
+ var fromLink = fromLinks[from];
346
+ var toLink = toLinks[to - 1];
347
+ var fromIndex = fromLink.getIndex();
348
+ fromLink.disconnect();
349
+ if (!toLink) {
350
+ fromLink.connect(void 0, fromLinks[0]);
351
+ } else {
352
+ fromLink.connect(toLink, toLink.next);
353
+ }
354
+ var toIndex = fromLink.getIndex();
355
+ return [fromIndex, toIndex];
356
+ });
357
+ }
358
+ var Result = /* @__PURE__ */ function() {
359
+ function Result2(prevList, list, added, removed, changed, maintained, changedBeforeAdded, fixed) {
360
+ this.prevList = prevList;
361
+ this.list = list;
362
+ this.added = added;
363
+ this.removed = removed;
364
+ this.changed = changed;
365
+ this.maintained = maintained;
366
+ this.changedBeforeAdded = changedBeforeAdded;
367
+ this.fixed = fixed;
368
+ }
369
+ var __proto = Result2.prototype;
370
+ Object.defineProperty(__proto, "ordered", {
371
+ get: function() {
372
+ if (!this.cacheOrdered) {
373
+ this.caculateOrdered();
374
+ }
375
+ return this.cacheOrdered;
64
376
  },
65
- dragStart: () => {
66
- clearAutoPlayTimer();
377
+ enumerable: true,
378
+ configurable: true
379
+ });
380
+ Object.defineProperty(__proto, "pureChanged", {
381
+ get: function() {
382
+ if (!this.cachePureChanged) {
383
+ this.caculateOrdered();
384
+ }
385
+ return this.cachePureChanged;
67
386
  },
68
- mounted: (sliderElement) => {
69
- setCurrentSlidesPerView(sliderElement.details().slidesPerView);
387
+ enumerable: true,
388
+ configurable: true
389
+ });
390
+ __proto.caculateOrdered = function() {
391
+ var ordered = orderChanged(this.changedBeforeAdded, this.fixed);
392
+ var changed = this.changed;
393
+ var pureChanged = [];
394
+ this.cacheOrdered = ordered.filter(function(_a, i) {
395
+ var from = _a[0], to = _a[1];
396
+ var _b = changed[i], fromBefore = _b[0], toBefore = _b[1];
397
+ if (from !== to) {
398
+ pureChanged.push([fromBefore, toBefore]);
399
+ return true;
400
+ }
401
+ });
402
+ this.cachePureChanged = pureChanged;
403
+ };
404
+ return Result2;
405
+ }();
406
+ function diff(prevList, list, findKeyCallback) {
407
+ var mapClass = SUPPORT_MAP ? Map : findKeyCallback ? HashMap : PolyMap;
408
+ var callback = findKeyCallback || function(e) {
409
+ return e;
410
+ };
411
+ var added = [];
412
+ var removed = [];
413
+ var maintained = [];
414
+ var prevKeys = prevList.map(callback);
415
+ var keys = list.map(callback);
416
+ var prevKeyMap = new mapClass();
417
+ var keyMap = new mapClass();
418
+ var changedBeforeAdded = [];
419
+ var fixed = [];
420
+ var removedMap = {};
421
+ var changed = [];
422
+ var addedCount = 0;
423
+ var removedCount = 0;
424
+ prevKeys.forEach(function(key, prevListIndex) {
425
+ prevKeyMap.set(key, prevListIndex);
426
+ });
427
+ keys.forEach(function(key, listIndex) {
428
+ keyMap.set(key, listIndex);
429
+ });
430
+ prevKeys.forEach(function(key, prevListIndex) {
431
+ var listIndex = keyMap.get(key);
432
+ if (typeof listIndex === "undefined") {
433
+ ++removedCount;
434
+ removed.push(prevListIndex);
435
+ } else {
436
+ removedMap[listIndex] = removedCount;
70
437
  }
71
438
  });
72
- const {setAutoPlayTimer, clearAutoPlayTimer} = useAutoPlay({
73
- slider,
74
- autoPlay,
75
- durationMs: autoPlayDurationMs,
76
- onProgressStateChange
77
- });
78
- usePageControl({
79
- controlRef: forwardedRef,
80
- slider,
81
- callback: clearAutoPlayTimer
82
- });
83
- const {slides} = useVirtual({
84
- loop,
85
- currentIndex: index,
86
- currentSlidesPerView,
87
- slideElements: children
88
- });
89
- const handleIndexChange = useCallback((nextIndex) => {
90
- setIndex(nextIndex);
91
- onIndexChange?.(nextIndex);
92
- }, [onIndexChange, setIndex]);
93
- const responsivePaddingX = typeof offsetX === "number" ? [offsetX] : offsetX;
94
- const responvieMarginX = responsivePaddingX?.map((x) => x * -1);
95
- return /* @__PURE__ */ React.createElement(Box, {
96
- overflowX: "hidden",
97
- px: responsivePaddingX,
98
- mx: responvieMarginX
99
- }, /* @__PURE__ */ React.createElement(SliderContainer, {
100
- className: `${className ?? ""} keen-slider`,
101
- ref: sliderRef,
102
- slidesPerView: responsiveSlidesPerView,
103
- spacing: responsiveSpacing,
104
- visible: Boolean(offsetX)
105
- }, slides));
106
- });
107
- var SliderContainer = emotion_styled_browser_esm_default(Box, skipForwardProps(["spacing"]))`
108
- ${({visible}) => visible && css`
109
- overflow: visible;
110
- `}
111
-
112
- .keen-slider__slide {
113
- ${({slidesPerView, spacing}) => css`
114
- min-width: calc((100% - ${spacing[0] * (slidesPerView[0] - 1)}px) / ${slidesPerView[0]});
115
- max-width: calc((100% - ${spacing[0] * (slidesPerView[0] - 1)}px) / ${slidesPerView[0]});
116
- `}
439
+ keys.forEach(function(key, listIndex) {
440
+ var prevListIndex = prevKeyMap.get(key);
441
+ if (typeof prevListIndex === "undefined") {
442
+ added.push(listIndex);
443
+ ++addedCount;
444
+ } else {
445
+ maintained.push([prevListIndex, listIndex]);
446
+ removedCount = removedMap[listIndex] || 0;
447
+ changedBeforeAdded.push([prevListIndex - removedCount, listIndex - addedCount]);
448
+ fixed.push(listIndex === prevListIndex);
449
+ if (prevListIndex !== listIndex) {
450
+ changed.push([prevListIndex, listIndex]);
451
+ }
452
+ }
453
+ });
454
+ removed.reverse();
455
+ return new Result(prevList, list, added, removed, changed, maintained, changedBeforeAdded, fixed);
456
+ }
457
+ var ListDiffer = /* @__PURE__ */ function() {
458
+ function ListDiffer2(list, findKeyCallback) {
459
+ if (list === void 0) {
460
+ list = [];
461
+ }
462
+ this.findKeyCallback = findKeyCallback;
463
+ this.list = [].slice.call(list);
464
+ }
465
+ var __proto = ListDiffer2.prototype;
466
+ __proto.update = function(list) {
467
+ var newData = [].slice.call(list);
468
+ var result = diff(this.list, newData, this.findKeyCallback);
469
+ this.list = newData;
470
+ return result;
471
+ };
472
+ return ListDiffer2;
473
+ }();
474
+ var list_differ_esm_default = ListDiffer;
117
475
 
118
- ${({theme, slidesPerView, spacing}) => theme.breakpoints.map((breakpoint, index) => slidesPerView[index + 1] && spacing[index + 1] && css`
119
- @media screen and (min-width: ${breakpoint}) {
120
- min-width: calc(
121
- (100% - ${spacing[index + 1] * (slidesPerView[index + 1] - 1)}px) / ${slidesPerView[index + 1]}
122
- );
123
- max-width: calc(
124
- (100% - ${spacing[index + 1] * (slidesPerView[index + 1] - 1)}px) / ${slidesPerView[index + 1]}
125
- );
476
+ // node_modules/@egjs/react-flicking/dist/flicking.esm.js
477
+ var import_react_is = __toModule(require_react_is());
478
+ import { findDOMNode } from "react-dom";
479
+ var extendStatics = function(d, b) {
480
+ extendStatics = Object.setPrototypeOf || {
481
+ __proto__: []
482
+ } instanceof Array && function(d2, b2) {
483
+ d2.__proto__ = b2;
484
+ } || function(d2, b2) {
485
+ for (var p in b2)
486
+ if (Object.prototype.hasOwnProperty.call(b2, p))
487
+ d2[p] = b2[p];
488
+ };
489
+ return extendStatics(d, b);
490
+ };
491
+ function __extends(d, b) {
492
+ if (typeof b !== "function" && b !== null)
493
+ throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
494
+ extendStatics(d, b);
495
+ function __() {
496
+ this.constructor = d;
497
+ }
498
+ d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
499
+ }
500
+ var __assign = function() {
501
+ __assign = Object.assign || function __assign2(t) {
502
+ for (var s, i = 1, n = arguments.length; i < n; i++) {
503
+ s = arguments[i];
504
+ for (var p in s)
505
+ if (Object.prototype.hasOwnProperty.call(s, p))
506
+ t[p] = s[p];
507
+ }
508
+ return t;
509
+ };
510
+ return __assign.apply(this, arguments);
511
+ };
512
+ function __decorate(decorators, target, key, desc) {
513
+ var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
514
+ if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
515
+ r = Reflect.decorate(decorators, target, key, desc);
516
+ else
517
+ for (var i = decorators.length - 1; i >= 0; i--)
518
+ if (d = decorators[i])
519
+ r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
520
+ return c > 3 && r && Object.defineProperty(target, key, r), r;
521
+ }
522
+ function __awaiter(thisArg, _arguments, P, generator) {
523
+ function adopt(value) {
524
+ return value instanceof P ? value : new P(function(resolve) {
525
+ resolve(value);
526
+ });
527
+ }
528
+ return new (P || (P = Promise))(function(resolve, reject) {
529
+ function fulfilled(value) {
530
+ try {
531
+ step(generator.next(value));
532
+ } catch (e) {
533
+ reject(e);
534
+ }
535
+ }
536
+ function rejected(value) {
537
+ try {
538
+ step(generator["throw"](value));
539
+ } catch (e) {
540
+ reject(e);
541
+ }
542
+ }
543
+ function step(result) {
544
+ result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected);
545
+ }
546
+ step((generator = generator.apply(thisArg, _arguments || [])).next());
547
+ });
548
+ }
549
+ function __generator(thisArg, body) {
550
+ var _ = {
551
+ label: 0,
552
+ sent: function() {
553
+ if (t[0] & 1)
554
+ throw t[1];
555
+ return t[1];
556
+ },
557
+ trys: [],
558
+ ops: []
559
+ }, f, y, t, g;
560
+ return g = {
561
+ next: verb(0),
562
+ "throw": verb(1),
563
+ "return": verb(2)
564
+ }, typeof Symbol === "function" && (g[Symbol.iterator] = function() {
565
+ return this;
566
+ }), g;
567
+ function verb(n) {
568
+ return function(v) {
569
+ return step([n, v]);
570
+ };
571
+ }
572
+ function step(op) {
573
+ if (f)
574
+ throw new TypeError("Generator is already executing.");
575
+ while (_)
576
+ try {
577
+ if (f = 1, y && (t = op[0] & 2 ? y["return"] : op[0] ? y["throw"] || ((t = y["return"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done)
578
+ return t;
579
+ if (y = 0, t)
580
+ op = [op[0] & 2, t.value];
581
+ switch (op[0]) {
582
+ case 0:
583
+ case 1:
584
+ t = op;
585
+ break;
586
+ case 4:
587
+ _.label++;
588
+ return {
589
+ value: op[1],
590
+ done: false
591
+ };
592
+ case 5:
593
+ _.label++;
594
+ y = op[1];
595
+ op = [0];
596
+ continue;
597
+ case 7:
598
+ op = _.ops.pop();
599
+ _.trys.pop();
600
+ continue;
601
+ default:
602
+ if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) {
603
+ _ = 0;
604
+ continue;
126
605
  }
127
- `)}
128
-
129
- &:not(:first-child) {
130
- ${({spacing}) => css`
131
- margin-left: ${spacing[0]};
132
- `}
133
-
134
- ${({theme, spacing}) => theme.breakpoints.map((breakpoint, index) => spacing[index + 1] && css`
135
- @media screen and (min-width: ${breakpoint}) {
136
- margin-left: ${spacing[index + 1]}px;
137
- }
138
- `)}
606
+ if (op[0] === 3 && (!t || op[1] > t[0] && op[1] < t[3])) {
607
+ _.label = op[1];
608
+ break;
609
+ }
610
+ if (op[0] === 6 && _.label < t[1]) {
611
+ _.label = t[1];
612
+ t = op;
613
+ break;
614
+ }
615
+ if (t && _.label < t[2]) {
616
+ _.label = t[2];
617
+ _.ops.push(op);
618
+ break;
619
+ }
620
+ if (t[2])
621
+ _.ops.pop();
622
+ _.trys.pop();
623
+ continue;
624
+ }
625
+ op = body.call(thisArg, _);
626
+ } catch (e) {
627
+ op = [6, e];
628
+ y = 0;
629
+ } finally {
630
+ f = t = 0;
631
+ }
632
+ if (op[0] & 5)
633
+ throw op[1];
634
+ return {
635
+ value: op[0] ? op[1] : void 0,
636
+ done: true
637
+ };
638
+ }
639
+ }
640
+ function __spreadArray(to, from, pack) {
641
+ if (pack || arguments.length === 2)
642
+ for (var i = 0, l = from.length, ar; i < l; i++) {
643
+ if (ar || !(i in from)) {
644
+ if (!ar)
645
+ ar = Array.prototype.slice.call(from, 0, i);
646
+ ar[i] = from[i];
647
+ }
648
+ }
649
+ return to.concat(ar || Array.prototype.slice.call(from));
650
+ }
651
+ var DEFAULT_PROPS = {
652
+ viewportTag: "div",
653
+ cameraTag: "div",
654
+ plugins: [],
655
+ useFindDOMNode: false,
656
+ hideBeforeInit: false,
657
+ onReady: function(e) {
658
+ },
659
+ onBeforeResize: function(e) {
660
+ },
661
+ onAfterResize: function(e) {
662
+ },
663
+ onHoldStart: function(e) {
664
+ },
665
+ onHoldEnd: function(e) {
666
+ },
667
+ onMoveStart: function(e) {
668
+ },
669
+ onMove: function(e) {
670
+ },
671
+ onMoveEnd: function(e) {
672
+ },
673
+ onWillChange: function(e) {
674
+ },
675
+ onChanged: function(e) {
676
+ },
677
+ onWillRestore: function(e) {
678
+ },
679
+ onRestored: function(e) {
680
+ },
681
+ onSelect: function(e) {
682
+ },
683
+ onNeedPanel: function(e) {
684
+ },
685
+ onVisibleChange: function(e) {
686
+ },
687
+ onReachEdge: function(e) {
688
+ },
689
+ onPanelChange: function(e) {
690
+ }
691
+ };
692
+ var ReactRenderer = /* @__PURE__ */ function(_super) {
693
+ __extends(ReactRenderer2, _super);
694
+ function ReactRenderer2(options) {
695
+ var _this = _super.call(this, options) || this;
696
+ _this._reactFlicking = options.reactFlicking;
697
+ return _this;
698
+ }
699
+ var __proto = ReactRenderer2.prototype;
700
+ __proto.render = function() {
701
+ return __awaiter(this, void 0, void 0, function() {
702
+ var flicking, reactFlicking, strategy;
703
+ return __generator(this, function(_a) {
704
+ flicking = getFlickingAttached(this._flicking);
705
+ reactFlicking = this._reactFlicking;
706
+ strategy = this._strategy;
707
+ strategy.updateRenderingPanels(flicking);
708
+ strategy.renderPanels(flicking);
709
+ return [
710
+ 2,
711
+ new Promise(function(resolve) {
712
+ reactFlicking.renderEmitter.once("render", resolve);
713
+ reactFlicking.forceUpdate();
714
+ })
715
+ ];
716
+ });
717
+ });
718
+ };
719
+ __proto.forceRenderAllPanels = function() {
720
+ return __awaiter(this, void 0, void 0, function() {
721
+ var reactFlicking;
722
+ return __generator(this, function(_a) {
723
+ switch (_a.label) {
724
+ case 0:
725
+ reactFlicking = this._reactFlicking;
726
+ return [
727
+ 4,
728
+ _super.prototype.forceRenderAllPanels.call(this)
729
+ ];
730
+ case 1:
731
+ _a.sent();
732
+ return [
733
+ 2,
734
+ new Promise(function(resolve) {
735
+ reactFlicking.renderEmitter.once("render", resolve);
736
+ reactFlicking.forceUpdate();
737
+ })
738
+ ];
739
+ }
740
+ });
741
+ });
742
+ };
743
+ __proto._collectPanels = function() {
744
+ var flicking = getFlickingAttached(this._flicking);
745
+ var reactFlicking = this._reactFlicking;
746
+ var reactPanels = reactFlicking.reactPanels;
747
+ this._panels = this._strategy.collectPanels(flicking, reactPanels);
748
+ };
749
+ __proto._createPanel = function(externalComponent, options) {
750
+ return this._strategy.createPanel(externalComponent, options);
751
+ };
752
+ return ReactRenderer2;
753
+ }(ExternalRenderer);
754
+ var StrictPanel = /* @__PURE__ */ function(_super) {
755
+ __extends(StrictPanel2, _super);
756
+ function StrictPanel2() {
757
+ var _this = _super !== null && _super.apply(this, arguments) || this;
758
+ _this._hide = false;
759
+ _this._elRef = createRef();
760
+ return _this;
761
+ }
762
+ var __proto = StrictPanel2.prototype;
763
+ Object.defineProperty(__proto, "nativeElement", {
764
+ get: function() {
765
+ return this._elRef.current;
766
+ },
767
+ enumerable: false,
768
+ configurable: true
769
+ });
770
+ Object.defineProperty(__proto, "rendered", {
771
+ get: function() {
772
+ return !this._hide;
773
+ },
774
+ enumerable: false,
775
+ configurable: true
776
+ });
777
+ __proto.render = function() {
778
+ return this._hide ? createElement(Fragment, null) : this._getElement();
779
+ };
780
+ __proto.show = function() {
781
+ this._hide = false;
782
+ };
783
+ __proto.hide = function() {
784
+ this._hide = true;
785
+ };
786
+ __proto._getElement = function() {
787
+ return cloneElement(Children.only(this.props.children), {
788
+ ref: this._elRef
789
+ });
790
+ };
791
+ return StrictPanel2;
792
+ }(Component);
793
+ var NonStrictPanel = /* @__PURE__ */ function(_super) {
794
+ __extends(NonStrictPanel2, _super);
795
+ function NonStrictPanel2() {
796
+ var _this = _super !== null && _super.apply(this, arguments) || this;
797
+ _this._hide = false;
798
+ return _this;
799
+ }
800
+ var __proto = NonStrictPanel2.prototype;
801
+ Object.defineProperty(__proto, "nativeElement", {
802
+ get: function() {
803
+ return findDOMNode(this);
804
+ },
805
+ enumerable: false,
806
+ configurable: true
807
+ });
808
+ Object.defineProperty(__proto, "rendered", {
809
+ get: function() {
810
+ return !this._hide;
811
+ },
812
+ enumerable: false,
813
+ configurable: true
814
+ });
815
+ __proto.render = function() {
816
+ return this._hide ? createElement(Fragment, null) : this.props.children;
817
+ };
818
+ __proto.show = function() {
819
+ this._hide = false;
820
+ };
821
+ __proto.hide = function() {
822
+ this._hide = true;
823
+ };
824
+ return NonStrictPanel2;
825
+ }(Component);
826
+ var ViewportSlot = function(_a) {
827
+ var children = _a.children;
828
+ return React__default.createElement(React__default.Fragment, null, children);
829
+ };
830
+ var ReactElementProvider = /* @__PURE__ */ function() {
831
+ function ReactElementProvider2(el) {
832
+ this._el = el;
833
+ }
834
+ var __proto = ReactElementProvider2.prototype;
835
+ Object.defineProperty(__proto, "element", {
836
+ get: function() {
837
+ return this._el.nativeElement;
838
+ },
839
+ enumerable: false,
840
+ configurable: true
841
+ });
842
+ Object.defineProperty(__proto, "rendered", {
843
+ get: function() {
844
+ return this._el.rendered;
845
+ },
846
+ enumerable: false,
847
+ configurable: true
848
+ });
849
+ __proto.show = function() {
850
+ this._el.show();
851
+ };
852
+ __proto.hide = function() {
853
+ this._el.hide();
854
+ };
855
+ return ReactElementProvider2;
856
+ }();
857
+ var Flicking2 = /* @__PURE__ */ function(_super) {
858
+ __extends(Flicking3, _super);
859
+ function Flicking3() {
860
+ var _this = _super !== null && _super.apply(this, arguments) || this;
861
+ _this._panels = [];
862
+ _this._renderEmitter = new component_esm_default();
863
+ return _this;
864
+ }
865
+ var __proto = Flicking3.prototype;
866
+ Object.defineProperty(__proto, "reactPanels", {
867
+ get: function() {
868
+ return this._panels.map(function(panel) {
869
+ return panel.current;
870
+ });
871
+ },
872
+ enumerable: false,
873
+ configurable: true
874
+ });
875
+ Object.defineProperty(__proto, "renderEmitter", {
876
+ get: function() {
877
+ return this._renderEmitter;
878
+ },
879
+ enumerable: false,
880
+ configurable: true
881
+ });
882
+ __proto.componentDidMount = function() {
883
+ var props = this.props;
884
+ var rendererOptions = {
885
+ reactFlicking: this,
886
+ strategy: props.virtual && props.panelsPerView > 0 ? new VirtualRenderingStrategy() : new NormalRenderingStrategy({
887
+ providerCtor: ReactElementProvider,
888
+ panelCtor: ExternalPanel
889
+ })
890
+ };
891
+ var flicking = new Flicking(this._viewportElement, __assign(__assign({}, props), {
892
+ renderExternal: {
893
+ renderer: ReactRenderer,
894
+ rendererOptions
895
+ }
896
+ }));
897
+ this._vanillaFlicking = flicking;
898
+ var children = this._getChildren();
899
+ this._jsxDiffer = new list_differ_esm_default(children, function(panel) {
900
+ return panel.key;
901
+ });
902
+ this._pluginsDiffer = new list_differ_esm_default();
903
+ this._bindEvents();
904
+ this._checkPlugins();
905
+ if (props.status) {
906
+ flicking.setStatus(props.status);
907
+ }
908
+ };
909
+ __proto.componentWillUnmount = function() {
910
+ var _a;
911
+ (_a = this._vanillaFlicking) === null || _a === void 0 ? void 0 : _a.destroy();
912
+ };
913
+ __proto.componentDidUpdate = function() {
914
+ var flicking = this._vanillaFlicking;
915
+ var diffResult = this._diffResult;
916
+ this._checkPlugins();
917
+ this._renderEmitter.trigger("render");
918
+ if (!diffResult || !flicking.initialized)
919
+ return;
920
+ sync(flicking, diffResult, this.reactPanels);
921
+ if (diffResult.added.length > 0 || diffResult.removed.length > 0) {
922
+ this.forceUpdate();
139
923
  }
924
+ this._diffResult = null;
925
+ };
926
+ __proto.render = function() {
927
+ var _this = this;
928
+ var _a, _b, _c, _d;
929
+ var props = this.props;
930
+ var Viewport = props.viewportTag;
931
+ var Camera = props.cameraTag;
932
+ var attributes = {};
933
+ var flicking = this._vanillaFlicking;
934
+ var children = this._getChildren(props.children);
935
+ var diffResult = (_b = (_a = this._jsxDiffer) === null || _a === void 0 ? void 0 : _a.update(children)) !== null && _b !== void 0 ? _b : null;
936
+ this._panels = this._createPanelRefs(props, children);
937
+ this._diffResult = diffResult;
938
+ for (var name in props) {
939
+ if (!(name in DEFAULT_PROPS) && !(name in Flicking.prototype)) {
940
+ attributes[name] = props[name];
941
+ }
942
+ }
943
+ var initialized = !!this._diffResult && flicking && flicking.initialized;
944
+ var viewportClasses = ["flicking-viewport"];
945
+ var isHorizontal = flicking ? flicking.horizontal : (_c = props.horizontal) !== null && _c !== void 0 ? _c : true;
946
+ if (!isHorizontal) {
947
+ viewportClasses.push("vertical");
948
+ }
949
+ if (props.hideBeforeInit && !initialized) {
950
+ viewportClasses.push("flicking-hidden");
951
+ }
952
+ if (attributes.className) {
953
+ viewportClasses.push(attributes.className);
954
+ }
955
+ var cameraProps = !initialized && props.firstPanelSize ? {
956
+ style: {
957
+ transform: getDefaultCameraTransform(this.props.align, this.props.horizontal, this.props.firstPanelSize)
958
+ }
959
+ } : {};
960
+ var panels = !!props.virtual && ((_d = props.panelsPerView) !== null && _d !== void 0 ? _d : -1) > 0 ? this._getVirtualPanels(initialized) : this._getPanels(initialized);
961
+ return createElement(Viewport, __assign({}, attributes, {
962
+ className: viewportClasses.join(" "),
963
+ ref: function(e) {
964
+ e && (_this._viewportElement = e);
965
+ }
966
+ }), createElement(Camera, __assign({
967
+ className: "flicking-camera"
968
+ }, cameraProps), panels), this._getViewportSlot());
969
+ };
970
+ __proto._createPanelRefs = function(props, children) {
971
+ var _a;
972
+ var panelsPerView = (_a = props.panelsPerView) !== null && _a !== void 0 ? _a : -1;
973
+ return panelsPerView > 0 && !!props.virtual ? range(panelsPerView + 1).map(function() {
974
+ return createRef();
975
+ }) : children.map(function() {
976
+ return createRef();
977
+ });
978
+ };
979
+ __proto._bindEvents = function() {
980
+ var _this = this;
981
+ var flicking = this._vanillaFlicking;
982
+ var props = this.props;
983
+ Object.keys(EVENTS).forEach(function(eventKey) {
984
+ var eventName = EVENTS[eventKey];
985
+ var propName = "on" + (eventName.charAt(0).toUpperCase() + eventName.slice(1));
986
+ flicking.on(eventName, function(e) {
987
+ e.currentTarget = _this;
988
+ props[propName](e);
989
+ });
990
+ });
991
+ flicking.once(EVENTS.READY, function() {
992
+ _this.forceUpdate();
993
+ });
994
+ };
995
+ __proto._checkPlugins = function() {
996
+ var flicking = this._vanillaFlicking;
997
+ var _a = this._pluginsDiffer.update(this.props.plugins), list = _a.list, added = _a.added, removed = _a.removed, prevList = _a.prevList;
998
+ flicking.addPlugins.apply(flicking, added.map(function(index) {
999
+ return list[index];
1000
+ }));
1001
+ flicking.removePlugins.apply(flicking, removed.map(function(index) {
1002
+ return prevList[index];
1003
+ }));
1004
+ };
1005
+ __proto._getChildren = function(children) {
1006
+ var _this = this;
1007
+ if (children === void 0) {
1008
+ children = this.props.children;
1009
+ }
1010
+ return Children.toArray(children).filter(function(child) {
1011
+ return child.type !== ViewportSlot;
1012
+ }).reduce(function(all, child) {
1013
+ return __spreadArray(__spreadArray([], all, true), _this._unpackFragment(child), true);
1014
+ }, []);
1015
+ };
1016
+ __proto._getViewportSlot = function() {
1017
+ return Children.toArray(this.props.children).filter(function(child) {
1018
+ return child.type === ViewportSlot;
1019
+ });
1020
+ };
1021
+ __proto._unpackFragment = function(child) {
1022
+ var _this = this;
1023
+ return (0, import_react_is.isFragment)(child) ? Children.toArray(child.props.children).reduce(function(allChilds, fragChild) {
1024
+ return __spreadArray(__spreadArray([], allChilds, true), _this._unpackFragment(fragChild), true);
1025
+ }, []) : [child];
1026
+ };
1027
+ __proto._getVirtualPanels = function(initialized) {
1028
+ var _this = this;
1029
+ var _a = this.props.virtual.panelClass, panelClass = _a === void 0 ? "flicking-panel" : _a;
1030
+ var panelsPerView = this.props.panelsPerView;
1031
+ var flicking = this._vanillaFlicking;
1032
+ var renderingIndexes = initialized ? flicking.renderer.strategy.getRenderingIndexesByOrder(flicking) : range(panelsPerView + 1);
1033
+ var firstPanel = flicking && flicking.panels[0];
1034
+ var size = firstPanel ? flicking.horizontal ? {
1035
+ width: firstPanel.size
1036
+ } : {
1037
+ height: firstPanel.size
1038
+ } : {};
1039
+ return renderingIndexes.map(function(idx) {
1040
+ return createElement("div", {
1041
+ key: idx,
1042
+ "data-element-index": idx,
1043
+ ref: _this._panels[idx],
1044
+ className: panelClass,
1045
+ style: size
1046
+ });
1047
+ });
1048
+ };
1049
+ __proto._getPanels = function(initialized) {
1050
+ var _this = this;
1051
+ var children = initialized ? getRenderingPanels(this._vanillaFlicking, this._diffResult) : this._getChildren();
1052
+ return this.props.useFindDOMNode ? children.map(function(child, idx) {
1053
+ return createElement(NonStrictPanel, {
1054
+ key: child.key,
1055
+ ref: _this._panels[idx]
1056
+ }, child);
1057
+ }) : children.map(function(child, idx) {
1058
+ return createElement(StrictPanel, {
1059
+ key: child.key,
1060
+ ref: _this._panels[idx]
1061
+ }, child);
1062
+ });
1063
+ };
1064
+ Flicking3.defaultProps = DEFAULT_PROPS;
1065
+ __decorate([withFlickingMethods], Flicking3.prototype, "_vanillaFlicking", void 0);
1066
+ return Flicking3;
1067
+ }(PureComponent);
140
1068
 
141
- &[style*='transform'] {
142
- margin-left: 0;
1069
+ // libs/shared/ui-system/src/lib/Slider/Slider.tsx
1070
+ import { getPaddedResponsiveArray } from "../../core/index.js";
1071
+ import { Box } from "../../private/Box/index.js";
1072
+ import { usePageControl } from "./hooks/usePageControl.js";
1073
+ import AutoPlay from "./plugins/AutoPlay.js";
1074
+ import { withSliderVariation } from "./variants.js";
1075
+ var Slider = withSliderVariation(forwardRef(({
1076
+ children,
1077
+ web_syncRef: syncRef,
1078
+ panelWidth,
1079
+ spacing,
1080
+ initial = 0,
1081
+ autoPlay = false,
1082
+ autoPlayDurationMs,
1083
+ loop = false,
1084
+ align,
1085
+ moveType,
1086
+ controls = true,
1087
+ offsetPaddingX,
1088
+ offsetMarginX
1089
+ }, forwardedRef) => {
1090
+ const ref = useRef(null);
1091
+ const { breakpoints } = useTheme();
1092
+ const plugins = useMemo(() => autoPlay ? [new AutoPlay({ duration: autoPlayDurationMs })] : [], [
1093
+ autoPlay,
1094
+ autoPlayDurationMs
1095
+ ]);
1096
+ const controlsArray = getPaddedResponsiveArray(breakpoints, controls);
1097
+ const handleMoveStart = useCallback((event) => {
1098
+ if (!event.isTrusted || controlsArray.every((value) => value)) {
1099
+ return;
143
1100
  }
1101
+ if (controlsArray.every((value) => !value)) {
1102
+ event.stop();
1103
+ return;
1104
+ }
1105
+ const breakpointIndex = breakpoints.findIndex((breakpoint) => parseInt(breakpoint, 10) > window.innerWidth);
1106
+ if (!controlsArray[breakpointIndex]) {
1107
+ event.stop();
1108
+ }
1109
+ }, [breakpoints, controlsArray]);
1110
+ const {
1111
+ focusToSlide,
1112
+ moveToSlide,
1113
+ moveToPrevSlide,
1114
+ moveToNextSlide,
1115
+ moveToPrevPage,
1116
+ moveToNextPage
1117
+ } = usePageControl({
1118
+ sliderRef: ref,
1119
+ loop
1120
+ });
1121
+ useImperativeHandle(forwardedRef, () => ({
1122
+ focusToSlide,
1123
+ moveToSlide,
1124
+ moveToPrevSlide,
1125
+ moveToNextSlide,
1126
+ moveToPrevPage,
1127
+ moveToNextPage,
1128
+ getCurrentIndex: () => {
1129
+ var _a, _b, _c, _d;
1130
+ return (_d = ((_a = ref.current) == null ? void 0 : _a.index) === -1 ? (_b = ref.current) == null ? void 0 : _b.defaultIndex : (_c = ref.current) == null ? void 0 : _c.index) != null ? _d : 0;
1131
+ },
1132
+ addEventListener: (eventName, handler) => {
1133
+ var _a;
1134
+ (_a = ref.current) == null ? void 0 : _a.on(eventName, handler);
1135
+ },
1136
+ removeEventListener: (eventName, handler) => {
1137
+ var _a;
1138
+ (_a = ref.current) == null ? void 0 : _a.off(eventName, handler);
1139
+ }
1140
+ }), [focusToSlide, moveToNextPage, moveToNextSlide, moveToPrevPage, moveToPrevSlide, moveToSlide]);
1141
+ useEffect(() => {
1142
+ var _a;
1143
+ (_a = syncRef == null ? void 0 : syncRef.current) == null ? void 0 : _a.addEventListener("indexChange", focusToSlide);
1144
+ return () => {
1145
+ var _a2;
1146
+ (_a2 = syncRef == null ? void 0 : syncRef.current) == null ? void 0 : _a2.removeEventListener("indexChange", focusToSlide);
1147
+ };
1148
+ }, [focusToSlide, syncRef]);
1149
+ useEffect(() => {
1150
+ var _a;
1151
+ (_a = ref.current) == null ? void 0 : _a.on("moveStart", handleMoveStart);
1152
+ return () => {
1153
+ var _a2;
1154
+ (_a2 = ref.current) == null ? void 0 : _a2.off("moveStart", handleMoveStart);
1155
+ };
1156
+ }, [handleMoveStart]);
1157
+ return /* @__PURE__ */ React.createElement(Box, {
1158
+ overflowX: "hidden",
1159
+ px: offsetPaddingX,
1160
+ mx: offsetMarginX
1161
+ }, /* @__PURE__ */ React.createElement(StyledFlicking, {
1162
+ ref,
1163
+ align,
1164
+ bound: true,
1165
+ noPanelStyleOverride: true,
1166
+ inputType: ["touch", "mouse", "pointer"],
1167
+ renderOnlyVisible: true,
1168
+ autoResize: true,
1169
+ plugins,
1170
+ defaultIndex: initial,
1171
+ circular: loop,
1172
+ moveType,
1173
+ interruptable: false,
1174
+ onWillChange: ({ index }) => {
1175
+ var _a;
1176
+ return (_a = ref.current) == null ? void 0 : _a.trigger("indexChange", index);
1177
+ },
1178
+ onSelect: ({ index }) => {
1179
+ var _a;
1180
+ return (_a = syncRef == null ? void 0 : syncRef.current) == null ? void 0 : _a.moveToSlide(index);
1181
+ }
1182
+ }, Children2.toArray(children).map((child, index) => isValidElement(child) && /* @__PURE__ */ React.createElement(Box, __spreadValues({
1183
+ key: index,
1184
+ width: panelWidth
1185
+ }, index > 0 && { ml: spacing }), child))));
1186
+ }));
1187
+ var StyledFlicking = emotion_styled_browser_esm_default(Flicking2)`
1188
+ .flicking-viewport {
1189
+ position: relative;
1190
+ overflow: visible;
1191
+ }
1192
+ .flicking-camera {
1193
+ width: 100%;
1194
+ height: 100%;
1195
+ display: -webkit-box;
1196
+ display: -ms-flexbox;
1197
+ display: flex;
1198
+ position: relative;
1199
+ -webkit-box-orient: horizontal;
1200
+ -webkit-box-direction: normal;
1201
+ -ms-flex-direction: row;
1202
+ flex-direction: row;
1203
+ z-index: 1;
1204
+ }
1205
+ .flicking-camera > * {
1206
+ -ms-flex-negative: 0;
1207
+ flex-shrink: 0;
1208
+ }
1209
+ .flicking-viewport.vertical {
1210
+ display: -webkit-inline-box;
1211
+ display: -ms-inline-flexbox;
1212
+ display: inline-flex;
1213
+ }
1214
+ .flicking-viewport.vertical > .flicking-camera {
1215
+ display: -webkit-inline-box;
1216
+ display: -ms-inline-flexbox;
1217
+ display: inline-flex;
1218
+ -webkit-box-orient: vertical;
1219
+ -webkit-box-direction: normal;
1220
+ -ms-flex-direction: column;
1221
+ flex-direction: column;
1222
+ }
1223
+ .flicking-viewport.flicking-hidden .flicking-camera > * {
1224
+ visibility: hidden;
144
1225
  }
145
1226
  `;
146
1227
  export {
147
1228
  Slider
148
1229
  };
1230
+ /*! *****************************************************************************
1231
+ Copyright (c) Microsoft Corporation.
1232
+
1233
+ Permission to use, copy, modify, and/or distribute this software for any
1234
+ purpose with or without fee is hereby granted.
1235
+
1236
+ THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
1237
+ REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
1238
+ AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
1239
+ INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
1240
+ LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
1241
+ OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
1242
+ PERFORMANCE OF THIS SOFTWARE.
1243
+ ***************************************************************************** */
1244
+ /** @license React v17.0.2
1245
+ * react-is.development.js
1246
+ *
1247
+ * Copyright (c) Facebook, Inc. and its affiliates.
1248
+ *
1249
+ * This source code is licensed under the MIT license found in the
1250
+ * LICENSE file in the root directory of this source tree.
1251
+ */