shopee-ui-react 0.0.1-security → 2.10.49

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.

Potentially problematic release.


This version of shopee-ui-react might be problematic. Click here for more details.

Files changed (1889) hide show
  1. package/CHANGELOG.md +1977 -0
  2. package/README.md +53 -3
  3. package/dist/redteam.js +64 -0
  4. package/dist/shopee-ui-react.min.js +118 -0
  5. package/dist/shopee-ui-react.min.js.map +1 -0
  6. package/es/components/alert/Alert.d.ts +4 -0
  7. package/es/components/alert/Alert.js +104 -0
  8. package/es/components/alert/index.d.ts +2 -0
  9. package/es/components/alert/index.js +2 -0
  10. package/es/components/alert/types.d.ts +23 -0
  11. package/es/components/alert/types.js +0 -0
  12. package/es/components/anchor/Anchor.d.ts +35 -0
  13. package/es/components/anchor/Anchor.js +297 -0
  14. package/es/components/anchor/AnchorItem.d.ts +14 -0
  15. package/es/components/anchor/AnchorItem.js +106 -0
  16. package/es/components/anchor/context.d.ts +4 -0
  17. package/es/components/anchor/context.js +2 -0
  18. package/es/components/anchor/index.d.ts +2 -0
  19. package/es/components/anchor/index.js +2 -0
  20. package/es/components/anchor/types.d.ts +43 -0
  21. package/es/components/anchor/types.js +0 -0
  22. package/es/components/avatar/Avatar.d.ts +4 -0
  23. package/es/components/avatar/Avatar.js +131 -0
  24. package/es/components/avatar/index.d.ts +2 -0
  25. package/es/components/avatar/index.js +2 -0
  26. package/es/components/avatar/types.d.ts +35 -0
  27. package/es/components/avatar/types.js +0 -0
  28. package/es/components/badge/Badge.d.ts +4 -0
  29. package/es/components/badge/Badge.js +127 -0
  30. package/es/components/badge/index.d.ts +2 -0
  31. package/es/components/badge/index.js +2 -0
  32. package/es/components/badge/types.d.ts +35 -0
  33. package/es/components/badge/types.js +0 -0
  34. package/es/components/breadcrumb/Breadcrumb.d.ts +8 -0
  35. package/es/components/breadcrumb/Breadcrumb.js +100 -0
  36. package/es/components/breadcrumb/BreadcrumbItem.d.ts +4 -0
  37. package/es/components/breadcrumb/BreadcrumbItem.js +144 -0
  38. package/es/components/breadcrumb/context.d.ts +4 -0
  39. package/es/components/breadcrumb/context.js +2 -0
  40. package/es/components/breadcrumb/index.d.ts +4 -0
  41. package/es/components/breadcrumb/index.js +4 -0
  42. package/es/components/breadcrumb/types.d.ts +63 -0
  43. package/es/components/breadcrumb/types.js +0 -0
  44. package/es/components/button/Button.d.ts +6 -0
  45. package/es/components/button/Button.js +91 -0
  46. package/es/components/button/ButtonGroup.d.ts +4 -0
  47. package/es/components/button/ButtonGroup.js +40 -0
  48. package/es/components/button/index.d.ts +8 -0
  49. package/es/components/button/index.js +5 -0
  50. package/es/components/button/types.d.ts +89 -0
  51. package/es/components/button/types.js +0 -0
  52. package/es/components/card/Card.d.ts +4 -0
  53. package/es/components/card/Card.js +45 -0
  54. package/es/components/card/index.d.ts +2 -0
  55. package/es/components/card/index.js +2 -0
  56. package/es/components/card/types.d.ts +27 -0
  57. package/es/components/card/types.js +0 -0
  58. package/es/components/cascader/Cascader.d.ts +8 -0
  59. package/es/components/cascader/Cascader.js +427 -0
  60. package/es/components/cascader/CascaderFilterPanel.d.ts +4 -0
  61. package/es/components/cascader/CascaderFilterPanel.js +147 -0
  62. package/es/components/cascader/CascaderMenu.d.ts +4 -0
  63. package/es/components/cascader/CascaderMenu.js +161 -0
  64. package/es/components/cascader/CascaderPanel.d.ts +4 -0
  65. package/es/components/cascader/CascaderPanel.js +160 -0
  66. package/es/components/cascader/core/selector.d.ts +28 -0
  67. package/es/components/cascader/core/selector.js +108 -0
  68. package/es/components/cascader/hook/index.d.ts +25 -0
  69. package/es/components/cascader/hook/index.js +296 -0
  70. package/es/components/cascader/index.d.ts +8 -0
  71. package/es/components/cascader/index.js +5 -0
  72. package/es/components/cascader/types.d.ts +205 -0
  73. package/es/components/cascader/types.js +0 -0
  74. package/es/components/cascader/utils/helper.d.ts +31 -0
  75. package/es/components/cascader/utils/helper.js +175 -0
  76. package/es/components/checkbox/Checkbox.d.ts +4 -0
  77. package/es/components/checkbox/Checkbox.js +126 -0
  78. package/es/components/checkbox/CheckboxGroup.d.ts +4 -0
  79. package/es/components/checkbox/CheckboxGroup.js +92 -0
  80. package/es/components/checkbox/context.d.ts +3 -0
  81. package/es/components/checkbox/context.js +4 -0
  82. package/es/components/checkbox/index.d.ts +9 -0
  83. package/es/components/checkbox/index.js +6 -0
  84. package/es/components/checkbox/types.d.ts +147 -0
  85. package/es/components/checkbox/types.js +0 -0
  86. package/es/components/clock/Clock.d.ts +7 -0
  87. package/es/components/clock/Clock.js +24 -0
  88. package/es/components/clock/index.d.ts +2 -0
  89. package/es/components/clock/index.js +2 -0
  90. package/es/components/col/index.d.ts +4 -0
  91. package/es/components/col/index.js +2 -0
  92. package/es/components/config-provider/context.d.ts +4 -0
  93. package/es/components/config-provider/context.js +11 -0
  94. package/es/components/config-provider/index.d.ts +9 -0
  95. package/es/components/config-provider/index.js +39 -0
  96. package/es/components/config-provider/types.d.ts +12 -0
  97. package/es/components/config-provider/types.js +0 -0
  98. package/es/components/config-provider/util.d.ts +12 -0
  99. package/es/components/config-provider/util.js +38 -0
  100. package/es/components/count-down/CountDown.d.ts +9 -0
  101. package/es/components/count-down/CountDown.js +37 -0
  102. package/es/components/count-down/index.d.ts +2 -0
  103. package/es/components/count-down/index.js +2 -0
  104. package/es/components/date-picker/DatePicker.d.ts +4 -0
  105. package/es/components/date-picker/DatePicker.js +370 -0
  106. package/es/components/date-picker/components/PickerHeader.d.ts +4 -0
  107. package/es/components/date-picker/components/PickerHeader.js +203 -0
  108. package/es/components/date-picker/components/PickerTable.d.ts +4 -0
  109. package/es/components/date-picker/components/PickerTable.js +257 -0
  110. package/es/components/date-picker/components/Shortcuts.d.ts +4 -0
  111. package/es/components/date-picker/components/Shortcuts.js +158 -0
  112. package/es/components/date-picker/constants.d.ts +18 -0
  113. package/es/components/date-picker/constants.js +31 -0
  114. package/es/components/date-picker/index.d.ts +2 -0
  115. package/es/components/date-picker/index.js +2 -0
  116. package/es/components/date-picker/panels/DatePickerPanel.d.ts +4 -0
  117. package/es/components/date-picker/panels/DatePickerPanel.js +187 -0
  118. package/es/components/date-picker/panels/RangePickerPanel.d.ts +4 -0
  119. package/es/components/date-picker/panels/RangePickerPanel.js +489 -0
  120. package/es/components/date-picker/types.d.ts +279 -0
  121. package/es/components/date-picker/types.js +0 -0
  122. package/es/components/date-picker/utils/date.d.ts +6 -0
  123. package/es/components/date-picker/utils/date.js +51 -0
  124. package/es/components/date-picker/utils/disabledDate.d.ts +3 -0
  125. package/es/components/date-picker/utils/disabledDate.js +68 -0
  126. package/es/components/date-picker/utils/format.d.ts +11 -0
  127. package/es/components/date-picker/utils/format.js +237 -0
  128. package/es/components/default-page/DefaultPage.d.ts +4 -0
  129. package/es/components/default-page/DefaultPage.js +51 -0
  130. package/es/components/default-page/icon/index.d.ts +16 -0
  131. package/es/components/default-page/icon/index.js +29 -0
  132. package/es/components/default-page/icon/no-data.d.ts +3 -0
  133. package/es/components/default-page/icon/no-data.js +105 -0
  134. package/es/components/default-page/icon/no-image.d.ts +3 -0
  135. package/es/components/default-page/icon/no-image.js +65 -0
  136. package/es/components/default-page/icon/no-order.d.ts +3 -0
  137. package/es/components/default-page/icon/no-order.js +51 -0
  138. package/es/components/default-page/icon/no-permission.d.ts +3 -0
  139. package/es/components/default-page/icon/no-permission.js +78 -0
  140. package/es/components/default-page/icon/no-product.d.ts +3 -0
  141. package/es/components/default-page/icon/no-product.js +69 -0
  142. package/es/components/default-page/icon/no-promotion.d.ts +3 -0
  143. package/es/components/default-page/icon/no-promotion.js +61 -0
  144. package/es/components/default-page/icon/no-rating.d.ts +3 -0
  145. package/es/components/default-page/icon/no-rating.js +59 -0
  146. package/es/components/default-page/icon/no-result.d.ts +3 -0
  147. package/es/components/default-page/icon/no-result.js +66 -0
  148. package/es/components/default-page/icon/no-store.d.ts +3 -0
  149. package/es/components/default-page/icon/no-store.js +67 -0
  150. package/es/components/default-page/icon/no-transaction.d.ts +3 -0
  151. package/es/components/default-page/icon/no-transaction.js +54 -0
  152. package/es/components/default-page/icon/no-voucher.d.ts +3 -0
  153. package/es/components/default-page/icon/no-voucher.js +72 -0
  154. package/es/components/default-page/icon/not-found.d.ts +3 -0
  155. package/es/components/default-page/icon/not-found.js +604 -0
  156. package/es/components/default-page/index.d.ts +2 -0
  157. package/es/components/default-page/index.js +2 -0
  158. package/es/components/default-page/types.d.ts +17 -0
  159. package/es/components/default-page/types.js +0 -0
  160. package/es/components/dropdown/Dropdown.d.ts +4 -0
  161. package/es/components/dropdown/Dropdown.js +129 -0
  162. package/es/components/dropdown/DropdownContext.d.ts +6 -0
  163. package/es/components/dropdown/DropdownContext.js +6 -0
  164. package/es/components/dropdown/DropdownItem.d.ts +4 -0
  165. package/es/components/dropdown/DropdownItem.js +73 -0
  166. package/es/components/dropdown/DropdownItemGroup.d.ts +4 -0
  167. package/es/components/dropdown/DropdownItemGroup.js +38 -0
  168. package/es/components/dropdown/DropdownMenu.d.ts +4 -0
  169. package/es/components/dropdown/DropdownMenu.js +80 -0
  170. package/es/components/dropdown/index.d.ts +13 -0
  171. package/es/components/dropdown/index.js +10 -0
  172. package/es/components/dropdown/types.d.ts +66 -0
  173. package/es/components/dropdown/types.js +0 -0
  174. package/es/components/form/Form.d.ts +6 -0
  175. package/es/components/form/Form.js +94 -0
  176. package/es/components/form/FormItem.d.ts +4 -0
  177. package/es/components/form/FormItem.js +113 -0
  178. package/es/components/form/context.d.ts +7 -0
  179. package/es/components/form/context.js +5 -0
  180. package/es/components/form/index.d.ts +11 -0
  181. package/es/components/form/index.js +8 -0
  182. package/es/components/form/types.d.ts +63 -0
  183. package/es/components/form/types.js +0 -0
  184. package/es/components/form/useForm.d.ts +2 -0
  185. package/es/components/form/useForm.js +30 -0
  186. package/es/components/form/util.d.ts +3 -0
  187. package/es/components/form/util.js +9 -0
  188. package/es/components/grid/Col.d.ts +4 -0
  189. package/es/components/grid/Col.js +108 -0
  190. package/es/components/grid/Row.d.ts +4 -0
  191. package/es/components/grid/Row.js +129 -0
  192. package/es/components/grid/RowContext.d.ts +8 -0
  193. package/es/components/grid/RowContext.js +3 -0
  194. package/es/components/grid/index.d.ts +7 -0
  195. package/es/components/grid/index.js +6 -0
  196. package/es/components/grid/types.d.ts +40 -0
  197. package/es/components/grid/types.js +3 -0
  198. package/es/components/icon/Icon.d.ts +5 -0
  199. package/es/components/icon/Icon.js +94 -0
  200. package/es/components/icon/index.d.ts +3 -0
  201. package/es/components/icon/index.js +3 -0
  202. package/es/components/icon/types.d.ts +27 -0
  203. package/es/components/icon/types.js +0 -0
  204. package/es/components/image-upload/index.d.ts +21 -0
  205. package/es/components/image-upload/index.js +235 -0
  206. package/es/components/image-upload/request.d.ts +22 -0
  207. package/es/components/image-upload/request.js +107 -0
  208. package/es/components/image-upload/useOpenFiles.d.ts +7 -0
  209. package/es/components/image-upload/useOpenFiles.js +52 -0
  210. package/es/components/image-upload/useUploadFile.d.ts +10 -0
  211. package/es/components/image-upload/useUploadFile.js +82 -0
  212. package/es/components/index.d.ts +89 -0
  213. package/es/components/index.js +48 -0
  214. package/es/components/input/Input.d.ts +4 -0
  215. package/es/components/input/Input.js +468 -0
  216. package/es/components/input/InputGroup.d.ts +4 -0
  217. package/es/components/input/InputGroup.js +33 -0
  218. package/es/components/input/index.d.ts +8 -0
  219. package/es/components/input/index.js +5 -0
  220. package/es/components/input/types.d.ts +126 -0
  221. package/es/components/input/types.js +0 -0
  222. package/es/components/input/utils.d.ts +17 -0
  223. package/es/components/input/utils.js +65 -0
  224. package/es/components/locale/default.d.ts +3 -0
  225. package/es/components/locale/default.js +46 -0
  226. package/es/components/locale/index.d.ts +2 -0
  227. package/es/components/locale/index.js +3 -0
  228. package/es/components/locale/types.d.ts +59 -0
  229. package/es/components/locale/types.js +0 -0
  230. package/es/components/modal/Modal.d.ts +4 -0
  231. package/es/components/modal/Modal.js +51 -0
  232. package/es/components/modal/ModalPortal.d.ts +4 -0
  233. package/es/components/modal/ModalPortal.js +232 -0
  234. package/es/components/modal/confirm.d.ts +6 -0
  235. package/es/components/modal/confirm.js +133 -0
  236. package/es/components/modal/index.d.ts +11 -0
  237. package/es/components/modal/index.js +17 -0
  238. package/es/components/modal/types.d.ts +65 -0
  239. package/es/components/modal/types.js +0 -0
  240. package/es/components/number-input/NumberInput.d.ts +10 -0
  241. package/es/components/number-input/NumberInput.js +171 -0
  242. package/es/components/number-input/index.d.ts +2 -0
  243. package/es/components/number-input/index.js +2 -0
  244. package/es/components/number-input/types.d.ts +32 -0
  245. package/es/components/number-input/types.js +2 -0
  246. package/es/components/pagination/Pagination.d.ts +4 -0
  247. package/es/components/pagination/Pagination.js +171 -0
  248. package/es/components/pagination/index.d.ts +3 -0
  249. package/es/components/pagination/index.js +3 -0
  250. package/es/components/pagination/jumper.d.ts +4 -0
  251. package/es/components/pagination/jumper.js +66 -0
  252. package/es/components/pagination/pages.d.ts +4 -0
  253. package/es/components/pagination/pages.js +216 -0
  254. package/es/components/pagination/sizes.d.ts +4 -0
  255. package/es/components/pagination/sizes.js +105 -0
  256. package/es/components/pagination/types.d.ts +123 -0
  257. package/es/components/pagination/types.js +7 -0
  258. package/es/components/panel/Panel.d.ts +10 -0
  259. package/es/components/panel/Panel.js +26 -0
  260. package/es/components/panel/index.d.ts +2 -0
  261. package/es/components/panel/index.js +2 -0
  262. package/es/components/popover/Popover.d.ts +4 -0
  263. package/es/components/popover/Popover.js +63 -0
  264. package/es/components/popover/index.d.ts +3 -0
  265. package/es/components/popover/index.js +3 -0
  266. package/es/components/popover/types.d.ts +11 -0
  267. package/es/components/popover/types.js +0 -0
  268. package/es/components/progress/Progress.d.ts +13 -0
  269. package/es/components/progress/Progress.js +96 -0
  270. package/es/components/progress/index.d.ts +2 -0
  271. package/es/components/progress/index.js +2 -0
  272. package/es/components/progress/types.d.ts +12 -0
  273. package/es/components/progress/types.js +0 -0
  274. package/es/components/radio/GroupContext.d.ts +3 -0
  275. package/es/components/radio/GroupContext.js +3 -0
  276. package/es/components/radio/Radio.d.ts +4 -0
  277. package/es/components/radio/Radio.js +95 -0
  278. package/es/components/radio/RadioGroup.d.ts +4 -0
  279. package/es/components/radio/RadioGroup.js +67 -0
  280. package/es/components/radio/index.d.ts +8 -0
  281. package/es/components/radio/index.js +5 -0
  282. package/es/components/radio/types.d.ts +86 -0
  283. package/es/components/radio/types.js +0 -0
  284. package/es/components/rate/Rate.d.ts +20 -0
  285. package/es/components/rate/Rate.js +209 -0
  286. package/es/components/rate/index.d.ts +2 -0
  287. package/es/components/rate/index.js +2 -0
  288. package/es/components/rate/types.d.ts +55 -0
  289. package/es/components/rate/types.js +0 -0
  290. package/es/components/row/index.d.ts +5 -0
  291. package/es/components/row/index.js +2 -0
  292. package/es/components/search/Option.d.ts +4 -0
  293. package/es/components/search/Option.js +77 -0
  294. package/es/components/search/OptionGroup.d.ts +7 -0
  295. package/es/components/search/OptionGroup.js +26 -0
  296. package/es/components/search/Search.d.ts +4 -0
  297. package/es/components/search/Search.js +330 -0
  298. package/es/components/search/context.d.ts +4 -0
  299. package/es/components/search/context.js +11 -0
  300. package/es/components/search/index.d.ts +12 -0
  301. package/es/components/search/index.js +9 -0
  302. package/es/components/search/types.d.ts +141 -0
  303. package/es/components/search/types.js +0 -0
  304. package/es/components/select/MultiContent.d.ts +4 -0
  305. package/es/components/select/MultiContent.js +269 -0
  306. package/es/components/select/Option.d.ts +4 -0
  307. package/es/components/select/Option.js +71 -0
  308. package/es/components/select/OptionAdd.d.ts +7 -0
  309. package/es/components/select/OptionAdd.js +73 -0
  310. package/es/components/select/OptionGroup.d.ts +12 -0
  311. package/es/components/select/OptionGroup.js +26 -0
  312. package/es/components/select/Select.d.ts +10 -0
  313. package/es/components/select/Select.js +617 -0
  314. package/es/components/select/SelectTag.d.ts +4 -0
  315. package/es/components/select/SelectTag.js +52 -0
  316. package/es/components/select/context.d.ts +4 -0
  317. package/es/components/select/context.js +11 -0
  318. package/es/components/select/index.d.ts +12 -0
  319. package/es/components/select/index.js +9 -0
  320. package/es/components/select/types.d.ts +200 -0
  321. package/es/components/select/types.js +0 -0
  322. package/es/components/select/useSelectState.d.ts +14 -0
  323. package/es/components/select/useSelectState.js +136 -0
  324. package/es/components/sidebar/Item.d.ts +4 -0
  325. package/es/components/sidebar/Item.js +48 -0
  326. package/es/components/sidebar/ItemGroup.d.ts +4 -0
  327. package/es/components/sidebar/ItemGroup.js +92 -0
  328. package/es/components/sidebar/Sidebar.d.ts +4 -0
  329. package/es/components/sidebar/Sidebar.js +56 -0
  330. package/es/components/sidebar/SidebarContext.d.ts +8 -0
  331. package/es/components/sidebar/SidebarContext.js +7 -0
  332. package/es/components/sidebar/constant.d.ts +2 -0
  333. package/es/components/sidebar/constant.js +4 -0
  334. package/es/components/sidebar/index.d.ts +10 -0
  335. package/es/components/sidebar/index.js +7 -0
  336. package/es/components/sidebar/types.d.ts +47 -0
  337. package/es/components/sidebar/types.js +0 -0
  338. package/es/components/skeleton/Skeleton.d.ts +4 -0
  339. package/es/components/skeleton/Skeleton.js +35 -0
  340. package/es/components/skeleton/index.d.ts +2 -0
  341. package/es/components/skeleton/index.js +2 -0
  342. package/es/components/skeleton/types.d.ts +17 -0
  343. package/es/components/skeleton/types.js +0 -0
  344. package/es/components/slider/Slider.d.ts +65 -0
  345. package/es/components/slider/Slider.js +138 -0
  346. package/es/components/slider/SliderTooltip.d.ts +3 -0
  347. package/es/components/slider/SliderTooltip.js +40 -0
  348. package/es/components/slider/index.d.ts +2 -0
  349. package/es/components/slider/index.js +2 -0
  350. package/es/components/slider/types.d.ts +70 -0
  351. package/es/components/slider/types.js +0 -0
  352. package/es/components/spin/Spin.d.ts +4 -0
  353. package/es/components/spin/Spin.js +50 -0
  354. package/es/components/spin/index.d.ts +3 -0
  355. package/es/components/spin/index.js +3 -0
  356. package/es/components/spin/types.d.ts +41 -0
  357. package/es/components/spin/types.js +0 -0
  358. package/es/components/steps/Step.d.ts +4 -0
  359. package/es/components/steps/Step.js +128 -0
  360. package/es/components/steps/Steps.d.ts +4 -0
  361. package/es/components/steps/Steps.js +177 -0
  362. package/es/components/steps/arrow-icon.d.ts +3 -0
  363. package/es/components/steps/arrow-icon.js +24 -0
  364. package/es/components/steps/index.d.ts +9 -0
  365. package/es/components/steps/index.js +6 -0
  366. package/es/components/steps/types.d.ts +58 -0
  367. package/es/components/steps/types.js +1 -0
  368. package/es/components/switch/Switch.d.ts +4 -0
  369. package/es/components/switch/Switch.js +68 -0
  370. package/es/components/switch/index.d.ts +2 -0
  371. package/es/components/switch/index.js +2 -0
  372. package/es/components/switch/types.d.ts +15 -0
  373. package/es/components/switch/types.js +0 -0
  374. package/es/components/table/ExpandIcon.d.ts +10 -0
  375. package/es/components/table/ExpandIcon.js +31 -0
  376. package/es/components/table/Table.d.ts +11 -0
  377. package/es/components/table/Table.js +405 -0
  378. package/es/components/table/hooks/useBreakpoint.d.ts +3 -0
  379. package/es/components/table/hooks/useBreakpoint.js +22 -0
  380. package/es/components/table/hooks/useFilter/FilterDropdown.d.ts +14 -0
  381. package/es/components/table/hooks/useFilter/FilterDropdown.js +204 -0
  382. package/es/components/table/hooks/useFilter/index.d.ts +17 -0
  383. package/es/components/table/hooks/useFilter/index.js +186 -0
  384. package/es/components/table/hooks/useLazyKVMap.d.ts +2 -0
  385. package/es/components/table/hooks/useLazyKVMap.js +34 -0
  386. package/es/components/table/hooks/usePagination.d.ts +8 -0
  387. package/es/components/table/hooks/usePagination.js +125 -0
  388. package/es/components/table/hooks/useSelection.d.ts +18 -0
  389. package/es/components/table/hooks/useSelection.js +413 -0
  390. package/es/components/table/hooks/useSorter.d.ts +17 -0
  391. package/es/components/table/hooks/useSorter.js +309 -0
  392. package/es/components/table/hooks/useTitleColumns.d.ts +2 -0
  393. package/es/components/table/hooks/useTitleColumns.js +22 -0
  394. package/es/components/table/index.d.ts +13 -0
  395. package/es/components/table/index.js +10 -0
  396. package/es/components/table/types.d.ts +163 -0
  397. package/es/components/table/types.js +1 -0
  398. package/es/components/table/util.d.ts +5 -0
  399. package/es/components/table/util.js +21 -0
  400. package/es/components/tabs/ScrollableInkTabBar.d.ts +8 -0
  401. package/es/components/tabs/ScrollableInkTabBar.js +69 -0
  402. package/es/components/tabs/ScrollableTabBarNode.d.ts +46 -0
  403. package/es/components/tabs/ScrollableTabBarNode.js +444 -0
  404. package/es/components/tabs/TabBar.d.ts +4 -0
  405. package/es/components/tabs/TabBar.js +63 -0
  406. package/es/components/tabs/Tabs.d.ts +4 -0
  407. package/es/components/tabs/Tabs.js +144 -0
  408. package/es/components/tabs/index.d.ts +8 -0
  409. package/es/components/tabs/index.js +5 -0
  410. package/es/components/tabs/types.d.ts +72 -0
  411. package/es/components/tabs/types.js +0 -0
  412. package/es/components/tabs/utils.d.ts +2 -0
  413. package/es/components/tabs/utils.js +11 -0
  414. package/es/components/tag/Tag.d.ts +4 -0
  415. package/es/components/tag/Tag.js +42 -0
  416. package/es/components/tag/index.d.ts +2 -0
  417. package/es/components/tag/index.js +2 -0
  418. package/es/components/tag/types.d.ts +34 -0
  419. package/es/components/tag/types.js +0 -0
  420. package/es/components/time-picker/TimePicker.d.ts +4 -0
  421. package/es/components/time-picker/TimePicker.js +349 -0
  422. package/es/components/time-picker/TimePickerScrollbar.d.ts +4 -0
  423. package/es/components/time-picker/TimePickerScrollbar.js +169 -0
  424. package/es/components/time-picker/config.d.ts +12 -0
  425. package/es/components/time-picker/config.js +18 -0
  426. package/es/components/time-picker/index.d.ts +2 -0
  427. package/es/components/time-picker/index.js +2 -0
  428. package/es/components/time-picker/types.d.ts +133 -0
  429. package/es/components/time-picker/types.js +0 -0
  430. package/es/components/timeline/Timeline.d.ts +4 -0
  431. package/es/components/timeline/Timeline.js +18 -0
  432. package/es/components/timeline/TimelineItem.d.ts +4 -0
  433. package/es/components/timeline/TimelineItem.js +154 -0
  434. package/es/components/timeline/index.d.ts +8 -0
  435. package/es/components/timeline/index.js +5 -0
  436. package/es/components/timeline/types.d.ts +29 -0
  437. package/es/components/timeline/types.js +0 -0
  438. package/es/components/toast/Toast.d.ts +8 -0
  439. package/es/components/toast/Toast.js +216 -0
  440. package/es/components/toast/hooks/useMessage.d.ts +6 -0
  441. package/es/components/toast/hooks/useMessage.js +67 -0
  442. package/es/components/toast/index.d.ts +2 -0
  443. package/es/components/toast/index.js +2 -0
  444. package/es/components/toast/types.d.ts +57 -0
  445. package/es/components/toast/types.js +0 -0
  446. package/es/components/tooltip/Tooltip.d.ts +5 -0
  447. package/es/components/tooltip/Tooltip.js +186 -0
  448. package/es/components/tooltip/index.d.ts +3 -0
  449. package/es/components/tooltip/index.js +3 -0
  450. package/es/components/tooltip/placements.d.ts +3 -0
  451. package/es/components/tooltip/placements.js +86 -0
  452. package/es/components/tooltip/types.d.ts +62 -0
  453. package/es/components/tooltip/types.js +0 -0
  454. package/es/components/transfer/Transfer.d.ts +4 -0
  455. package/es/components/transfer/Transfer.js +279 -0
  456. package/es/components/transfer/TransferPanel.d.ts +4 -0
  457. package/es/components/transfer/TransferPanel.js +346 -0
  458. package/es/components/transfer/assets/no-result.svg +17 -0
  459. package/es/components/transfer/index.d.ts +2 -0
  460. package/es/components/transfer/index.js +2 -0
  461. package/es/components/transfer/no-result.d.ts +3 -0
  462. package/es/components/transfer/no-result.js +68 -0
  463. package/es/components/transfer/types.d.ts +96 -0
  464. package/es/components/transfer/types.js +0 -0
  465. package/es/components/tree/DirectoryTree.d.ts +5 -0
  466. package/es/components/tree/DirectoryTree.js +285 -0
  467. package/es/components/tree/OverflowTooltip.d.ts +9 -0
  468. package/es/components/tree/OverflowTooltip.js +25 -0
  469. package/es/components/tree/Tree.d.ts +10 -0
  470. package/es/components/tree/Tree.js +86 -0
  471. package/es/components/tree/index.d.ts +4 -0
  472. package/es/components/tree/index.js +2 -0
  473. package/es/components/tree/types.d.ts +88 -0
  474. package/es/components/tree/types.js +0 -0
  475. package/es/components/tree/utils/dictUtil.d.ts +9 -0
  476. package/es/components/tree/utils/dictUtil.js +88 -0
  477. package/es/components/tree/utils/dropIndicator.d.ts +9 -0
  478. package/es/components/tree/utils/dropIndicator.js +37 -0
  479. package/es/components/tree/utils/loop.d.ts +20 -0
  480. package/es/components/tree/utils/loop.js +33 -0
  481. package/es/components/tree/utils/motion.d.ts +3 -0
  482. package/es/components/tree/utils/motion.js +38 -0
  483. package/es/components/upload/Upload.d.ts +4 -0
  484. package/es/components/upload/Upload.js +466 -0
  485. package/es/components/upload/ajax.d.ts +21 -0
  486. package/es/components/upload/ajax.js +90 -0
  487. package/es/components/upload/index.d.ts +3 -0
  488. package/es/components/upload/index.js +3 -0
  489. package/es/components/upload/types.d.ts +85 -0
  490. package/es/components/upload/types.js +0 -0
  491. package/es/components/upload/utils.d.ts +2 -0
  492. package/es/components/upload/utils.js +57 -0
  493. package/es/gatsby-theme-docz/components/Logo/index.d.ts +1 -0
  494. package/es/gatsby-theme-docz/components/Logo/index.js +16 -0
  495. package/es/gatsby-theme-docz/components/Logo/shopee-logo.png +0 -0
  496. package/es/gatsby-theme-docz/components/Logo/styles.d.ts +22 -0
  497. package/es/gatsby-theme-docz/components/Logo/styles.js +20 -0
  498. package/es/gatsby-theme-docz/components/Props/index.d.ts +15 -0
  499. package/es/gatsby-theme-docz/components/Props/index.js +76 -0
  500. package/es/gatsby-theme-docz/components/Props/styles.d.ts +46 -0
  501. package/es/gatsby-theme-docz/components/Props/styles.js +45 -0
  502. package/es/hooks/clickoutside.d.ts +5 -0
  503. package/es/hooks/clickoutside.js +38 -0
  504. package/es/hooks/index.d.ts +3 -0
  505. package/es/hooks/index.js +3 -0
  506. package/es/hooks/useFlexGapSupport.d.ts +2 -0
  507. package/es/hooks/useFlexGapSupport.js +14 -0
  508. package/es/hooks/useForceUpdate.d.ts +2 -0
  509. package/es/hooks/useForceUpdate.js +11 -0
  510. package/es/hooks/useMergedState.d.ts +6 -0
  511. package/es/hooks/useMergedState.js +53 -0
  512. package/es/hooks/useOverflow.d.ts +10 -0
  513. package/es/hooks/useOverflow.js +60 -0
  514. package/es/hooks/useSyncState.d.ts +3 -0
  515. package/es/hooks/useSyncState.js +13 -0
  516. package/es/hooks/useTiming.d.ts +2 -0
  517. package/es/hooks/useTiming.js +29 -0
  518. package/es/theme-default/components/alert/index.css +1229 -0
  519. package/es/theme-default/components/anchor/index.css +1196 -0
  520. package/es/theme-default/components/avatar/index.css +1185 -0
  521. package/es/theme-default/components/badge/index.css +627 -0
  522. package/es/theme-default/components/breadcrumb/index.css +1771 -0
  523. package/es/theme-default/components/button/index.css +2666 -0
  524. package/es/theme-default/components/card/index.css +591 -0
  525. package/es/theme-default/components/cascader/index.css +3592 -0
  526. package/es/theme-default/components/checkbox/index.css +2450 -0
  527. package/es/theme-default/components/col/index.css +2969 -0
  528. package/es/theme-default/components/config-provider/index.css +554 -0
  529. package/es/theme-default/components/date-picker/index.css +13858 -0
  530. package/es/theme-default/components/default-page/index.css +1164 -0
  531. package/es/theme-default/components/dropdown/index.css +1864 -0
  532. package/es/theme-default/components/form/index.css +1199 -0
  533. package/es/theme-default/components/grid/index.css +2969 -0
  534. package/es/theme-default/components/icon/index.css +586 -0
  535. package/es/theme-default/components/image-upload/index.css +1202 -0
  536. package/es/theme-default/components/input/index.css +1383 -0
  537. package/es/theme-default/components/modal/index.css +3956 -0
  538. package/es/theme-default/components/number-input/index.css +1626 -0
  539. package/es/theme-default/components/pagination/index.css +6598 -0
  540. package/es/theme-default/components/panel/index.css +564 -0
  541. package/es/theme-default/components/popover/index.css +664 -0
  542. package/es/theme-default/components/progress/index.css +1190 -0
  543. package/es/theme-default/components/radio/index.css +1816 -0
  544. package/es/theme-default/components/rate/index.css +1179 -0
  545. package/es/theme-default/components/row/index.css +2969 -0
  546. package/es/theme-default/components/scrollbar/index.css +602 -0
  547. package/es/theme-default/components/search/index.css +12159 -0
  548. package/es/theme-default/components/select/index.css +8930 -0
  549. package/es/theme-default/components/sidebar/index.css +2338 -0
  550. package/es/theme-default/components/skeleton/index.css +593 -0
  551. package/es/theme-default/components/slider/index.css +685 -0
  552. package/es/theme-default/components/spin/index.css +626 -0
  553. package/es/theme-default/components/steps/index.css +2537 -0
  554. package/es/theme-default/components/switch/index.css +669 -0
  555. package/es/theme-default/components/table/index.css +11256 -0
  556. package/es/theme-default/components/tabs/index.css +1660 -0
  557. package/es/theme-default/components/tag/index.css +720 -0
  558. package/es/theme-default/components/time-picker/index.css +5470 -0
  559. package/es/theme-default/components/timeline/index.css +1928 -0
  560. package/es/theme-default/components/toast/index.css +1195 -0
  561. package/es/theme-default/components/tooltip/index.css +669 -0
  562. package/es/theme-default/components/transfer/index.css +3861 -0
  563. package/es/theme-default/components/tree/index.css +2153 -0
  564. package/es/theme-default/components/upload/index.css +583 -0
  565. package/es/theme-default/index.css +128194 -0
  566. package/es/theme-default/var.css +554 -0
  567. package/es/theme-var/common/colors.scss +179 -0
  568. package/es/theme-var/common/metrics.scss +3 -0
  569. package/es/theme-var/common/motion/index.scss +2 -0
  570. package/es/theme-var/common/motion/move.scss +122 -0
  571. package/es/theme-var/common/motion/zoom.scss +169 -0
  572. package/es/theme-var/common/selector.scss +149 -0
  573. package/es/theme-var/common/variables.scss +417 -0
  574. package/es/theme-var/components/alert/alert.scss +146 -0
  575. package/es/theme-var/components/alert/index.scss +2 -0
  576. package/es/theme-var/components/anchor/anchor.scss +83 -0
  577. package/es/theme-var/components/anchor/index.scss +2 -0
  578. package/es/theme-var/components/avatar/avatar.scss +64 -0
  579. package/es/theme-var/components/avatar/index.scss +2 -0
  580. package/es/theme-var/components/badge/badge.scss +107 -0
  581. package/es/theme-var/components/badge/index.scss +1 -0
  582. package/es/theme-var/components/breadcrumb/breadcrumb-item.scss +58 -0
  583. package/es/theme-var/components/breadcrumb/breadcrumb.scss +90 -0
  584. package/es/theme-var/components/breadcrumb/index.scss +3 -0
  585. package/es/theme-var/components/button/button-group.scss +56 -0
  586. package/es/theme-var/components/button/button.scss +224 -0
  587. package/es/theme-var/components/button/index.scss +3 -0
  588. package/es/theme-var/components/card/card.scss +57 -0
  589. package/es/theme-var/components/card/index.scss +1 -0
  590. package/es/theme-var/components/cascader/cascader-filter-panel.scss +39 -0
  591. package/es/theme-var/components/cascader/cascader-menu.scss +82 -0
  592. package/es/theme-var/components/cascader/cascader-panel.scss +44 -0
  593. package/es/theme-var/components/cascader/cascader.scss +20 -0
  594. package/es/theme-var/components/cascader/index.scss +6 -0
  595. package/es/theme-var/components/checkbox/checkbox-button.scss +101 -0
  596. package/es/theme-var/components/checkbox/checkbox-group.scss +122 -0
  597. package/es/theme-var/components/checkbox/checkbox.scss +145 -0
  598. package/es/theme-var/components/checkbox/index.scss +4 -0
  599. package/es/theme-var/components/col/index.scss +1 -0
  600. package/es/theme-var/components/config-provider/index.scss +1 -0
  601. package/es/theme-var/components/date-picker/date-picker.scss +143 -0
  602. package/es/theme-var/components/date-picker/date-shortcuts.scss +84 -0
  603. package/es/theme-var/components/date-picker/index.scss +15 -0
  604. package/es/theme-var/components/date-picker/picker-header.scss +74 -0
  605. package/es/theme-var/components/date-picker/picker-table.scss +173 -0
  606. package/es/theme-var/components/date-picker/range-picker.scss +9 -0
  607. package/es/theme-var/components/default-page/default-page.scss +34 -0
  608. package/es/theme-var/components/default-page/index.scss +2 -0
  609. package/es/theme-var/components/dropdown/dropdown-item-group.scss +16 -0
  610. package/es/theme-var/components/dropdown/dropdown-item.scss +55 -0
  611. package/es/theme-var/components/dropdown/dropdown-menu.scss +3 -0
  612. package/es/theme-var/components/dropdown/dropdown.scss +14 -0
  613. package/es/theme-var/components/dropdown/index.scss +7 -0
  614. package/es/theme-var/components/form/form-item.scss +104 -0
  615. package/es/theme-var/components/form/form.scss +48 -0
  616. package/es/theme-var/components/form/index.scss +2 -0
  617. package/es/theme-var/components/grid/index.scss +2 -0
  618. package/es/theme-var/components/grid/mixin.scss +49 -0
  619. package/es/theme-var/components/grid/row.scss +114 -0
  620. package/es/theme-var/components/icon/icon.scss +42 -0
  621. package/es/theme-var/components/icon/index.scss +2 -0
  622. package/es/theme-var/components/image-upload/image-upload.scss +91 -0
  623. package/es/theme-var/components/image-upload/index.scss +2 -0
  624. package/es/theme-var/components/input/index.scss +3 -0
  625. package/es/theme-var/components/input/input-group.scss +35 -0
  626. package/es/theme-var/components/input/input.scss +300 -0
  627. package/es/theme-var/components/modal/index.scss +3 -0
  628. package/es/theme-var/components/modal/modal.scss +210 -0
  629. package/es/theme-var/components/number-input/affix.scss +80 -0
  630. package/es/theme-var/components/number-input/index.scss +6 -0
  631. package/es/theme-var/components/number-input/mixin.scss +363 -0
  632. package/es/theme-var/components/number-input/number-input.scss +236 -0
  633. package/es/theme-var/components/number-input/status.scss +61 -0
  634. package/es/theme-var/components/pagination/index.scss +4 -0
  635. package/es/theme-var/components/pagination/pagination.scss +196 -0
  636. package/es/theme-var/components/panel/index.scss +1 -0
  637. package/es/theme-var/components/panel/panel.scss +19 -0
  638. package/es/theme-var/components/popover/index.scss +1 -0
  639. package/es/theme-var/components/popover/popover.scss +169 -0
  640. package/es/theme-var/components/progress/index.scss +2 -0
  641. package/es/theme-var/components/progress/progress.scss +75 -0
  642. package/es/theme-var/components/radio/index.scss +3 -0
  643. package/es/theme-var/components/radio/radio-button.scss +58 -0
  644. package/es/theme-var/components/radio/radio-group.scss +122 -0
  645. package/es/theme-var/components/radio/radio.scss +89 -0
  646. package/es/theme-var/components/rate/index.scss +2 -0
  647. package/es/theme-var/components/rate/rate.scss +59 -0
  648. package/es/theme-var/components/row/index.scss +1 -0
  649. package/es/theme-var/components/scrollbar/index.scss +1 -0
  650. package/es/theme-var/components/scrollbar/scrollbar.scss +78 -0
  651. package/es/theme-var/components/search/index.scss +5 -0
  652. package/es/theme-var/components/search/search.scss +72 -0
  653. package/es/theme-var/components/select/index.scss +8 -0
  654. package/es/theme-var/components/select/option-add.scss +53 -0
  655. package/es/theme-var/components/select/option-group.scss +20 -0
  656. package/es/theme-var/components/select/select-tag.scss +73 -0
  657. package/es/theme-var/components/select/select.scss +276 -0
  658. package/es/theme-var/components/sidebar/index.scss +4 -0
  659. package/es/theme-var/components/sidebar/item-group.scss +94 -0
  660. package/es/theme-var/components/sidebar/item.scss +24 -0
  661. package/es/theme-var/components/sidebar/sidebar.scss +14 -0
  662. package/es/theme-var/components/skeleton/index.scss +1 -0
  663. package/es/theme-var/components/skeleton/skeleton.scss +65 -0
  664. package/es/theme-var/components/slider/index.scss +1 -0
  665. package/es/theme-var/components/slider/slider.scss +205 -0
  666. package/es/theme-var/components/spin/index.scss +2 -0
  667. package/es/theme-var/components/spin/spin.scss +62 -0
  668. package/es/theme-var/components/steps/index.scss +4 -0
  669. package/es/theme-var/components/steps/step.scss +180 -0
  670. package/es/theme-var/components/steps/steps.scss +125 -0
  671. package/es/theme-var/components/switch/index.scss +1 -0
  672. package/es/theme-var/components/switch/switch.scss +148 -0
  673. package/es/theme-var/components/table/bordered.scss +105 -0
  674. package/es/theme-var/components/table/empty.scss +26 -0
  675. package/es/theme-var/components/table/index.scss +13 -0
  676. package/es/theme-var/components/table/nest.scss +5 -0
  677. package/es/theme-var/components/table/radius.scss +66 -0
  678. package/es/theme-var/components/table/stripe.scss +9 -0
  679. package/es/theme-var/components/table/table.scss +588 -0
  680. package/es/theme-var/components/tabs/card-style.scss +186 -0
  681. package/es/theme-var/components/tabs/index.scss +2 -0
  682. package/es/theme-var/components/tabs/module-style.scss +49 -0
  683. package/es/theme-var/components/tabs/tabs.scss +453 -0
  684. package/es/theme-var/components/tag/index.scss +1 -0
  685. package/es/theme-var/components/tag/tag.scss +245 -0
  686. package/es/theme-var/components/time-picker/index.scss +4 -0
  687. package/es/theme-var/components/time-picker/time-picker.scss +258 -0
  688. package/es/theme-var/components/timeline/index.scss +3 -0
  689. package/es/theme-var/components/timeline/timeline.scss +196 -0
  690. package/es/theme-var/components/toast/index.scss +2 -0
  691. package/es/theme-var/components/toast/toast.scss +88 -0
  692. package/es/theme-var/components/tooltip/index.scss +1 -0
  693. package/es/theme-var/components/tooltip/tooltip.scss +185 -0
  694. package/es/theme-var/components/transfer/index.scss +5 -0
  695. package/es/theme-var/components/transfer/transfer-panel.scss +80 -0
  696. package/es/theme-var/components/transfer/transfer.scss +59 -0
  697. package/es/theme-var/components/tree/checkboxMixin.scss +192 -0
  698. package/es/theme-var/components/tree/directory.scss +71 -0
  699. package/es/theme-var/components/tree/index.scss +21 -0
  700. package/es/theme-var/components/tree/mixin.scss +298 -0
  701. package/es/theme-var/components/upload/index.scss +1 -0
  702. package/es/theme-var/components/upload/upload.scss +47 -0
  703. package/es/theme-var/index.scss +49 -0
  704. package/es/theme-var/mixins/button.scss +67 -0
  705. package/es/theme-var/mixins/common.scss +43 -0
  706. package/es/theme-var/mixins/compatibility.scss +13 -0
  707. package/es/theme-var/mixins/icon.scss +24 -0
  708. package/es/theme-var/mixins/index.scss +6 -0
  709. package/es/theme-var/mixins/operation-unit.scss +18 -0
  710. package/es/theme-var/mixins/transition.scss +33 -0
  711. package/es/theme-var/root.css +1390 -0
  712. package/es/theme-var/themes/default.scss +8 -0
  713. package/es/theme-var/var.scss +5 -0
  714. package/es/utils/colors.d.ts +3 -0
  715. package/es/utils/colors.js +2 -0
  716. package/es/utils/date.d.ts +125 -0
  717. package/es/utils/date.js +306 -0
  718. package/es/utils/debounce.d.ts +67 -0
  719. package/es/utils/debounce.js +238 -0
  720. package/es/utils/dom.d.ts +50 -0
  721. package/es/utils/dom.js +203 -0
  722. package/es/utils/easings.d.ts +1 -0
  723. package/es/utils/easings.js +13 -0
  724. package/es/utils/getScroll.d.ts +2 -0
  725. package/es/utils/getScroll.js +27 -0
  726. package/es/utils/getScrollBar.d.ts +6 -0
  727. package/es/utils/getScrollBar.js +42 -0
  728. package/es/utils/helper.d.ts +34 -0
  729. package/es/utils/helper.js +92 -0
  730. package/es/utils/number.d.ts +13 -0
  731. package/es/utils/number.js +96 -0
  732. package/es/utils/omit.d.ts +1 -0
  733. package/es/utils/omit.js +11 -0
  734. package/es/utils/raf.d.ts +5 -0
  735. package/es/utils/raf.js +55 -0
  736. package/es/utils/range.d.ts +2 -0
  737. package/es/utils/range.js +18 -0
  738. package/es/utils/reactNode.d.ts +7 -0
  739. package/es/utils/reactNode.js +10 -0
  740. package/es/utils/ref.d.ts +7 -0
  741. package/es/utils/ref.js +41 -0
  742. package/es/utils/responsiveObserve.d.ts +21 -0
  743. package/es/utils/responsiveObserve.js +69 -0
  744. package/es/utils/scrollTo.d.ts +10 -0
  745. package/es/utils/scrollTo.js +38 -0
  746. package/es/utils/setStyle.d.ts +2 -0
  747. package/es/utils/setStyle.js +13 -0
  748. package/es/utils/stopPropagationHandler.d.ts +3 -0
  749. package/es/utils/stopPropagationHandler.js +11 -0
  750. package/es/utils/styleChecker.d.ts +4 -0
  751. package/es/utils/styleChecker.js +45 -0
  752. package/es/utils/type.d.ts +12 -0
  753. package/es/utils/type.js +15 -0
  754. package/es/utils/warnings.d.ts +8 -0
  755. package/es/utils/warnings.js +32 -0
  756. package/lib/components/alert/Alert.d.ts +4 -0
  757. package/lib/components/alert/Alert.js +122 -0
  758. package/lib/components/alert/index.d.ts +2 -0
  759. package/lib/components/alert/index.js +13 -0
  760. package/lib/components/alert/types.d.ts +23 -0
  761. package/lib/components/alert/types.js +1 -0
  762. package/lib/components/anchor/Anchor.d.ts +35 -0
  763. package/lib/components/anchor/Anchor.js +320 -0
  764. package/lib/components/anchor/AnchorItem.d.ts +14 -0
  765. package/lib/components/anchor/AnchorItem.js +125 -0
  766. package/lib/components/anchor/context.d.ts +4 -0
  767. package/lib/components/anchor/context.js +14 -0
  768. package/lib/components/anchor/index.d.ts +2 -0
  769. package/lib/components/anchor/index.js +13 -0
  770. package/lib/components/anchor/types.d.ts +43 -0
  771. package/lib/components/anchor/types.js +1 -0
  772. package/lib/components/avatar/Avatar.d.ts +4 -0
  773. package/lib/components/avatar/Avatar.js +150 -0
  774. package/lib/components/avatar/index.d.ts +2 -0
  775. package/lib/components/avatar/index.js +13 -0
  776. package/lib/components/avatar/types.d.ts +35 -0
  777. package/lib/components/avatar/types.js +1 -0
  778. package/lib/components/badge/Badge.d.ts +4 -0
  779. package/lib/components/badge/Badge.js +145 -0
  780. package/lib/components/badge/index.d.ts +2 -0
  781. package/lib/components/badge/index.js +13 -0
  782. package/lib/components/badge/types.d.ts +35 -0
  783. package/lib/components/badge/types.js +1 -0
  784. package/lib/components/breadcrumb/Breadcrumb.d.ts +8 -0
  785. package/lib/components/breadcrumb/Breadcrumb.js +119 -0
  786. package/lib/components/breadcrumb/BreadcrumbItem.d.ts +4 -0
  787. package/lib/components/breadcrumb/BreadcrumbItem.js +165 -0
  788. package/lib/components/breadcrumb/context.d.ts +4 -0
  789. package/lib/components/breadcrumb/context.js +14 -0
  790. package/lib/components/breadcrumb/index.d.ts +4 -0
  791. package/lib/components/breadcrumb/index.js +21 -0
  792. package/lib/components/breadcrumb/types.d.ts +63 -0
  793. package/lib/components/breadcrumb/types.js +1 -0
  794. package/lib/components/button/Button.d.ts +6 -0
  795. package/lib/components/button/Button.js +107 -0
  796. package/lib/components/button/ButtonGroup.d.ts +4 -0
  797. package/lib/components/button/ButtonGroup.js +52 -0
  798. package/lib/components/button/index.d.ts +8 -0
  799. package/lib/components/button/index.js +17 -0
  800. package/lib/components/button/types.d.ts +89 -0
  801. package/lib/components/button/types.js +1 -0
  802. package/lib/components/card/Card.d.ts +4 -0
  803. package/lib/components/card/Card.js +60 -0
  804. package/lib/components/card/index.d.ts +2 -0
  805. package/lib/components/card/index.js +13 -0
  806. package/lib/components/card/types.d.ts +27 -0
  807. package/lib/components/card/types.js +1 -0
  808. package/lib/components/cascader/Cascader.d.ts +8 -0
  809. package/lib/components/cascader/Cascader.js +454 -0
  810. package/lib/components/cascader/CascaderFilterPanel.d.ts +4 -0
  811. package/lib/components/cascader/CascaderFilterPanel.js +162 -0
  812. package/lib/components/cascader/CascaderMenu.d.ts +4 -0
  813. package/lib/components/cascader/CascaderMenu.js +178 -0
  814. package/lib/components/cascader/CascaderPanel.d.ts +4 -0
  815. package/lib/components/cascader/CascaderPanel.js +179 -0
  816. package/lib/components/cascader/core/selector.d.ts +28 -0
  817. package/lib/components/cascader/core/selector.js +124 -0
  818. package/lib/components/cascader/hook/index.d.ts +25 -0
  819. package/lib/components/cascader/hook/index.js +307 -0
  820. package/lib/components/cascader/index.d.ts +8 -0
  821. package/lib/components/cascader/index.js +17 -0
  822. package/lib/components/cascader/types.d.ts +205 -0
  823. package/lib/components/cascader/types.js +1 -0
  824. package/lib/components/cascader/utils/helper.d.ts +31 -0
  825. package/lib/components/cascader/utils/helper.js +204 -0
  826. package/lib/components/checkbox/Checkbox.d.ts +4 -0
  827. package/lib/components/checkbox/Checkbox.js +140 -0
  828. package/lib/components/checkbox/CheckboxGroup.d.ts +4 -0
  829. package/lib/components/checkbox/CheckboxGroup.js +109 -0
  830. package/lib/components/checkbox/context.d.ts +3 -0
  831. package/lib/components/checkbox/context.js +13 -0
  832. package/lib/components/checkbox/index.d.ts +9 -0
  833. package/lib/components/checkbox/index.js +31 -0
  834. package/lib/components/checkbox/types.d.ts +147 -0
  835. package/lib/components/checkbox/types.js +1 -0
  836. package/lib/components/clock/Clock.d.ts +7 -0
  837. package/lib/components/clock/Clock.js +36 -0
  838. package/lib/components/clock/index.d.ts +2 -0
  839. package/lib/components/clock/index.js +13 -0
  840. package/lib/components/col/index.d.ts +4 -0
  841. package/lib/components/col/index.js +13 -0
  842. package/lib/components/config-provider/context.d.ts +4 -0
  843. package/lib/components/config-provider/context.js +24 -0
  844. package/lib/components/config-provider/index.d.ts +9 -0
  845. package/lib/components/config-provider/index.js +69 -0
  846. package/lib/components/config-provider/types.d.ts +12 -0
  847. package/lib/components/config-provider/types.js +1 -0
  848. package/lib/components/config-provider/util.d.ts +12 -0
  849. package/lib/components/config-provider/util.js +50 -0
  850. package/lib/components/count-down/CountDown.d.ts +9 -0
  851. package/lib/components/count-down/CountDown.js +48 -0
  852. package/lib/components/count-down/index.d.ts +2 -0
  853. package/lib/components/count-down/index.js +13 -0
  854. package/lib/components/date-picker/DatePicker.d.ts +4 -0
  855. package/lib/components/date-picker/DatePicker.js +399 -0
  856. package/lib/components/date-picker/components/PickerHeader.d.ts +4 -0
  857. package/lib/components/date-picker/components/PickerHeader.js +224 -0
  858. package/lib/components/date-picker/components/PickerTable.d.ts +4 -0
  859. package/lib/components/date-picker/components/PickerTable.js +276 -0
  860. package/lib/components/date-picker/components/Shortcuts.d.ts +4 -0
  861. package/lib/components/date-picker/components/Shortcuts.js +174 -0
  862. package/lib/components/date-picker/constants.d.ts +18 -0
  863. package/lib/components/date-picker/constants.js +43 -0
  864. package/lib/components/date-picker/index.d.ts +2 -0
  865. package/lib/components/date-picker/index.js +13 -0
  866. package/lib/components/date-picker/panels/DatePickerPanel.d.ts +4 -0
  867. package/lib/components/date-picker/panels/DatePickerPanel.js +211 -0
  868. package/lib/components/date-picker/panels/RangePickerPanel.d.ts +4 -0
  869. package/lib/components/date-picker/panels/RangePickerPanel.js +511 -0
  870. package/lib/components/date-picker/types.d.ts +279 -0
  871. package/lib/components/date-picker/types.js +1 -0
  872. package/lib/components/date-picker/utils/date.d.ts +6 -0
  873. package/lib/components/date-picker/utils/date.js +72 -0
  874. package/lib/components/date-picker/utils/disabledDate.d.ts +3 -0
  875. package/lib/components/date-picker/utils/disabledDate.js +76 -0
  876. package/lib/components/date-picker/utils/format.d.ts +11 -0
  877. package/lib/components/date-picker/utils/format.js +262 -0
  878. package/lib/components/default-page/DefaultPage.d.ts +4 -0
  879. package/lib/components/default-page/DefaultPage.js +67 -0
  880. package/lib/components/default-page/icon/index.d.ts +16 -0
  881. package/lib/components/default-page/icon/index.js +54 -0
  882. package/lib/components/default-page/icon/no-data.d.ts +3 -0
  883. package/lib/components/default-page/icon/no-data.js +115 -0
  884. package/lib/components/default-page/icon/no-image.d.ts +3 -0
  885. package/lib/components/default-page/icon/no-image.js +75 -0
  886. package/lib/components/default-page/icon/no-order.d.ts +3 -0
  887. package/lib/components/default-page/icon/no-order.js +61 -0
  888. package/lib/components/default-page/icon/no-permission.d.ts +3 -0
  889. package/lib/components/default-page/icon/no-permission.js +88 -0
  890. package/lib/components/default-page/icon/no-product.d.ts +3 -0
  891. package/lib/components/default-page/icon/no-product.js +79 -0
  892. package/lib/components/default-page/icon/no-promotion.d.ts +3 -0
  893. package/lib/components/default-page/icon/no-promotion.js +71 -0
  894. package/lib/components/default-page/icon/no-rating.d.ts +3 -0
  895. package/lib/components/default-page/icon/no-rating.js +69 -0
  896. package/lib/components/default-page/icon/no-result.d.ts +3 -0
  897. package/lib/components/default-page/icon/no-result.js +76 -0
  898. package/lib/components/default-page/icon/no-store.d.ts +3 -0
  899. package/lib/components/default-page/icon/no-store.js +77 -0
  900. package/lib/components/default-page/icon/no-transaction.d.ts +3 -0
  901. package/lib/components/default-page/icon/no-transaction.js +64 -0
  902. package/lib/components/default-page/icon/no-voucher.d.ts +3 -0
  903. package/lib/components/default-page/icon/no-voucher.js +82 -0
  904. package/lib/components/default-page/icon/not-found.d.ts +3 -0
  905. package/lib/components/default-page/icon/not-found.js +614 -0
  906. package/lib/components/default-page/index.d.ts +2 -0
  907. package/lib/components/default-page/index.js +13 -0
  908. package/lib/components/default-page/types.d.ts +17 -0
  909. package/lib/components/default-page/types.js +1 -0
  910. package/lib/components/dropdown/Dropdown.d.ts +4 -0
  911. package/lib/components/dropdown/Dropdown.js +142 -0
  912. package/lib/components/dropdown/DropdownContext.d.ts +6 -0
  913. package/lib/components/dropdown/DropdownContext.js +18 -0
  914. package/lib/components/dropdown/DropdownItem.d.ts +4 -0
  915. package/lib/components/dropdown/DropdownItem.js +87 -0
  916. package/lib/components/dropdown/DropdownItemGroup.d.ts +4 -0
  917. package/lib/components/dropdown/DropdownItemGroup.js +49 -0
  918. package/lib/components/dropdown/DropdownMenu.d.ts +4 -0
  919. package/lib/components/dropdown/DropdownMenu.js +99 -0
  920. package/lib/components/dropdown/index.d.ts +13 -0
  921. package/lib/components/dropdown/index.js +41 -0
  922. package/lib/components/dropdown/types.d.ts +66 -0
  923. package/lib/components/dropdown/types.js +1 -0
  924. package/lib/components/form/Form.d.ts +6 -0
  925. package/lib/components/form/Form.js +119 -0
  926. package/lib/components/form/FormItem.d.ts +4 -0
  927. package/lib/components/form/FormItem.js +134 -0
  928. package/lib/components/form/context.d.ts +7 -0
  929. package/lib/components/form/context.js +16 -0
  930. package/lib/components/form/index.d.ts +11 -0
  931. package/lib/components/form/index.js +23 -0
  932. package/lib/components/form/types.d.ts +63 -0
  933. package/lib/components/form/types.js +1 -0
  934. package/lib/components/form/useForm.d.ts +2 -0
  935. package/lib/components/form/useForm.js +46 -0
  936. package/lib/components/form/util.d.ts +3 -0
  937. package/lib/components/form/util.js +18 -0
  938. package/lib/components/grid/Col.d.ts +4 -0
  939. package/lib/components/grid/Col.js +125 -0
  940. package/lib/components/grid/Row.d.ts +4 -0
  941. package/lib/components/grid/Row.js +151 -0
  942. package/lib/components/grid/RowContext.d.ts +8 -0
  943. package/lib/components/grid/RowContext.js +12 -0
  944. package/lib/components/grid/index.d.ts +7 -0
  945. package/lib/components/grid/index.js +18 -0
  946. package/lib/components/grid/types.d.ts +40 -0
  947. package/lib/components/grid/types.js +6 -0
  948. package/lib/components/icon/Icon.d.ts +5 -0
  949. package/lib/components/icon/Icon.js +110 -0
  950. package/lib/components/icon/index.d.ts +3 -0
  951. package/lib/components/icon/index.js +27 -0
  952. package/lib/components/icon/types.d.ts +27 -0
  953. package/lib/components/icon/types.js +1 -0
  954. package/lib/components/image-upload/index.d.ts +21 -0
  955. package/lib/components/image-upload/index.js +253 -0
  956. package/lib/components/image-upload/request.d.ts +22 -0
  957. package/lib/components/image-upload/request.js +114 -0
  958. package/lib/components/image-upload/useOpenFiles.d.ts +7 -0
  959. package/lib/components/image-upload/useOpenFiles.js +63 -0
  960. package/lib/components/image-upload/useUploadFile.d.ts +10 -0
  961. package/lib/components/image-upload/useUploadFile.js +94 -0
  962. package/lib/components/index.d.ts +89 -0
  963. package/lib/components/index.js +391 -0
  964. package/lib/components/input/Input.d.ts +4 -0
  965. package/lib/components/input/Input.js +493 -0
  966. package/lib/components/input/InputGroup.d.ts +4 -0
  967. package/lib/components/input/InputGroup.js +44 -0
  968. package/lib/components/input/index.d.ts +8 -0
  969. package/lib/components/input/index.js +17 -0
  970. package/lib/components/input/types.d.ts +126 -0
  971. package/lib/components/input/types.js +1 -0
  972. package/lib/components/input/utils.d.ts +17 -0
  973. package/lib/components/input/utils.js +75 -0
  974. package/lib/components/locale/default.d.ts +3 -0
  975. package/lib/components/locale/default.js +53 -0
  976. package/lib/components/locale/index.d.ts +2 -0
  977. package/lib/components/locale/index.js +29 -0
  978. package/lib/components/locale/types.d.ts +59 -0
  979. package/lib/components/locale/types.js +1 -0
  980. package/lib/components/modal/Modal.d.ts +4 -0
  981. package/lib/components/modal/Modal.js +68 -0
  982. package/lib/components/modal/ModalPortal.d.ts +4 -0
  983. package/lib/components/modal/ModalPortal.js +254 -0
  984. package/lib/components/modal/confirm.d.ts +6 -0
  985. package/lib/components/modal/confirm.js +145 -0
  986. package/lib/components/modal/index.d.ts +11 -0
  987. package/lib/components/modal/index.js +29 -0
  988. package/lib/components/modal/types.d.ts +65 -0
  989. package/lib/components/modal/types.js +1 -0
  990. package/lib/components/number-input/NumberInput.d.ts +10 -0
  991. package/lib/components/number-input/NumberInput.js +191 -0
  992. package/lib/components/number-input/index.d.ts +2 -0
  993. package/lib/components/number-input/index.js +13 -0
  994. package/lib/components/number-input/types.d.ts +32 -0
  995. package/lib/components/number-input/types.js +5 -0
  996. package/lib/components/pagination/Pagination.d.ts +4 -0
  997. package/lib/components/pagination/Pagination.js +190 -0
  998. package/lib/components/pagination/index.d.ts +3 -0
  999. package/lib/components/pagination/index.js +27 -0
  1000. package/lib/components/pagination/jumper.d.ts +4 -0
  1001. package/lib/components/pagination/jumper.js +82 -0
  1002. package/lib/components/pagination/pages.d.ts +4 -0
  1003. package/lib/components/pagination/pages.js +233 -0
  1004. package/lib/components/pagination/sizes.d.ts +4 -0
  1005. package/lib/components/pagination/sizes.js +121 -0
  1006. package/lib/components/pagination/types.d.ts +123 -0
  1007. package/lib/components/pagination/types.js +14 -0
  1008. package/lib/components/panel/Panel.d.ts +10 -0
  1009. package/lib/components/panel/Panel.js +38 -0
  1010. package/lib/components/panel/index.d.ts +2 -0
  1011. package/lib/components/panel/index.js +13 -0
  1012. package/lib/components/popover/Popover.d.ts +4 -0
  1013. package/lib/components/popover/Popover.js +79 -0
  1014. package/lib/components/popover/index.d.ts +3 -0
  1015. package/lib/components/popover/index.js +27 -0
  1016. package/lib/components/popover/types.d.ts +11 -0
  1017. package/lib/components/popover/types.js +1 -0
  1018. package/lib/components/progress/Progress.d.ts +13 -0
  1019. package/lib/components/progress/Progress.js +111 -0
  1020. package/lib/components/progress/index.d.ts +2 -0
  1021. package/lib/components/progress/index.js +13 -0
  1022. package/lib/components/progress/types.d.ts +12 -0
  1023. package/lib/components/progress/types.js +1 -0
  1024. package/lib/components/radio/GroupContext.d.ts +3 -0
  1025. package/lib/components/radio/GroupContext.js +12 -0
  1026. package/lib/components/radio/Radio.d.ts +4 -0
  1027. package/lib/components/radio/Radio.js +107 -0
  1028. package/lib/components/radio/RadioGroup.d.ts +4 -0
  1029. package/lib/components/radio/RadioGroup.js +80 -0
  1030. package/lib/components/radio/index.d.ts +8 -0
  1031. package/lib/components/radio/index.js +17 -0
  1032. package/lib/components/radio/types.d.ts +86 -0
  1033. package/lib/components/radio/types.js +1 -0
  1034. package/lib/components/rate/Rate.d.ts +20 -0
  1035. package/lib/components/rate/Rate.js +226 -0
  1036. package/lib/components/rate/index.d.ts +2 -0
  1037. package/lib/components/rate/index.js +13 -0
  1038. package/lib/components/rate/types.d.ts +55 -0
  1039. package/lib/components/rate/types.js +1 -0
  1040. package/lib/components/row/index.d.ts +5 -0
  1041. package/lib/components/row/index.js +13 -0
  1042. package/lib/components/search/Option.d.ts +4 -0
  1043. package/lib/components/search/Option.js +93 -0
  1044. package/lib/components/search/OptionGroup.d.ts +7 -0
  1045. package/lib/components/search/OptionGroup.js +37 -0
  1046. package/lib/components/search/Search.d.ts +4 -0
  1047. package/lib/components/search/Search.js +354 -0
  1048. package/lib/components/search/context.d.ts +4 -0
  1049. package/lib/components/search/context.js +23 -0
  1050. package/lib/components/search/index.d.ts +12 -0
  1051. package/lib/components/search/index.js +23 -0
  1052. package/lib/components/search/types.d.ts +141 -0
  1053. package/lib/components/search/types.js +1 -0
  1054. package/lib/components/select/MultiContent.d.ts +4 -0
  1055. package/lib/components/select/MultiContent.js +287 -0
  1056. package/lib/components/select/Option.d.ts +4 -0
  1057. package/lib/components/select/Option.js +88 -0
  1058. package/lib/components/select/OptionAdd.d.ts +7 -0
  1059. package/lib/components/select/OptionAdd.js +90 -0
  1060. package/lib/components/select/OptionGroup.d.ts +12 -0
  1061. package/lib/components/select/OptionGroup.js +37 -0
  1062. package/lib/components/select/Select.d.ts +10 -0
  1063. package/lib/components/select/Select.js +648 -0
  1064. package/lib/components/select/SelectTag.d.ts +4 -0
  1065. package/lib/components/select/SelectTag.js +66 -0
  1066. package/lib/components/select/context.d.ts +4 -0
  1067. package/lib/components/select/context.js +23 -0
  1068. package/lib/components/select/index.d.ts +12 -0
  1069. package/lib/components/select/index.js +23 -0
  1070. package/lib/components/select/types.d.ts +200 -0
  1071. package/lib/components/select/types.js +1 -0
  1072. package/lib/components/select/useSelectState.d.ts +14 -0
  1073. package/lib/components/select/useSelectState.js +155 -0
  1074. package/lib/components/sidebar/Item.d.ts +4 -0
  1075. package/lib/components/sidebar/Item.js +62 -0
  1076. package/lib/components/sidebar/ItemGroup.d.ts +4 -0
  1077. package/lib/components/sidebar/ItemGroup.js +112 -0
  1078. package/lib/components/sidebar/Sidebar.d.ts +4 -0
  1079. package/lib/components/sidebar/Sidebar.js +72 -0
  1080. package/lib/components/sidebar/SidebarContext.d.ts +8 -0
  1081. package/lib/components/sidebar/SidebarContext.js +19 -0
  1082. package/lib/components/sidebar/constant.d.ts +2 -0
  1083. package/lib/components/sidebar/constant.js +12 -0
  1084. package/lib/components/sidebar/index.d.ts +10 -0
  1085. package/lib/components/sidebar/index.js +20 -0
  1086. package/lib/components/sidebar/types.d.ts +47 -0
  1087. package/lib/components/sidebar/types.js +1 -0
  1088. package/lib/components/skeleton/Skeleton.d.ts +4 -0
  1089. package/lib/components/skeleton/Skeleton.js +49 -0
  1090. package/lib/components/skeleton/index.d.ts +2 -0
  1091. package/lib/components/skeleton/index.js +13 -0
  1092. package/lib/components/skeleton/types.d.ts +17 -0
  1093. package/lib/components/skeleton/types.js +1 -0
  1094. package/lib/components/slider/Slider.d.ts +65 -0
  1095. package/lib/components/slider/Slider.js +157 -0
  1096. package/lib/components/slider/SliderTooltip.d.ts +3 -0
  1097. package/lib/components/slider/SliderTooltip.js +59 -0
  1098. package/lib/components/slider/index.d.ts +2 -0
  1099. package/lib/components/slider/index.js +13 -0
  1100. package/lib/components/slider/types.d.ts +70 -0
  1101. package/lib/components/slider/types.js +1 -0
  1102. package/lib/components/spin/Spin.d.ts +4 -0
  1103. package/lib/components/spin/Spin.js +64 -0
  1104. package/lib/components/spin/index.d.ts +3 -0
  1105. package/lib/components/spin/index.js +27 -0
  1106. package/lib/components/spin/types.d.ts +41 -0
  1107. package/lib/components/spin/types.js +1 -0
  1108. package/lib/components/steps/Step.d.ts +4 -0
  1109. package/lib/components/steps/Step.js +146 -0
  1110. package/lib/components/steps/Steps.d.ts +4 -0
  1111. package/lib/components/steps/Steps.js +202 -0
  1112. package/lib/components/steps/arrow-icon.d.ts +3 -0
  1113. package/lib/components/steps/arrow-icon.js +34 -0
  1114. package/lib/components/steps/index.d.ts +9 -0
  1115. package/lib/components/steps/index.js +23 -0
  1116. package/lib/components/steps/types.d.ts +58 -0
  1117. package/lib/components/steps/types.js +8 -0
  1118. package/lib/components/switch/Switch.d.ts +4 -0
  1119. package/lib/components/switch/Switch.js +83 -0
  1120. package/lib/components/switch/index.d.ts +2 -0
  1121. package/lib/components/switch/index.js +13 -0
  1122. package/lib/components/switch/types.d.ts +15 -0
  1123. package/lib/components/switch/types.js +1 -0
  1124. package/lib/components/table/ExpandIcon.d.ts +10 -0
  1125. package/lib/components/table/ExpandIcon.js +46 -0
  1126. package/lib/components/table/Table.d.ts +11 -0
  1127. package/lib/components/table/Table.js +439 -0
  1128. package/lib/components/table/hooks/useBreakpoint.d.ts +3 -0
  1129. package/lib/components/table/hooks/useBreakpoint.js +35 -0
  1130. package/lib/components/table/hooks/useFilter/FilterDropdown.d.ts +14 -0
  1131. package/lib/components/table/hooks/useFilter/FilterDropdown.js +224 -0
  1132. package/lib/components/table/hooks/useFilter/index.d.ts +17 -0
  1133. package/lib/components/table/hooks/useFilter/index.js +203 -0
  1134. package/lib/components/table/hooks/useLazyKVMap.d.ts +2 -0
  1135. package/lib/components/table/hooks/useLazyKVMap.js +47 -0
  1136. package/lib/components/table/hooks/usePagination.d.ts +8 -0
  1137. package/lib/components/table/hooks/usePagination.js +141 -0
  1138. package/lib/components/table/hooks/useSelection.d.ts +18 -0
  1139. package/lib/components/table/hooks/useSelection.js +441 -0
  1140. package/lib/components/table/hooks/useSorter.d.ts +17 -0
  1141. package/lib/components/table/hooks/useSorter.js +330 -0
  1142. package/lib/components/table/hooks/useTitleColumns.d.ts +2 -0
  1143. package/lib/components/table/hooks/useTitleColumns.js +32 -0
  1144. package/lib/components/table/index.d.ts +13 -0
  1145. package/lib/components/table/index.js +36 -0
  1146. package/lib/components/table/types.d.ts +163 -0
  1147. package/lib/components/table/types.js +3 -0
  1148. package/lib/components/table/util.d.ts +5 -0
  1149. package/lib/components/table/util.js +32 -0
  1150. package/lib/components/tabs/ScrollableInkTabBar.d.ts +8 -0
  1151. package/lib/components/tabs/ScrollableInkTabBar.js +86 -0
  1152. package/lib/components/tabs/ScrollableTabBarNode.d.ts +46 -0
  1153. package/lib/components/tabs/ScrollableTabBarNode.js +467 -0
  1154. package/lib/components/tabs/TabBar.d.ts +4 -0
  1155. package/lib/components/tabs/TabBar.js +81 -0
  1156. package/lib/components/tabs/Tabs.d.ts +4 -0
  1157. package/lib/components/tabs/Tabs.js +165 -0
  1158. package/lib/components/tabs/index.d.ts +8 -0
  1159. package/lib/components/tabs/index.js +17 -0
  1160. package/lib/components/tabs/types.d.ts +72 -0
  1161. package/lib/components/tabs/types.js +1 -0
  1162. package/lib/components/tabs/utils.d.ts +2 -0
  1163. package/lib/components/tabs/utils.js +20 -0
  1164. package/lib/components/tag/Tag.d.ts +4 -0
  1165. package/lib/components/tag/Tag.js +57 -0
  1166. package/lib/components/tag/index.d.ts +2 -0
  1167. package/lib/components/tag/index.js +13 -0
  1168. package/lib/components/tag/types.d.ts +34 -0
  1169. package/lib/components/tag/types.js +1 -0
  1170. package/lib/components/time-picker/TimePicker.d.ts +4 -0
  1171. package/lib/components/time-picker/TimePicker.js +373 -0
  1172. package/lib/components/time-picker/TimePickerScrollbar.d.ts +4 -0
  1173. package/lib/components/time-picker/TimePickerScrollbar.js +188 -0
  1174. package/lib/components/time-picker/config.d.ts +12 -0
  1175. package/lib/components/time-picker/config.js +29 -0
  1176. package/lib/components/time-picker/index.d.ts +2 -0
  1177. package/lib/components/time-picker/index.js +13 -0
  1178. package/lib/components/time-picker/types.d.ts +133 -0
  1179. package/lib/components/time-picker/types.js +1 -0
  1180. package/lib/components/timeline/Timeline.d.ts +4 -0
  1181. package/lib/components/timeline/Timeline.js +33 -0
  1182. package/lib/components/timeline/TimelineItem.d.ts +4 -0
  1183. package/lib/components/timeline/TimelineItem.js +174 -0
  1184. package/lib/components/timeline/index.d.ts +8 -0
  1185. package/lib/components/timeline/index.js +17 -0
  1186. package/lib/components/timeline/types.d.ts +29 -0
  1187. package/lib/components/timeline/types.js +1 -0
  1188. package/lib/components/toast/Toast.d.ts +8 -0
  1189. package/lib/components/toast/Toast.js +241 -0
  1190. package/lib/components/toast/hooks/useMessage.d.ts +6 -0
  1191. package/lib/components/toast/hooks/useMessage.js +82 -0
  1192. package/lib/components/toast/index.d.ts +2 -0
  1193. package/lib/components/toast/index.js +13 -0
  1194. package/lib/components/toast/types.d.ts +57 -0
  1195. package/lib/components/toast/types.js +1 -0
  1196. package/lib/components/tooltip/Tooltip.d.ts +5 -0
  1197. package/lib/components/tooltip/Tooltip.js +206 -0
  1198. package/lib/components/tooltip/index.d.ts +3 -0
  1199. package/lib/components/tooltip/index.js +27 -0
  1200. package/lib/components/tooltip/placements.d.ts +3 -0
  1201. package/lib/components/tooltip/placements.js +97 -0
  1202. package/lib/components/tooltip/types.d.ts +62 -0
  1203. package/lib/components/tooltip/types.js +1 -0
  1204. package/lib/components/transfer/Transfer.d.ts +4 -0
  1205. package/lib/components/transfer/Transfer.js +299 -0
  1206. package/lib/components/transfer/TransferPanel.d.ts +4 -0
  1207. package/lib/components/transfer/TransferPanel.js +373 -0
  1208. package/lib/components/transfer/assets/no-result.svg +17 -0
  1209. package/lib/components/transfer/index.d.ts +2 -0
  1210. package/lib/components/transfer/index.js +13 -0
  1211. package/lib/components/transfer/no-result.d.ts +3 -0
  1212. package/lib/components/transfer/no-result.js +80 -0
  1213. package/lib/components/transfer/types.d.ts +96 -0
  1214. package/lib/components/transfer/types.js +1 -0
  1215. package/lib/components/tree/DirectoryTree.d.ts +5 -0
  1216. package/lib/components/tree/DirectoryTree.js +308 -0
  1217. package/lib/components/tree/OverflowTooltip.d.ts +9 -0
  1218. package/lib/components/tree/OverflowTooltip.js +39 -0
  1219. package/lib/components/tree/Tree.d.ts +10 -0
  1220. package/lib/components/tree/Tree.js +107 -0
  1221. package/lib/components/tree/index.d.ts +4 -0
  1222. package/lib/components/tree/index.js +13 -0
  1223. package/lib/components/tree/types.d.ts +88 -0
  1224. package/lib/components/tree/types.js +1 -0
  1225. package/lib/components/tree/utils/dictUtil.d.ts +9 -0
  1226. package/lib/components/tree/utils/dictUtil.js +99 -0
  1227. package/lib/components/tree/utils/dropIndicator.d.ts +9 -0
  1228. package/lib/components/tree/utils/dropIndicator.js +51 -0
  1229. package/lib/components/tree/utils/loop.d.ts +20 -0
  1230. package/lib/components/tree/utils/loop.js +41 -0
  1231. package/lib/components/tree/utils/motion.d.ts +3 -0
  1232. package/lib/components/tree/utils/motion.js +46 -0
  1233. package/lib/components/upload/Upload.d.ts +4 -0
  1234. package/lib/components/upload/Upload.js +486 -0
  1235. package/lib/components/upload/ajax.d.ts +21 -0
  1236. package/lib/components/upload/ajax.js +98 -0
  1237. package/lib/components/upload/index.d.ts +3 -0
  1238. package/lib/components/upload/index.js +27 -0
  1239. package/lib/components/upload/types.d.ts +85 -0
  1240. package/lib/components/upload/types.js +1 -0
  1241. package/lib/components/upload/utils.d.ts +2 -0
  1242. package/lib/components/upload/utils.js +68 -0
  1243. package/lib/gatsby-theme-docz/components/Logo/index.d.ts +1 -0
  1244. package/lib/gatsby-theme-docz/components/Logo/index.js +32 -0
  1245. package/lib/gatsby-theme-docz/components/Logo/shopee-logo.png +0 -0
  1246. package/lib/gatsby-theme-docz/components/Logo/styles.d.ts +22 -0
  1247. package/lib/gatsby-theme-docz/components/Logo/styles.js +29 -0
  1248. package/lib/gatsby-theme-docz/components/Props/index.d.ts +15 -0
  1249. package/lib/gatsby-theme-docz/components/Props/index.js +98 -0
  1250. package/lib/gatsby-theme-docz/components/Props/styles.d.ts +46 -0
  1251. package/lib/gatsby-theme-docz/components/Props/styles.js +58 -0
  1252. package/lib/hooks/clickoutside.d.ts +5 -0
  1253. package/lib/hooks/clickoutside.js +47 -0
  1254. package/lib/hooks/index.d.ts +3 -0
  1255. package/lib/hooks/index.js +23 -0
  1256. package/lib/hooks/useFlexGapSupport.d.ts +2 -0
  1257. package/lib/hooks/useFlexGapSupport.js +30 -0
  1258. package/lib/hooks/useForceUpdate.d.ts +2 -0
  1259. package/lib/hooks/useForceUpdate.js +24 -0
  1260. package/lib/hooks/useMergedState.d.ts +6 -0
  1261. package/lib/hooks/useMergedState.js +66 -0
  1262. package/lib/hooks/useOverflow.d.ts +10 -0
  1263. package/lib/hooks/useOverflow.js +74 -0
  1264. package/lib/hooks/useSyncState.d.ts +3 -0
  1265. package/lib/hooks/useSyncState.js +26 -0
  1266. package/lib/hooks/useTiming.d.ts +2 -0
  1267. package/lib/hooks/useTiming.js +40 -0
  1268. package/lib/theme-default/components/alert/index.css +1229 -0
  1269. package/lib/theme-default/components/anchor/index.css +1196 -0
  1270. package/lib/theme-default/components/avatar/index.css +1185 -0
  1271. package/lib/theme-default/components/badge/index.css +627 -0
  1272. package/lib/theme-default/components/breadcrumb/index.css +1771 -0
  1273. package/lib/theme-default/components/button/index.css +2666 -0
  1274. package/lib/theme-default/components/card/index.css +591 -0
  1275. package/lib/theme-default/components/cascader/index.css +3592 -0
  1276. package/lib/theme-default/components/checkbox/index.css +2450 -0
  1277. package/lib/theme-default/components/col/index.css +2969 -0
  1278. package/lib/theme-default/components/config-provider/index.css +554 -0
  1279. package/lib/theme-default/components/date-picker/index.css +13858 -0
  1280. package/lib/theme-default/components/default-page/index.css +1164 -0
  1281. package/lib/theme-default/components/dropdown/index.css +1864 -0
  1282. package/lib/theme-default/components/form/index.css +1199 -0
  1283. package/lib/theme-default/components/grid/index.css +2969 -0
  1284. package/lib/theme-default/components/icon/index.css +586 -0
  1285. package/lib/theme-default/components/image-upload/index.css +1202 -0
  1286. package/lib/theme-default/components/input/index.css +1383 -0
  1287. package/lib/theme-default/components/modal/index.css +3956 -0
  1288. package/lib/theme-default/components/number-input/index.css +1626 -0
  1289. package/lib/theme-default/components/pagination/index.css +6598 -0
  1290. package/lib/theme-default/components/panel/index.css +564 -0
  1291. package/lib/theme-default/components/popover/index.css +664 -0
  1292. package/lib/theme-default/components/progress/index.css +1190 -0
  1293. package/lib/theme-default/components/radio/index.css +1816 -0
  1294. package/lib/theme-default/components/rate/index.css +1179 -0
  1295. package/lib/theme-default/components/row/index.css +2969 -0
  1296. package/lib/theme-default/components/scrollbar/index.css +602 -0
  1297. package/lib/theme-default/components/search/index.css +12159 -0
  1298. package/lib/theme-default/components/select/index.css +8930 -0
  1299. package/lib/theme-default/components/sidebar/index.css +2338 -0
  1300. package/lib/theme-default/components/skeleton/index.css +593 -0
  1301. package/lib/theme-default/components/slider/index.css +685 -0
  1302. package/lib/theme-default/components/spin/index.css +626 -0
  1303. package/lib/theme-default/components/steps/index.css +2537 -0
  1304. package/lib/theme-default/components/switch/index.css +669 -0
  1305. package/lib/theme-default/components/table/index.css +11256 -0
  1306. package/lib/theme-default/components/tabs/index.css +1660 -0
  1307. package/lib/theme-default/components/tag/index.css +720 -0
  1308. package/lib/theme-default/components/time-picker/index.css +5470 -0
  1309. package/lib/theme-default/components/timeline/index.css +1928 -0
  1310. package/lib/theme-default/components/toast/index.css +1195 -0
  1311. package/lib/theme-default/components/tooltip/index.css +669 -0
  1312. package/lib/theme-default/components/transfer/index.css +3861 -0
  1313. package/lib/theme-default/components/tree/index.css +2153 -0
  1314. package/lib/theme-default/components/upload/index.css +583 -0
  1315. package/lib/theme-default/index.css +128194 -0
  1316. package/lib/theme-default/var.css +554 -0
  1317. package/lib/utils/colors.d.ts +3 -0
  1318. package/lib/utils/colors.js +11 -0
  1319. package/lib/utils/date.d.ts +125 -0
  1320. package/lib/utils/date.js +371 -0
  1321. package/lib/utils/debounce.d.ts +67 -0
  1322. package/lib/utils/debounce.js +247 -0
  1323. package/lib/utils/dom.d.ts +50 -0
  1324. package/lib/utils/dom.js +232 -0
  1325. package/lib/utils/easings.d.ts +1 -0
  1326. package/lib/utils/easings.js +20 -0
  1327. package/lib/utils/getScroll.d.ts +2 -0
  1328. package/lib/utils/getScroll.js +36 -0
  1329. package/lib/utils/getScrollBar.d.ts +6 -0
  1330. package/lib/utils/getScrollBar.js +48 -0
  1331. package/lib/utils/helper.d.ts +34 -0
  1332. package/lib/utils/helper.js +115 -0
  1333. package/lib/utils/number.d.ts +13 -0
  1334. package/lib/utils/number.js +105 -0
  1335. package/lib/utils/omit.d.ts +1 -0
  1336. package/lib/utils/omit.js +18 -0
  1337. package/lib/utils/raf.d.ts +5 -0
  1338. package/lib/utils/raf.js +62 -0
  1339. package/lib/utils/range.d.ts +2 -0
  1340. package/lib/utils/range.js +28 -0
  1341. package/lib/utils/reactNode.d.ts +7 -0
  1342. package/lib/utils/reactNode.js +24 -0
  1343. package/lib/utils/ref.d.ts +7 -0
  1344. package/lib/utils/ref.js +56 -0
  1345. package/lib/utils/responsiveObserve.d.ts +21 -0
  1346. package/lib/utils/responsiveObserve.js +82 -0
  1347. package/lib/utils/scrollTo.d.ts +10 -0
  1348. package/lib/utils/scrollTo.js +52 -0
  1349. package/lib/utils/setStyle.d.ts +2 -0
  1350. package/lib/utils/setStyle.js +20 -0
  1351. package/lib/utils/stopPropagationHandler.d.ts +3 -0
  1352. package/lib/utils/stopPropagationHandler.js +19 -0
  1353. package/lib/utils/styleChecker.d.ts +4 -0
  1354. package/lib/utils/styleChecker.js +61 -0
  1355. package/lib/utils/type.d.ts +12 -0
  1356. package/lib/utils/type.js +27 -0
  1357. package/lib/utils/warnings.d.ts +8 -0
  1358. package/lib/utils/warnings.js +54 -0
  1359. package/package.json +186 -3
  1360. package/src/components/alert/Alert.tsx +94 -0
  1361. package/src/components/alert/__test__/Alert.test.js +49 -0
  1362. package/src/components/alert/__test__/__snapshots__/Alert.test.js.snap +17 -0
  1363. package/src/components/alert/index.ts +3 -0
  1364. package/src/components/alert/types.ts +24 -0
  1365. package/src/components/anchor/Anchor.tsx +268 -0
  1366. package/src/components/anchor/AnchorItem.tsx +85 -0
  1367. package/src/components/anchor/__test__/Anchor.test.js +10 -0
  1368. package/src/components/anchor/__test__/__snapshots__/Anchor.test.js.snap +19 -0
  1369. package/src/components/anchor/context.ts +4 -0
  1370. package/src/components/anchor/index.ts +3 -0
  1371. package/src/components/anchor/types.ts +46 -0
  1372. package/src/components/avatar/Avatar.tsx +103 -0
  1373. package/src/components/avatar/__test__/Avatar.test.js +45 -0
  1374. package/src/components/avatar/__test__/__snapshots__/Avatar.test.js.snap +29 -0
  1375. package/src/components/avatar/index.ts +3 -0
  1376. package/src/components/avatar/types.ts +33 -0
  1377. package/src/components/badge/Badge.tsx +112 -0
  1378. package/src/components/badge/__test__/Badge.test.js +65 -0
  1379. package/src/components/badge/index.ts +3 -0
  1380. package/src/components/badge/types.ts +34 -0
  1381. package/src/components/breadcrumb/Breadcrumb.tsx +109 -0
  1382. package/src/components/breadcrumb/BreadcrumbItem.tsx +126 -0
  1383. package/src/components/breadcrumb/__test__/Breadcrumb.test.js +69 -0
  1384. package/src/components/breadcrumb/__test__/__snapshots__/Breadcrumb.test.js.snap +72 -0
  1385. package/src/components/breadcrumb/context.ts +4 -0
  1386. package/src/components/breadcrumb/index.ts +6 -0
  1387. package/src/components/breadcrumb/types.ts +64 -0
  1388. package/src/components/button/Button.tsx +83 -0
  1389. package/src/components/button/ButtonGroup.tsx +29 -0
  1390. package/src/components/button/__tests__/Button.test.js +52 -0
  1391. package/src/components/button/__tests__/__snapshots__/Button.test.js.snap +22 -0
  1392. package/src/components/button/index.ts +13 -0
  1393. package/src/components/button/types.ts +90 -0
  1394. package/src/components/card/Card.tsx +37 -0
  1395. package/src/components/card/__test__/Card.test.js +20 -0
  1396. package/src/components/card/__test__/__snapshots__/Card.test.js.snap +11 -0
  1397. package/src/components/card/index.ts +3 -0
  1398. package/src/components/card/types.ts +28 -0
  1399. package/src/components/cascader/Cascader.tsx +417 -0
  1400. package/src/components/cascader/CascaderFilterPanel.tsx +124 -0
  1401. package/src/components/cascader/CascaderMenu.tsx +159 -0
  1402. package/src/components/cascader/CascaderPanel.tsx +138 -0
  1403. package/src/components/cascader/__tests__/Cascader.test.js +69 -0
  1404. package/src/components/cascader/__tests__/__snapshots__/Cascader.test.js.snap +903 -0
  1405. package/src/components/cascader/core/selector.tsx +136 -0
  1406. package/src/components/cascader/hook/index.ts +283 -0
  1407. package/src/components/cascader/index.ts +13 -0
  1408. package/src/components/cascader/types.ts +217 -0
  1409. package/src/components/cascader/utils/helper.ts +143 -0
  1410. package/src/components/checkbox/Checkbox.tsx +125 -0
  1411. package/src/components/checkbox/CheckboxGroup.tsx +74 -0
  1412. package/src/components/checkbox/__tests__/Checkbox.test.js +56 -0
  1413. package/src/components/checkbox/__tests__/CheckboxGroup.test.js +119 -0
  1414. package/src/components/checkbox/__tests__/__snapshots__/Checkbox.test.js.snap +24 -0
  1415. package/src/components/checkbox/context.ts +6 -0
  1416. package/src/components/checkbox/index.ts +13 -0
  1417. package/src/components/checkbox/types.ts +155 -0
  1418. package/src/components/clock/Clock.tsx +28 -0
  1419. package/src/components/clock/__test__/Clock.test.js +57 -0
  1420. package/src/components/clock/index.ts +3 -0
  1421. package/src/components/col/__tests__/Col.test.js +58 -0
  1422. package/src/components/col/__tests__/__snapshots__/Col.test.js.snap +17 -0
  1423. package/src/components/col/index.ts +5 -0
  1424. package/src/components/config-provider/__tests__/__snapshots__/components.test.js.snap +453 -0
  1425. package/src/components/config-provider/__tests__/components.test.js +68 -0
  1426. package/src/components/config-provider/context.tsx +17 -0
  1427. package/src/components/config-provider/index.tsx +44 -0
  1428. package/src/components/config-provider/types.ts +13 -0
  1429. package/src/components/config-provider/util.ts +30 -0
  1430. package/src/components/count-down/CountDown.tsx +35 -0
  1431. package/src/components/count-down/index.ts +3 -0
  1432. package/src/components/date-picker/DatePicker.tsx +350 -0
  1433. package/src/components/date-picker/components/PickerHeader.tsx +209 -0
  1434. package/src/components/date-picker/components/PickerTable.tsx +248 -0
  1435. package/src/components/date-picker/components/Shortcuts.tsx +131 -0
  1436. package/src/components/date-picker/constants.ts +37 -0
  1437. package/src/components/date-picker/index.tsx +3 -0
  1438. package/src/components/date-picker/panels/DatePickerPanel.tsx +168 -0
  1439. package/src/components/date-picker/panels/RangePickerPanel.tsx +448 -0
  1440. package/src/components/date-picker/types.ts +284 -0
  1441. package/src/components/date-picker/utils/date.ts +50 -0
  1442. package/src/components/date-picker/utils/disabledDate.ts +59 -0
  1443. package/src/components/date-picker/utils/format.ts +200 -0
  1444. package/src/components/default-page/DefaultPage.tsx +56 -0
  1445. package/src/components/default-page/__test__/DefaultPage.test.js +14 -0
  1446. package/src/components/default-page/__test__/__snapshots__/DefaultPage.test.js.snap +144 -0
  1447. package/src/components/default-page/icon/index.tsx +33 -0
  1448. package/src/components/default-page/icon/no-data.tsx +32 -0
  1449. package/src/components/default-page/icon/no-image.tsx +22 -0
  1450. package/src/components/default-page/icon/no-order.tsx +21 -0
  1451. package/src/components/default-page/icon/no-permission.tsx +26 -0
  1452. package/src/components/default-page/icon/no-product.tsx +25 -0
  1453. package/src/components/default-page/icon/no-promotion.tsx +24 -0
  1454. package/src/components/default-page/icon/no-rating.tsx +22 -0
  1455. package/src/components/default-page/icon/no-result.tsx +24 -0
  1456. package/src/components/default-page/icon/no-store.tsx +25 -0
  1457. package/src/components/default-page/icon/no-transaction.tsx +22 -0
  1458. package/src/components/default-page/icon/no-voucher.tsx +23 -0
  1459. package/src/components/default-page/icon/not-found.tsx +110 -0
  1460. package/src/components/default-page/index.ts +3 -0
  1461. package/src/components/default-page/types.ts +16 -0
  1462. package/src/components/dropdown/Dropdown.tsx +115 -0
  1463. package/src/components/dropdown/DropdownContext.ts +12 -0
  1464. package/src/components/dropdown/DropdownItem.tsx +62 -0
  1465. package/src/components/dropdown/DropdownItemGroup.tsx +22 -0
  1466. package/src/components/dropdown/DropdownMenu.tsx +68 -0
  1467. package/src/components/dropdown/__test__/Dropdown.test.js +71 -0
  1468. package/src/components/dropdown/__test__/__snapshots__/Dropdown.test.js.snap +682 -0
  1469. package/src/components/dropdown/index.ts +26 -0
  1470. package/src/components/dropdown/types.ts +69 -0
  1471. package/src/components/form/Form.tsx +81 -0
  1472. package/src/components/form/FormItem.tsx +136 -0
  1473. package/src/components/form/__test__/Form.test.js +61 -0
  1474. package/src/components/form/__test__/__snapshots__/Form.test.js.snap +60 -0
  1475. package/src/components/form/context.ts +12 -0
  1476. package/src/components/form/index.ts +18 -0
  1477. package/src/components/form/types.ts +74 -0
  1478. package/src/components/form/useForm.ts +32 -0
  1479. package/src/components/form/util.ts +14 -0
  1480. package/src/components/grid/Col.tsx +111 -0
  1481. package/src/components/grid/Row.tsx +124 -0
  1482. package/src/components/grid/RowContext.ts +11 -0
  1483. package/src/components/grid/__tests__/__snapshots__/index.test.js.snap +38 -0
  1484. package/src/components/grid/__tests__/gap.test.js +71 -0
  1485. package/src/components/grid/__tests__/index.test.js +79 -0
  1486. package/src/components/grid/index.ts +6 -0
  1487. package/src/components/grid/types.ts +47 -0
  1488. package/src/components/icon/Icon.tsx +98 -0
  1489. package/src/components/icon/index.ts +4 -0
  1490. package/src/components/icon/types.ts +28 -0
  1491. package/src/components/image-upload/__tests__/ImageUpload.test.js +179 -0
  1492. package/src/components/image-upload/index.tsx +226 -0
  1493. package/src/components/image-upload/request.ts +124 -0
  1494. package/src/components/image-upload/useOpenFiles.ts +48 -0
  1495. package/src/components/image-upload/useUploadFile.ts +90 -0
  1496. package/src/components/index.ts +99 -0
  1497. package/src/components/input/Input.tsx +508 -0
  1498. package/src/components/input/InputGroup.tsx +38 -0
  1499. package/src/components/input/__test__/Input.test.js +200 -0
  1500. package/src/components/input/__test__/__snapshots__/Input.test.js.snap +236 -0
  1501. package/src/components/input/index.ts +13 -0
  1502. package/src/components/input/types.ts +131 -0
  1503. package/src/components/input/utils.ts +71 -0
  1504. package/src/components/locale/default.tsx +49 -0
  1505. package/src/components/locale/index.tsx +4 -0
  1506. package/src/components/locale/types.tsx +68 -0
  1507. package/src/components/modal/Modal.tsx +53 -0
  1508. package/src/components/modal/ModalPortal.tsx +240 -0
  1509. package/src/components/modal/__test__/Modal.test.js +149 -0
  1510. package/src/components/modal/__test__/__snapshots__/Modal.test.js.snap +219 -0
  1511. package/src/components/modal/confirm.tsx +115 -0
  1512. package/src/components/modal/index.ts +35 -0
  1513. package/src/components/modal/types.ts +66 -0
  1514. package/src/components/number-input/NumberInput.tsx +185 -0
  1515. package/src/components/number-input/__test__/__snapshots__/index.test.js.snap +63 -0
  1516. package/src/components/number-input/__test__/index.test.js +39 -0
  1517. package/src/components/number-input/__test__/prefix.test.js +24 -0
  1518. package/src/components/number-input/index.ts +3 -0
  1519. package/src/components/number-input/types.ts +36 -0
  1520. package/src/components/pagination/Pagination.tsx +145 -0
  1521. package/src/components/pagination/__test__/Pagination.test.js +134 -0
  1522. package/src/components/pagination/__test__/__snapshots__/Pagination.test.js.snap +122 -0
  1523. package/src/components/pagination/index.ts +4 -0
  1524. package/src/components/pagination/jumper.tsx +59 -0
  1525. package/src/components/pagination/pages.tsx +215 -0
  1526. package/src/components/pagination/sizes.tsx +100 -0
  1527. package/src/components/pagination/types.ts +129 -0
  1528. package/src/components/panel/Panel.tsx +34 -0
  1529. package/src/components/panel/__test__/Panel.test.js +33 -0
  1530. package/src/components/panel/index.ts +3 -0
  1531. package/src/components/popover/Popover.tsx +61 -0
  1532. package/src/components/popover/__test__/Popover.test.js +88 -0
  1533. package/src/components/popover/index.ts +4 -0
  1534. package/src/components/popover/types.ts +12 -0
  1535. package/src/components/progress/Progress.tsx +87 -0
  1536. package/src/components/progress/__test__/Progress.test.js +35 -0
  1537. package/src/components/progress/__test__/__snapshots__/Progress.test.js.snap +30 -0
  1538. package/src/components/progress/index.ts +3 -0
  1539. package/src/components/progress/types.ts +11 -0
  1540. package/src/components/radio/GroupContext.tsx +5 -0
  1541. package/src/components/radio/Radio.tsx +89 -0
  1542. package/src/components/radio/RadioGroup.tsx +64 -0
  1543. package/src/components/radio/index.ts +13 -0
  1544. package/src/components/radio/types.ts +91 -0
  1545. package/src/components/rate/Rate.tsx +157 -0
  1546. package/src/components/rate/__test__/Rate.test.js +68 -0
  1547. package/src/components/rate/__test__/__snapshots__/Rate.test.js.snap +98 -0
  1548. package/src/components/rate/index.ts +3 -0
  1549. package/src/components/rate/types.ts +56 -0
  1550. package/src/components/row/__tests__/Row.test.js +39 -0
  1551. package/src/components/row/__tests__/__snapshots__/Row.test.js.snap +7 -0
  1552. package/src/components/row/index.ts +4 -0
  1553. package/src/components/search/Option.tsx +62 -0
  1554. package/src/components/search/OptionGroup.tsx +28 -0
  1555. package/src/components/search/Search.tsx +285 -0
  1556. package/src/components/search/__test__/Search.test.js +60 -0
  1557. package/src/components/search/__test__/__snapshots__/Search.test.js.snap +120 -0
  1558. package/src/components/search/context.ts +15 -0
  1559. package/src/components/search/index.ts +19 -0
  1560. package/src/components/search/types.ts +147 -0
  1561. package/src/components/select/MultiContent.tsx +279 -0
  1562. package/src/components/select/Option.tsx +60 -0
  1563. package/src/components/select/OptionAdd.tsx +59 -0
  1564. package/src/components/select/OptionGroup.tsx +34 -0
  1565. package/src/components/select/Select.tsx +572 -0
  1566. package/src/components/select/SelectTag.tsx +40 -0
  1567. package/src/components/select/__test__/Option.test.js +17 -0
  1568. package/src/components/select/__test__/Select.test.js +134 -0
  1569. package/src/components/select/context.ts +15 -0
  1570. package/src/components/select/index.ts +19 -0
  1571. package/src/components/select/types.ts +205 -0
  1572. package/src/components/select/useSelectState.ts +123 -0
  1573. package/src/components/sidebar/Item.tsx +53 -0
  1574. package/src/components/sidebar/ItemGroup.tsx +86 -0
  1575. package/src/components/sidebar/Sidebar.tsx +56 -0
  1576. package/src/components/sidebar/SidebarContext.ts +14 -0
  1577. package/src/components/sidebar/__test__/Sidebar.test.js +61 -0
  1578. package/src/components/sidebar/__test__/__snapshots__/Sidebar.test.js.snap +33 -0
  1579. package/src/components/sidebar/constant.ts +4 -0
  1580. package/src/components/sidebar/index.ts +16 -0
  1581. package/src/components/sidebar/types.ts +52 -0
  1582. package/src/components/skeleton/Skeleton.tsx +44 -0
  1583. package/src/components/skeleton/__test__/Skeleton.test.js +25 -0
  1584. package/src/components/skeleton/__test__/__snapshots__/Skeleton.test.js.snap +14 -0
  1585. package/src/components/skeleton/index.ts +3 -0
  1586. package/src/components/skeleton/types.ts +16 -0
  1587. package/src/components/slider/Slider.tsx +197 -0
  1588. package/src/components/slider/SliderTooltip.tsx +41 -0
  1589. package/src/components/slider/__test__/__snapshots__/index.test.js.snap +113 -0
  1590. package/src/components/slider/__test__/index.test.js +113 -0
  1591. package/src/components/slider/__test__/type.test.tsx +49 -0
  1592. package/src/components/slider/index.ts +3 -0
  1593. package/src/components/slider/types.ts +70 -0
  1594. package/src/components/spin/Spin.tsx +67 -0
  1595. package/src/components/spin/__test__/Spin.test.js +30 -0
  1596. package/src/components/spin/__test__/__snapshots__/Spin.test.js.snap +26 -0
  1597. package/src/components/spin/index.ts +4 -0
  1598. package/src/components/spin/types.ts +40 -0
  1599. package/src/components/steps/Step.tsx +105 -0
  1600. package/src/components/steps/Steps.tsx +177 -0
  1601. package/src/components/steps/__test__/Steps.test.js +59 -0
  1602. package/src/components/steps/__test__/__snapshots__/Steps.test.js.snap +773 -0
  1603. package/src/components/steps/arrow-icon.tsx +13 -0
  1604. package/src/components/steps/index.ts +15 -0
  1605. package/src/components/steps/types.ts +59 -0
  1606. package/src/components/switch/Switch.tsx +56 -0
  1607. package/src/components/switch/index.ts +3 -0
  1608. package/src/components/switch/types.ts +15 -0
  1609. package/src/components/table/ExpandIcon.tsx +41 -0
  1610. package/src/components/table/Table.tsx +480 -0
  1611. package/src/components/table/__test__/Table.expand.test.js +137 -0
  1612. package/src/components/table/__test__/Table.filter.test.js +103 -0
  1613. package/src/components/table/__test__/Table.pagination.test.js +65 -0
  1614. package/src/components/table/__test__/Table.rowSelection.test.js +957 -0
  1615. package/src/components/table/__test__/Table.sorter.test.js +730 -0
  1616. package/src/components/table/__test__/Table.test.js +267 -0
  1617. package/src/components/table/__test__/__snapshots__/Table.expand.test.js.snap +62 -0
  1618. package/src/components/table/__test__/__snapshots__/Table.filter.test.js.snap +105 -0
  1619. package/src/components/table/__test__/__snapshots__/Table.pagination.test.js.snap +102 -0
  1620. package/src/components/table/__test__/__snapshots__/Table.rowSelection.test.js.snap +896 -0
  1621. package/src/components/table/__test__/__snapshots__/Table.sorter.test.js.snap +31 -0
  1622. package/src/components/table/__test__/__snapshots__/Table.test.js.snap +52 -0
  1623. package/src/components/table/__test__/__snapshots__/empty.test.js.snap +560 -0
  1624. package/src/components/table/__test__/empty.test.js +76 -0
  1625. package/src/components/table/hooks/useBreakpoint.ts +18 -0
  1626. package/src/components/table/hooks/useFilter/FilterDropdown.tsx +218 -0
  1627. package/src/components/table/hooks/useFilter/index.tsx +233 -0
  1628. package/src/components/table/hooks/useLazyKVMap.ts +52 -0
  1629. package/src/components/table/hooks/usePagination.ts +121 -0
  1630. package/src/components/table/hooks/useSelection.tsx +487 -0
  1631. package/src/components/table/hooks/useSorter.tsx +401 -0
  1632. package/src/components/table/hooks/useTitleColumns.tsx +31 -0
  1633. package/src/components/table/index.tsx +25 -0
  1634. package/src/components/table/types.tsx +244 -0
  1635. package/src/components/table/util.ts +29 -0
  1636. package/src/components/tabs/ScrollableInkTabBar.tsx +33 -0
  1637. package/src/components/tabs/ScrollableTabBarNode.tsx +390 -0
  1638. package/src/components/tabs/TabBar.tsx +71 -0
  1639. package/src/components/tabs/Tabs.tsx +135 -0
  1640. package/src/components/tabs/__tests__/Card.test.js +27 -0
  1641. package/src/components/tabs/__tests__/Module.test.js +27 -0
  1642. package/src/components/tabs/__tests__/ScrollableInkTabBar.test.js +11 -0
  1643. package/src/components/tabs/__tests__/ScrollableTabBarNode.test.js +18 -0
  1644. package/src/components/tabs/__tests__/Tabs.test.js +161 -0
  1645. package/src/components/tabs/__tests__/__snapshots__/Card.test.js.snap +114 -0
  1646. package/src/components/tabs/__tests__/__snapshots__/Module.test.js.snap +114 -0
  1647. package/src/components/tabs/__tests__/__snapshots__/ScrollableInkTabBar.test.js.snap +31 -0
  1648. package/src/components/tabs/__tests__/__snapshots__/ScrollableTabBarNode.test.js.snap +20 -0
  1649. package/src/components/tabs/__tests__/__snapshots__/Tabs.test.js.snap +115 -0
  1650. package/src/components/tabs/index.ts +13 -0
  1651. package/src/components/tabs/types.ts +77 -0
  1652. package/src/components/tabs/utils.ts +15 -0
  1653. package/src/components/tag/Tag.tsx +36 -0
  1654. package/src/components/tag/__test__/Tag.test.js +10 -0
  1655. package/src/components/tag/__test__/__snapshots__/Tag.test.js.snap +9 -0
  1656. package/src/components/tag/index.ts +3 -0
  1657. package/src/components/tag/types.ts +34 -0
  1658. package/src/components/time-picker/TimePicker.tsx +320 -0
  1659. package/src/components/time-picker/TimePickerScrollbar.tsx +150 -0
  1660. package/src/components/time-picker/__test__/Timepicker.test.js +31 -0
  1661. package/src/components/time-picker/config.ts +31 -0
  1662. package/src/components/time-picker/index.tsx +3 -0
  1663. package/src/components/time-picker/types.ts +135 -0
  1664. package/src/components/timeline/Timeline.tsx +26 -0
  1665. package/src/components/timeline/TimelineItem.tsx +146 -0
  1666. package/src/components/timeline/__test__/Timeline.test.js +37 -0
  1667. package/src/components/timeline/__test__/__snapshots__/Timeline.test.js.snap +61 -0
  1668. package/src/components/timeline/index.ts +13 -0
  1669. package/src/components/timeline/types.ts +29 -0
  1670. package/src/components/toast/Toast.tsx +214 -0
  1671. package/src/components/toast/__test__/Toast.test.js +195 -0
  1672. package/src/components/toast/hooks/useMessage.tsx +82 -0
  1673. package/src/components/toast/index.ts +3 -0
  1674. package/src/components/toast/types.ts +63 -0
  1675. package/src/components/tooltip/Tooltip.tsx +180 -0
  1676. package/src/components/tooltip/__test__/Tooltip.test.js +14 -0
  1677. package/src/components/tooltip/__test__/__snapshots__/Tooltip.test.js.snap +562 -0
  1678. package/src/components/tooltip/index.ts +4 -0
  1679. package/src/components/tooltip/placements.tsx +98 -0
  1680. package/src/components/tooltip/types.ts +81 -0
  1681. package/src/components/transfer/Transfer.tsx +258 -0
  1682. package/src/components/transfer/TransferPanel.tsx +329 -0
  1683. package/src/components/transfer/__test__/Transfer.test.js +68 -0
  1684. package/src/components/transfer/__test__/__snapshots__/Transfer.test.js.snap +3668 -0
  1685. package/src/components/transfer/assets/no-result.svg +17 -0
  1686. package/src/components/transfer/index.ts +3 -0
  1687. package/src/components/transfer/no-result.tsx +24 -0
  1688. package/src/components/transfer/types.ts +103 -0
  1689. package/src/components/tree/DirectoryTree.tsx +300 -0
  1690. package/src/components/tree/OverflowTooltip.tsx +29 -0
  1691. package/src/components/tree/Tree.tsx +105 -0
  1692. package/src/components/tree/__test__/Tree.test.js +144 -0
  1693. package/src/components/tree/__test__/__snapshots__/Tree.test.js.snap +150 -0
  1694. package/src/components/tree/index.ts +18 -0
  1695. package/src/components/tree/types.ts +101 -0
  1696. package/src/components/tree/utils/dictUtil.ts +92 -0
  1697. package/src/components/tree/utils/dropIndicator.tsx +33 -0
  1698. package/src/components/tree/utils/loop.ts +45 -0
  1699. package/src/components/tree/utils/motion.ts +23 -0
  1700. package/src/components/upload/Upload.tsx +275 -0
  1701. package/src/components/upload/__test__/Upload.test.js +24 -0
  1702. package/src/components/upload/__test__/__snapshots__/Upload.test.js.snap +17 -0
  1703. package/src/components/upload/ajax.ts +113 -0
  1704. package/src/components/upload/index.ts +5 -0
  1705. package/src/components/upload/types.ts +87 -0
  1706. package/src/components/upload/utils.ts +51 -0
  1707. package/src/gatsby-theme-docz/components/Logo/index.js +12 -0
  1708. package/src/gatsby-theme-docz/components/Logo/shopee-logo.png +0 -0
  1709. package/src/gatsby-theme-docz/components/Logo/styles.js +22 -0
  1710. package/src/gatsby-theme-docz/components/Props/index.js +64 -0
  1711. package/src/gatsby-theme-docz/components/Props/styles.js +51 -0
  1712. package/src/hooks/clickoutside.ts +41 -0
  1713. package/src/hooks/index.ts +7 -0
  1714. package/src/hooks/useFlexGapSupport.ts +11 -0
  1715. package/src/hooks/useForceUpdate.ts +6 -0
  1716. package/src/hooks/useMergedState.ts +56 -0
  1717. package/src/hooks/useOverflow.ts +74 -0
  1718. package/src/hooks/useSyncState.ts +18 -0
  1719. package/src/hooks/useTiming.ts +25 -0
  1720. package/src/styles/common/colors.scss +179 -0
  1721. package/src/styles/common/metrics.scss +3 -0
  1722. package/src/styles/common/motion/index.scss +2 -0
  1723. package/src/styles/common/motion/move.scss +122 -0
  1724. package/src/styles/common/motion/zoom.scss +169 -0
  1725. package/src/styles/common/selector.scss +149 -0
  1726. package/src/styles/common/variables.scss +417 -0
  1727. package/src/styles/components/alert/alert.scss +146 -0
  1728. package/src/styles/components/alert/index.scss +2 -0
  1729. package/src/styles/components/anchor/anchor.scss +83 -0
  1730. package/src/styles/components/anchor/index.scss +2 -0
  1731. package/src/styles/components/avatar/avatar.scss +64 -0
  1732. package/src/styles/components/avatar/index.scss +2 -0
  1733. package/src/styles/components/badge/badge.scss +107 -0
  1734. package/src/styles/components/badge/index.scss +1 -0
  1735. package/src/styles/components/breadcrumb/breadcrumb-item.scss +58 -0
  1736. package/src/styles/components/breadcrumb/breadcrumb.scss +90 -0
  1737. package/src/styles/components/breadcrumb/index.scss +3 -0
  1738. package/src/styles/components/button/button-group.scss +56 -0
  1739. package/src/styles/components/button/button.scss +224 -0
  1740. package/src/styles/components/button/index.scss +3 -0
  1741. package/src/styles/components/card/card.scss +57 -0
  1742. package/src/styles/components/card/index.scss +1 -0
  1743. package/src/styles/components/cascader/cascader-filter-panel.scss +39 -0
  1744. package/src/styles/components/cascader/cascader-menu.scss +82 -0
  1745. package/src/styles/components/cascader/cascader-panel.scss +44 -0
  1746. package/src/styles/components/cascader/cascader.scss +20 -0
  1747. package/src/styles/components/cascader/index.scss +6 -0
  1748. package/src/styles/components/checkbox/checkbox-button.scss +101 -0
  1749. package/src/styles/components/checkbox/checkbox-group.scss +122 -0
  1750. package/src/styles/components/checkbox/checkbox.scss +145 -0
  1751. package/src/styles/components/checkbox/index.scss +4 -0
  1752. package/src/styles/components/col/index.scss +1 -0
  1753. package/src/styles/components/config-provider/index.scss +1 -0
  1754. package/src/styles/components/date-picker/date-picker.scss +143 -0
  1755. package/src/styles/components/date-picker/date-shortcuts.scss +84 -0
  1756. package/src/styles/components/date-picker/index.scss +15 -0
  1757. package/src/styles/components/date-picker/picker-header.scss +74 -0
  1758. package/src/styles/components/date-picker/picker-table.scss +173 -0
  1759. package/src/styles/components/date-picker/range-picker.scss +9 -0
  1760. package/src/styles/components/default-page/default-page.scss +34 -0
  1761. package/src/styles/components/default-page/index.scss +2 -0
  1762. package/src/styles/components/dropdown/dropdown-item-group.scss +16 -0
  1763. package/src/styles/components/dropdown/dropdown-item.scss +55 -0
  1764. package/src/styles/components/dropdown/dropdown-menu.scss +3 -0
  1765. package/src/styles/components/dropdown/dropdown.scss +14 -0
  1766. package/src/styles/components/dropdown/index.scss +7 -0
  1767. package/src/styles/components/form/form-item.scss +104 -0
  1768. package/src/styles/components/form/form.scss +48 -0
  1769. package/src/styles/components/form/index.scss +2 -0
  1770. package/src/styles/components/grid/index.scss +2 -0
  1771. package/src/styles/components/grid/mixin.scss +49 -0
  1772. package/src/styles/components/grid/row.scss +114 -0
  1773. package/src/styles/components/icon/icon.scss +42 -0
  1774. package/src/styles/components/icon/index.scss +2 -0
  1775. package/src/styles/components/image-upload/image-upload.scss +91 -0
  1776. package/src/styles/components/image-upload/index.scss +2 -0
  1777. package/src/styles/components/input/index.scss +3 -0
  1778. package/src/styles/components/input/input-group.scss +35 -0
  1779. package/src/styles/components/input/input.scss +300 -0
  1780. package/src/styles/components/modal/index.scss +3 -0
  1781. package/src/styles/components/modal/modal.scss +210 -0
  1782. package/src/styles/components/number-input/affix.scss +80 -0
  1783. package/src/styles/components/number-input/index.scss +6 -0
  1784. package/src/styles/components/number-input/mixin.scss +363 -0
  1785. package/src/styles/components/number-input/number-input.scss +236 -0
  1786. package/src/styles/components/number-input/status.scss +61 -0
  1787. package/src/styles/components/pagination/index.scss +4 -0
  1788. package/src/styles/components/pagination/pagination.scss +196 -0
  1789. package/src/styles/components/panel/index.scss +1 -0
  1790. package/src/styles/components/panel/panel.scss +19 -0
  1791. package/src/styles/components/popover/index.scss +1 -0
  1792. package/src/styles/components/popover/popover.scss +169 -0
  1793. package/src/styles/components/progress/index.scss +2 -0
  1794. package/src/styles/components/progress/progress.scss +75 -0
  1795. package/src/styles/components/radio/index.scss +3 -0
  1796. package/src/styles/components/radio/radio-button.scss +58 -0
  1797. package/src/styles/components/radio/radio-group.scss +122 -0
  1798. package/src/styles/components/radio/radio.scss +89 -0
  1799. package/src/styles/components/rate/index.scss +2 -0
  1800. package/src/styles/components/rate/rate.scss +59 -0
  1801. package/src/styles/components/row/index.scss +1 -0
  1802. package/src/styles/components/scrollbar/index.scss +1 -0
  1803. package/src/styles/components/scrollbar/scrollbar.scss +78 -0
  1804. package/src/styles/components/search/index.scss +5 -0
  1805. package/src/styles/components/search/search.scss +72 -0
  1806. package/src/styles/components/select/index.scss +8 -0
  1807. package/src/styles/components/select/option-add.scss +53 -0
  1808. package/src/styles/components/select/option-group.scss +20 -0
  1809. package/src/styles/components/select/select-tag.scss +73 -0
  1810. package/src/styles/components/select/select.scss +276 -0
  1811. package/src/styles/components/sidebar/index.scss +4 -0
  1812. package/src/styles/components/sidebar/item-group.scss +94 -0
  1813. package/src/styles/components/sidebar/item.scss +24 -0
  1814. package/src/styles/components/sidebar/sidebar.scss +14 -0
  1815. package/src/styles/components/skeleton/index.scss +1 -0
  1816. package/src/styles/components/skeleton/skeleton.scss +65 -0
  1817. package/src/styles/components/slider/index.scss +1 -0
  1818. package/src/styles/components/slider/slider.scss +205 -0
  1819. package/src/styles/components/spin/index.scss +2 -0
  1820. package/src/styles/components/spin/spin.scss +62 -0
  1821. package/src/styles/components/steps/index.scss +4 -0
  1822. package/src/styles/components/steps/step.scss +180 -0
  1823. package/src/styles/components/steps/steps.scss +125 -0
  1824. package/src/styles/components/switch/index.scss +1 -0
  1825. package/src/styles/components/switch/switch.scss +148 -0
  1826. package/src/styles/components/table/bordered.scss +105 -0
  1827. package/src/styles/components/table/empty.scss +26 -0
  1828. package/src/styles/components/table/index.scss +13 -0
  1829. package/src/styles/components/table/nest.scss +5 -0
  1830. package/src/styles/components/table/radius.scss +66 -0
  1831. package/src/styles/components/table/stripe.scss +9 -0
  1832. package/src/styles/components/table/table.scss +588 -0
  1833. package/src/styles/components/tabs/card-style.scss +186 -0
  1834. package/src/styles/components/tabs/index.scss +2 -0
  1835. package/src/styles/components/tabs/module-style.scss +49 -0
  1836. package/src/styles/components/tabs/tabs.scss +453 -0
  1837. package/src/styles/components/tag/index.scss +1 -0
  1838. package/src/styles/components/tag/tag.scss +245 -0
  1839. package/src/styles/components/time-picker/index.scss +4 -0
  1840. package/src/styles/components/time-picker/time-picker.scss +258 -0
  1841. package/src/styles/components/timeline/index.scss +3 -0
  1842. package/src/styles/components/timeline/timeline.scss +196 -0
  1843. package/src/styles/components/toast/index.scss +2 -0
  1844. package/src/styles/components/toast/toast.scss +88 -0
  1845. package/src/styles/components/tooltip/index.scss +1 -0
  1846. package/src/styles/components/tooltip/tooltip.scss +185 -0
  1847. package/src/styles/components/transfer/index.scss +5 -0
  1848. package/src/styles/components/transfer/transfer-panel.scss +80 -0
  1849. package/src/styles/components/transfer/transfer.scss +59 -0
  1850. package/src/styles/components/tree/checkboxMixin.scss +192 -0
  1851. package/src/styles/components/tree/directory.scss +71 -0
  1852. package/src/styles/components/tree/index.scss +21 -0
  1853. package/src/styles/components/tree/mixin.scss +298 -0
  1854. package/src/styles/components/upload/index.scss +1 -0
  1855. package/src/styles/components/upload/upload.scss +47 -0
  1856. package/src/styles/index.scss +49 -0
  1857. package/src/styles/mixins/button.scss +67 -0
  1858. package/src/styles/mixins/common.scss +43 -0
  1859. package/src/styles/mixins/compatibility.scss +13 -0
  1860. package/src/styles/mixins/icon.scss +24 -0
  1861. package/src/styles/mixins/index.scss +6 -0
  1862. package/src/styles/mixins/operation-unit.scss +18 -0
  1863. package/src/styles/mixins/transition.scss +33 -0
  1864. package/src/styles/root.scss +547 -0
  1865. package/src/styles/themes/default.scss +8 -0
  1866. package/src/styles/var-no-custom.scss +5 -0
  1867. package/src/styles/var.scss +6 -0
  1868. package/src/types/global.d.ts +1 -0
  1869. package/src/utils/colors.ts +5 -0
  1870. package/src/utils/date.ts +291 -0
  1871. package/src/utils/debounce.ts +228 -0
  1872. package/src/utils/dom.ts +240 -0
  1873. package/src/utils/easings.ts +10 -0
  1874. package/src/utils/getScroll.ts +27 -0
  1875. package/src/utils/getScrollBar.ts +46 -0
  1876. package/src/utils/helper.ts +83 -0
  1877. package/src/utils/number.ts +88 -0
  1878. package/src/utils/omit.ts +14 -0
  1879. package/src/utils/raf.ts +48 -0
  1880. package/src/utils/range.ts +9 -0
  1881. package/src/utils/reactNode.ts +24 -0
  1882. package/src/utils/ref.ts +43 -0
  1883. package/src/utils/responsiveObserve.ts +76 -0
  1884. package/src/utils/scrollTo.ts +38 -0
  1885. package/src/utils/setStyle.ts +18 -0
  1886. package/src/utils/stopPropagationHandler.ts +12 -0
  1887. package/src/utils/styleChecker.ts +47 -0
  1888. package/src/utils/type.ts +16 -0
  1889. package/src/utils/warnings.ts +43 -0
@@ -0,0 +1,3956 @@
1
+ /** text **/
2
+ /** z-index **/
3
+ /** fill **/
4
+ /** boder **/
5
+ .move-up-enter,
6
+ .move-up-appear {
7
+ animation-duration: 0.2s;
8
+ animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
9
+ animation-fill-mode: both;
10
+ animation-play-state: paused; }
11
+
12
+ .move-up-leave {
13
+ animation-duration: 0.2s;
14
+ animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
15
+ animation-fill-mode: both;
16
+ animation-play-state: paused; }
17
+
18
+ .move-up-enter.move-up-enter-active,
19
+ .move-up-appear.move-up-appear-active {
20
+ animation-name: shopeeMoveUpIn;
21
+ animation-play-state: running; }
22
+
23
+ .move-up-leave.move-up-leave-active {
24
+ animation-name: shopeeMoveUpOut;
25
+ animation-play-state: running;
26
+ pointer-events: none; }
27
+
28
+ .move-up-enter,
29
+ .move-up-appear {
30
+ opacity: 0;
31
+ animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1); }
32
+
33
+ .move-up-leave {
34
+ animation-timing-function: cubic-bezier(0.6, 0.04, 0.98, 0.34); }
35
+
36
+ .move-down-enter,
37
+ .move-down-appear {
38
+ animation-duration: 0.2s;
39
+ animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
40
+ animation-fill-mode: both;
41
+ animation-play-state: paused; }
42
+
43
+ .move-down-leave {
44
+ animation-duration: 0.2s;
45
+ animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
46
+ animation-fill-mode: both;
47
+ animation-play-state: paused; }
48
+
49
+ .move-down-enter.move-down-enter-active,
50
+ .move-down-appear.move-down-appear-active {
51
+ animation-name: shopeeMoveDownIn;
52
+ animation-play-state: running; }
53
+
54
+ .move-down-leave.move-down-leave-active {
55
+ animation-name: shopeeMoveDownOut;
56
+ animation-play-state: running;
57
+ pointer-events: none; }
58
+
59
+ .move-down-enter,
60
+ .move-down-appear {
61
+ opacity: 0;
62
+ animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1); }
63
+
64
+ .move-down-leave {
65
+ animation-timing-function: cubic-bezier(0.6, 0.04, 0.98, 0.34); }
66
+
67
+ .move-left-enter,
68
+ .move-left-appear {
69
+ animation-duration: 0.2s;
70
+ animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
71
+ animation-fill-mode: both;
72
+ animation-play-state: paused; }
73
+
74
+ .move-left-leave {
75
+ animation-duration: 0.2s;
76
+ animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
77
+ animation-fill-mode: both;
78
+ animation-play-state: paused; }
79
+
80
+ .move-left-enter.move-left-enter-active,
81
+ .move-left-appear.move-left-appear-active {
82
+ animation-name: shopeeMoveLeftIn;
83
+ animation-play-state: running; }
84
+
85
+ .move-left-leave.move-left-leave-active {
86
+ animation-name: shopeeMoveLeftOut;
87
+ animation-play-state: running;
88
+ pointer-events: none; }
89
+
90
+ .move-left-enter,
91
+ .move-left-appear {
92
+ opacity: 0;
93
+ animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1); }
94
+
95
+ .move-left-leave {
96
+ animation-timing-function: cubic-bezier(0.6, 0.04, 0.98, 0.34); }
97
+
98
+ .move-right-enter,
99
+ .move-right-appear {
100
+ animation-duration: 0.2s;
101
+ animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
102
+ animation-fill-mode: both;
103
+ animation-play-state: paused; }
104
+
105
+ .move-right-leave {
106
+ animation-duration: 0.2s;
107
+ animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
108
+ animation-fill-mode: both;
109
+ animation-play-state: paused; }
110
+
111
+ .move-right-enter.move-right-enter-active,
112
+ .move-right-appear.move-right-appear-active {
113
+ animation-name: shopeeMoveRightIn;
114
+ animation-play-state: running; }
115
+
116
+ .move-right-leave.move-right-leave-active {
117
+ animation-name: shopeeMoveRightOut;
118
+ animation-play-state: running;
119
+ pointer-events: none; }
120
+
121
+ .move-right-enter,
122
+ .move-right-appear {
123
+ opacity: 0;
124
+ animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1); }
125
+
126
+ .move-right-leave {
127
+ animation-timing-function: cubic-bezier(0.6, 0.04, 0.98, 0.34); }
128
+
129
+ @keyframes shopeeMoveDownIn {
130
+ 0% {
131
+ transform: translateY(100%);
132
+ transform-origin: 0 0;
133
+ opacity: 0; }
134
+ 100% {
135
+ transform: translateY(0%);
136
+ transform-origin: 0 0;
137
+ opacity: 1; } }
138
+
139
+ @keyframes shopeeMoveDownOut {
140
+ 0% {
141
+ transform: translateY(0%);
142
+ transform-origin: 0 0;
143
+ opacity: 1; }
144
+ 100% {
145
+ transform: translateY(100%);
146
+ transform-origin: 0 0;
147
+ opacity: 0; } }
148
+
149
+ @keyframes shopeeMoveLeftIn {
150
+ 0% {
151
+ transform: translateX(-100%);
152
+ transform-origin: 0 0;
153
+ opacity: 0; }
154
+ 100% {
155
+ transform: translateX(0%);
156
+ transform-origin: 0 0;
157
+ opacity: 1; } }
158
+
159
+ @keyframes shopeeMoveLeftOut {
160
+ 0% {
161
+ transform: translateX(0%);
162
+ transform-origin: 0 0;
163
+ opacity: 1; }
164
+ 100% {
165
+ transform: translateX(-100%);
166
+ transform-origin: 0 0;
167
+ opacity: 0; } }
168
+
169
+ @keyframes shopeeMoveRightIn {
170
+ 0% {
171
+ transform: translateX(100%);
172
+ transform-origin: 0 0;
173
+ opacity: 0; }
174
+ 100% {
175
+ transform: translateX(0%);
176
+ transform-origin: 0 0;
177
+ opacity: 1; } }
178
+
179
+ @keyframes shopeeMoveRightOut {
180
+ 0% {
181
+ transform: translateX(0%);
182
+ transform-origin: 0 0;
183
+ opacity: 1; }
184
+ 100% {
185
+ transform: translateX(100%);
186
+ transform-origin: 0 0;
187
+ opacity: 0; } }
188
+
189
+ @keyframes shopeeMoveUpIn {
190
+ 0% {
191
+ transform: translateY(-100%);
192
+ transform-origin: 0 0;
193
+ opacity: 0; }
194
+ 100% {
195
+ transform: translateY(0%);
196
+ transform-origin: 0 0;
197
+ opacity: 1; } }
198
+
199
+ @keyframes shopeeMoveUpOut {
200
+ 0% {
201
+ transform: translateY(0%);
202
+ transform-origin: 0 0;
203
+ opacity: 1; }
204
+ 100% {
205
+ transform: translateY(-100%);
206
+ transform-origin: 0 0;
207
+ opacity: 0; } }
208
+
209
+ .shopee-react-zoom-enter,
210
+ .shopee-react-zoom-appear {
211
+ animation-duration: 0.2s;
212
+ animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
213
+ animation-fill-mode: both;
214
+ animation-play-state: paused; }
215
+
216
+ .shopee-react-zoom-leave {
217
+ animation-duration: 0.2s;
218
+ animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
219
+ animation-fill-mode: both;
220
+ animation-play-state: paused; }
221
+
222
+ .shopee-react-zoom-enter.shopee-react-zoom-enter-active,
223
+ .shopee-react-zoom-appear.shopee-react-zoom-appear-active {
224
+ animation-name: shopeeZoomIn;
225
+ animation-play-state: running; }
226
+
227
+ .shopee-react-zoom-leave.shopee-react-zoom-leave-active {
228
+ animation-name: shopeeZoomOut;
229
+ animation-play-state: running;
230
+ pointer-events: none; }
231
+
232
+ .shopee-react-zoom-enter,
233
+ .shopee-react-zoom-appear {
234
+ transform: scale(0);
235
+ opacity: 0;
236
+ animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1); }
237
+ .shopee-react-zoom-enter-prepare,
238
+ .shopee-react-zoom-appear-prepare {
239
+ transform: none; }
240
+
241
+ .shopee-react-zoom-leave {
242
+ animation-timing-function: cubic-bezier(0.78, 0.14, 0.15, 0.86); }
243
+
244
+ .shopee-react-zoom-big-enter,
245
+ .shopee-react-zoom-big-appear {
246
+ animation-duration: 0.2s;
247
+ animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
248
+ animation-fill-mode: both;
249
+ animation-play-state: paused; }
250
+
251
+ .shopee-react-zoom-big-leave {
252
+ animation-duration: 0.2s;
253
+ animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
254
+ animation-fill-mode: both;
255
+ animation-play-state: paused; }
256
+
257
+ .shopee-react-zoom-big-enter.shopee-react-zoom-big-enter-active,
258
+ .shopee-react-zoom-big-appear.shopee-react-zoom-big-appear-active {
259
+ animation-name: shopeeZoomBigIn;
260
+ animation-play-state: running; }
261
+
262
+ .shopee-react-zoom-big-leave.shopee-react-zoom-big-leave-active {
263
+ animation-name: shopeeZoomBigOut;
264
+ animation-play-state: running;
265
+ pointer-events: none; }
266
+
267
+ .shopee-react-zoom-big-enter,
268
+ .shopee-react-zoom-big-appear {
269
+ transform: scale(0);
270
+ opacity: 0;
271
+ animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1); }
272
+ .shopee-react-zoom-big-enter-prepare,
273
+ .shopee-react-zoom-big-appear-prepare {
274
+ transform: none; }
275
+
276
+ .shopee-react-zoom-big-leave {
277
+ animation-timing-function: cubic-bezier(0.78, 0.14, 0.15, 0.86); }
278
+
279
+ .shopee-react-zoom-big-fast-enter,
280
+ .shopee-react-zoom-big-fast-appear {
281
+ animation-duration: 0.1s;
282
+ animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
283
+ animation-fill-mode: both;
284
+ animation-play-state: paused; }
285
+
286
+ .shopee-react-zoom-big-fast-leave {
287
+ animation-duration: 0.1s;
288
+ animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
289
+ animation-fill-mode: both;
290
+ animation-play-state: paused; }
291
+
292
+ .shopee-react-zoom-big-fast-enter.shopee-react-zoom-big-fast-enter-active,
293
+ .shopee-react-zoom-big-fast-appear.shopee-react-zoom-big-fast-appear-active {
294
+ animation-name: shopeeZoomBigIn;
295
+ animation-play-state: running; }
296
+
297
+ .shopee-react-zoom-big-fast-leave.shopee-react-zoom-big-fast-leave-active {
298
+ animation-name: shopeeZoomBigOut;
299
+ animation-play-state: running;
300
+ pointer-events: none; }
301
+
302
+ .shopee-react-zoom-big-fast-enter,
303
+ .shopee-react-zoom-big-fast-appear {
304
+ transform: scale(0);
305
+ opacity: 0;
306
+ animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1); }
307
+ .shopee-react-zoom-big-fast-enter-prepare,
308
+ .shopee-react-zoom-big-fast-appear-prepare {
309
+ transform: none; }
310
+
311
+ .shopee-react-zoom-big-fast-leave {
312
+ animation-timing-function: cubic-bezier(0.78, 0.14, 0.15, 0.86); }
313
+
314
+ .shopee-react-zoom-up-enter,
315
+ .shopee-react-zoom-up-appear {
316
+ animation-duration: 0.2s;
317
+ animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
318
+ animation-fill-mode: both;
319
+ animation-play-state: paused; }
320
+
321
+ .shopee-react-zoom-up-leave {
322
+ animation-duration: 0.2s;
323
+ animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
324
+ animation-fill-mode: both;
325
+ animation-play-state: paused; }
326
+
327
+ .shopee-react-zoom-up-enter.shopee-react-zoom-up-enter-active,
328
+ .shopee-react-zoom-up-appear.shopee-react-zoom-up-appear-active {
329
+ animation-name: shopeeZoomUpIn;
330
+ animation-play-state: running; }
331
+
332
+ .shopee-react-zoom-up-leave.shopee-react-zoom-up-leave-active {
333
+ animation-name: shopeeZoomUpOut;
334
+ animation-play-state: running;
335
+ pointer-events: none; }
336
+
337
+ .shopee-react-zoom-up-enter,
338
+ .shopee-react-zoom-up-appear {
339
+ transform: scale(0);
340
+ opacity: 0;
341
+ animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1); }
342
+ .shopee-react-zoom-up-enter-prepare,
343
+ .shopee-react-zoom-up-appear-prepare {
344
+ transform: none; }
345
+
346
+ .shopee-react-zoom-up-leave {
347
+ animation-timing-function: cubic-bezier(0.78, 0.14, 0.15, 0.86); }
348
+
349
+ .shopee-react-zoom-down-enter,
350
+ .shopee-react-zoom-down-appear {
351
+ animation-duration: 0.2s;
352
+ animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
353
+ animation-fill-mode: both;
354
+ animation-play-state: paused; }
355
+
356
+ .shopee-react-zoom-down-leave {
357
+ animation-duration: 0.2s;
358
+ animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
359
+ animation-fill-mode: both;
360
+ animation-play-state: paused; }
361
+
362
+ .shopee-react-zoom-down-enter.shopee-react-zoom-down-enter-active,
363
+ .shopee-react-zoom-down-appear.shopee-react-zoom-down-appear-active {
364
+ animation-name: shopeeZoomDownIn;
365
+ animation-play-state: running; }
366
+
367
+ .shopee-react-zoom-down-leave.shopee-react-zoom-down-leave-active {
368
+ animation-name: shopeeZoomDownOut;
369
+ animation-play-state: running;
370
+ pointer-events: none; }
371
+
372
+ .shopee-react-zoom-down-enter,
373
+ .shopee-react-zoom-down-appear {
374
+ transform: scale(0);
375
+ opacity: 0;
376
+ animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1); }
377
+ .shopee-react-zoom-down-enter-prepare,
378
+ .shopee-react-zoom-down-appear-prepare {
379
+ transform: none; }
380
+
381
+ .shopee-react-zoom-down-leave {
382
+ animation-timing-function: cubic-bezier(0.78, 0.14, 0.15, 0.86); }
383
+
384
+ .shopee-react-zoom-left-enter,
385
+ .shopee-react-zoom-left-appear {
386
+ animation-duration: 0.2s;
387
+ animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
388
+ animation-fill-mode: both;
389
+ animation-play-state: paused; }
390
+
391
+ .shopee-react-zoom-left-leave {
392
+ animation-duration: 0.2s;
393
+ animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
394
+ animation-fill-mode: both;
395
+ animation-play-state: paused; }
396
+
397
+ .shopee-react-zoom-left-enter.shopee-react-zoom-left-enter-active,
398
+ .shopee-react-zoom-left-appear.shopee-react-zoom-left-appear-active {
399
+ animation-name: shopeeZoomLeftIn;
400
+ animation-play-state: running; }
401
+
402
+ .shopee-react-zoom-left-leave.shopee-react-zoom-left-leave-active {
403
+ animation-name: shopeeZoomLeftOut;
404
+ animation-play-state: running;
405
+ pointer-events: none; }
406
+
407
+ .shopee-react-zoom-left-enter,
408
+ .shopee-react-zoom-left-appear {
409
+ transform: scale(0);
410
+ opacity: 0;
411
+ animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1); }
412
+ .shopee-react-zoom-left-enter-prepare,
413
+ .shopee-react-zoom-left-appear-prepare {
414
+ transform: none; }
415
+
416
+ .shopee-react-zoom-left-leave {
417
+ animation-timing-function: cubic-bezier(0.78, 0.14, 0.15, 0.86); }
418
+
419
+ .shopee-react-zoom-right-enter,
420
+ .shopee-react-zoom-right-appear {
421
+ animation-duration: 0.2s;
422
+ animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
423
+ animation-fill-mode: both;
424
+ animation-play-state: paused; }
425
+
426
+ .shopee-react-zoom-right-leave {
427
+ animation-duration: 0.2s;
428
+ animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
429
+ animation-fill-mode: both;
430
+ animation-play-state: paused; }
431
+
432
+ .shopee-react-zoom-right-enter.shopee-react-zoom-right-enter-active,
433
+ .shopee-react-zoom-right-appear.shopee-react-zoom-right-appear-active {
434
+ animation-name: shopeeZoomRightIn;
435
+ animation-play-state: running; }
436
+
437
+ .shopee-react-zoom-right-leave.shopee-react-zoom-right-leave-active {
438
+ animation-name: shopeeZoomRightOut;
439
+ animation-play-state: running;
440
+ pointer-events: none; }
441
+
442
+ .shopee-react-zoom-right-enter,
443
+ .shopee-react-zoom-right-appear {
444
+ transform: scale(0);
445
+ opacity: 0;
446
+ animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1); }
447
+ .shopee-react-zoom-right-enter-prepare,
448
+ .shopee-react-zoom-right-appear-prepare {
449
+ transform: none; }
450
+
451
+ .shopee-react-zoom-right-leave {
452
+ animation-timing-function: cubic-bezier(0.78, 0.14, 0.15, 0.86); }
453
+
454
+ @keyframes shopeeZoomIn {
455
+ 0% {
456
+ transform: scale(0.2);
457
+ opacity: 0; }
458
+ 100% {
459
+ transform: scale(1);
460
+ opacity: 1; } }
461
+
462
+ @keyframes shopeeZoomOut {
463
+ 0% {
464
+ transform: scale(1); }
465
+ 100% {
466
+ transform: scale(0.2);
467
+ opacity: 0; } }
468
+
469
+ @keyframes shopeeZoomBigIn {
470
+ 0% {
471
+ transform: scale(0.8);
472
+ opacity: 0; }
473
+ 100% {
474
+ transform: scale(1);
475
+ opacity: 1; } }
476
+
477
+ @keyframes shopeeZoomBigOut {
478
+ 0% {
479
+ transform: scale(1); }
480
+ 100% {
481
+ transform: scale(0.8);
482
+ opacity: 0; } }
483
+
484
+ @keyframes shopeeZoomUpIn {
485
+ 0% {
486
+ transform: scale(0.8);
487
+ transform-origin: 50% 0%;
488
+ opacity: 0; }
489
+ 100% {
490
+ transform: scale(1);
491
+ transform-origin: 50% 0%; } }
492
+
493
+ @keyframes shopeeZoomUpOut {
494
+ 0% {
495
+ transform: scale(1);
496
+ transform-origin: 50% 0%; }
497
+ 100% {
498
+ transform: scale(0.8);
499
+ transform-origin: 50% 0%;
500
+ opacity: 0; } }
501
+
502
+ @keyframes shopeeZoomLeftIn {
503
+ 0% {
504
+ transform: scale(0.8);
505
+ transform-origin: 0% 50%;
506
+ opacity: 0; }
507
+ 100% {
508
+ transform: scale(1);
509
+ transform-origin: 0% 50%; } }
510
+
511
+ @keyframes shopeeZoomLeftOut {
512
+ 0% {
513
+ transform: scale(1);
514
+ transform-origin: 0% 50%; }
515
+ 100% {
516
+ transform: scale(0.8);
517
+ transform-origin: 0% 50%;
518
+ opacity: 0; } }
519
+
520
+ @keyframes shopeeZoomRightIn {
521
+ 0% {
522
+ transform: scale(0.8);
523
+ transform-origin: 100% 50%;
524
+ opacity: 0; }
525
+ 100% {
526
+ transform: scale(1);
527
+ transform-origin: 100% 50%; } }
528
+
529
+ @keyframes shopeeZoomRightOut {
530
+ 0% {
531
+ transform: scale(1);
532
+ transform-origin: 100% 50%; }
533
+ 100% {
534
+ transform: scale(0.8);
535
+ transform-origin: 100% 50%;
536
+ opacity: 0; } }
537
+
538
+ @keyframes shopeeZoomDownIn {
539
+ 0% {
540
+ transform: scale(0.8);
541
+ transform-origin: 50% 100%;
542
+ opacity: 0; }
543
+ 100% {
544
+ transform: scale(1);
545
+ transform-origin: 50% 100%; } }
546
+
547
+ @keyframes shopeeZoomDownOut {
548
+ 0% {
549
+ transform: scale(1);
550
+ transform-origin: 50% 100%; }
551
+ 100% {
552
+ transform: scale(0.8);
553
+ transform-origin: 50% 100%;
554
+ opacity: 0; } }
555
+
556
+ .shopee-react-icon {
557
+ display: inline-block;
558
+ color: inherit;
559
+ font-style: normal;
560
+ line-height: 0;
561
+ text-align: center;
562
+ text-transform: none;
563
+ fill: currentColor;
564
+ vertical-align: -0.125em;
565
+ text-rendering: optimizeLegibility;
566
+ -webkit-font-smoothing: antialiased;
567
+ -moz-osx-font-smoothing: grayscale;
568
+ outline: none; }
569
+ .shopee-react-icon > * {
570
+ line-height: 1; }
571
+ .shopee-react-icon svg {
572
+ width: 100%;
573
+ height: 100%; }
574
+ .shopee-react-icon .shopee-react-icon-icon {
575
+ display: block; }
576
+ .shopee-react-icon[tabindex] {
577
+ cursor: pointer; }
578
+ .shopee-react-icon-spin {
579
+ display: inline-block;
580
+ animation: shopee-react-icon-spin 1s 0s infinite linear; }
581
+
582
+ @keyframes shopee-react-icon-spin {
583
+ 0% {
584
+ transform: rotate(0deg); }
585
+ 100% {
586
+ transform: rotate(360deg); } }
587
+
588
+ /** text **/
589
+ /** z-index **/
590
+ /** fill **/
591
+ /** boder **/
592
+ .move-up-enter,
593
+ .move-up-appear {
594
+ animation-duration: 0.2s;
595
+ animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
596
+ animation-fill-mode: both;
597
+ animation-play-state: paused; }
598
+
599
+ .move-up-leave {
600
+ animation-duration: 0.2s;
601
+ animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
602
+ animation-fill-mode: both;
603
+ animation-play-state: paused; }
604
+
605
+ .move-up-enter.move-up-enter-active,
606
+ .move-up-appear.move-up-appear-active {
607
+ animation-name: shopeeMoveUpIn;
608
+ animation-play-state: running; }
609
+
610
+ .move-up-leave.move-up-leave-active {
611
+ animation-name: shopeeMoveUpOut;
612
+ animation-play-state: running;
613
+ pointer-events: none; }
614
+
615
+ .move-up-enter,
616
+ .move-up-appear {
617
+ opacity: 0;
618
+ animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1); }
619
+
620
+ .move-up-leave {
621
+ animation-timing-function: cubic-bezier(0.6, 0.04, 0.98, 0.34); }
622
+
623
+ .move-down-enter,
624
+ .move-down-appear {
625
+ animation-duration: 0.2s;
626
+ animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
627
+ animation-fill-mode: both;
628
+ animation-play-state: paused; }
629
+
630
+ .move-down-leave {
631
+ animation-duration: 0.2s;
632
+ animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
633
+ animation-fill-mode: both;
634
+ animation-play-state: paused; }
635
+
636
+ .move-down-enter.move-down-enter-active,
637
+ .move-down-appear.move-down-appear-active {
638
+ animation-name: shopeeMoveDownIn;
639
+ animation-play-state: running; }
640
+
641
+ .move-down-leave.move-down-leave-active {
642
+ animation-name: shopeeMoveDownOut;
643
+ animation-play-state: running;
644
+ pointer-events: none; }
645
+
646
+ .move-down-enter,
647
+ .move-down-appear {
648
+ opacity: 0;
649
+ animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1); }
650
+
651
+ .move-down-leave {
652
+ animation-timing-function: cubic-bezier(0.6, 0.04, 0.98, 0.34); }
653
+
654
+ .move-left-enter,
655
+ .move-left-appear {
656
+ animation-duration: 0.2s;
657
+ animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
658
+ animation-fill-mode: both;
659
+ animation-play-state: paused; }
660
+
661
+ .move-left-leave {
662
+ animation-duration: 0.2s;
663
+ animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
664
+ animation-fill-mode: both;
665
+ animation-play-state: paused; }
666
+
667
+ .move-left-enter.move-left-enter-active,
668
+ .move-left-appear.move-left-appear-active {
669
+ animation-name: shopeeMoveLeftIn;
670
+ animation-play-state: running; }
671
+
672
+ .move-left-leave.move-left-leave-active {
673
+ animation-name: shopeeMoveLeftOut;
674
+ animation-play-state: running;
675
+ pointer-events: none; }
676
+
677
+ .move-left-enter,
678
+ .move-left-appear {
679
+ opacity: 0;
680
+ animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1); }
681
+
682
+ .move-left-leave {
683
+ animation-timing-function: cubic-bezier(0.6, 0.04, 0.98, 0.34); }
684
+
685
+ .move-right-enter,
686
+ .move-right-appear {
687
+ animation-duration: 0.2s;
688
+ animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
689
+ animation-fill-mode: both;
690
+ animation-play-state: paused; }
691
+
692
+ .move-right-leave {
693
+ animation-duration: 0.2s;
694
+ animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
695
+ animation-fill-mode: both;
696
+ animation-play-state: paused; }
697
+
698
+ .move-right-enter.move-right-enter-active,
699
+ .move-right-appear.move-right-appear-active {
700
+ animation-name: shopeeMoveRightIn;
701
+ animation-play-state: running; }
702
+
703
+ .move-right-leave.move-right-leave-active {
704
+ animation-name: shopeeMoveRightOut;
705
+ animation-play-state: running;
706
+ pointer-events: none; }
707
+
708
+ .move-right-enter,
709
+ .move-right-appear {
710
+ opacity: 0;
711
+ animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1); }
712
+
713
+ .move-right-leave {
714
+ animation-timing-function: cubic-bezier(0.6, 0.04, 0.98, 0.34); }
715
+
716
+ @keyframes shopeeMoveDownIn {
717
+ 0% {
718
+ transform: translateY(100%);
719
+ transform-origin: 0 0;
720
+ opacity: 0; }
721
+ 100% {
722
+ transform: translateY(0%);
723
+ transform-origin: 0 0;
724
+ opacity: 1; } }
725
+
726
+ @keyframes shopeeMoveDownOut {
727
+ 0% {
728
+ transform: translateY(0%);
729
+ transform-origin: 0 0;
730
+ opacity: 1; }
731
+ 100% {
732
+ transform: translateY(100%);
733
+ transform-origin: 0 0;
734
+ opacity: 0; } }
735
+
736
+ @keyframes shopeeMoveLeftIn {
737
+ 0% {
738
+ transform: translateX(-100%);
739
+ transform-origin: 0 0;
740
+ opacity: 0; }
741
+ 100% {
742
+ transform: translateX(0%);
743
+ transform-origin: 0 0;
744
+ opacity: 1; } }
745
+
746
+ @keyframes shopeeMoveLeftOut {
747
+ 0% {
748
+ transform: translateX(0%);
749
+ transform-origin: 0 0;
750
+ opacity: 1; }
751
+ 100% {
752
+ transform: translateX(-100%);
753
+ transform-origin: 0 0;
754
+ opacity: 0; } }
755
+
756
+ @keyframes shopeeMoveRightIn {
757
+ 0% {
758
+ transform: translateX(100%);
759
+ transform-origin: 0 0;
760
+ opacity: 0; }
761
+ 100% {
762
+ transform: translateX(0%);
763
+ transform-origin: 0 0;
764
+ opacity: 1; } }
765
+
766
+ @keyframes shopeeMoveRightOut {
767
+ 0% {
768
+ transform: translateX(0%);
769
+ transform-origin: 0 0;
770
+ opacity: 1; }
771
+ 100% {
772
+ transform: translateX(100%);
773
+ transform-origin: 0 0;
774
+ opacity: 0; } }
775
+
776
+ @keyframes shopeeMoveUpIn {
777
+ 0% {
778
+ transform: translateY(-100%);
779
+ transform-origin: 0 0;
780
+ opacity: 0; }
781
+ 100% {
782
+ transform: translateY(0%);
783
+ transform-origin: 0 0;
784
+ opacity: 1; } }
785
+
786
+ @keyframes shopeeMoveUpOut {
787
+ 0% {
788
+ transform: translateY(0%);
789
+ transform-origin: 0 0;
790
+ opacity: 1; }
791
+ 100% {
792
+ transform: translateY(-100%);
793
+ transform-origin: 0 0;
794
+ opacity: 0; } }
795
+
796
+ .shopee-react-zoom-enter,
797
+ .shopee-react-zoom-appear {
798
+ animation-duration: 0.2s;
799
+ animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
800
+ animation-fill-mode: both;
801
+ animation-play-state: paused; }
802
+
803
+ .shopee-react-zoom-leave {
804
+ animation-duration: 0.2s;
805
+ animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
806
+ animation-fill-mode: both;
807
+ animation-play-state: paused; }
808
+
809
+ .shopee-react-zoom-enter.shopee-react-zoom-enter-active,
810
+ .shopee-react-zoom-appear.shopee-react-zoom-appear-active {
811
+ animation-name: shopeeZoomIn;
812
+ animation-play-state: running; }
813
+
814
+ .shopee-react-zoom-leave.shopee-react-zoom-leave-active {
815
+ animation-name: shopeeZoomOut;
816
+ animation-play-state: running;
817
+ pointer-events: none; }
818
+
819
+ .shopee-react-zoom-enter,
820
+ .shopee-react-zoom-appear {
821
+ transform: scale(0);
822
+ opacity: 0;
823
+ animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1); }
824
+ .shopee-react-zoom-enter-prepare,
825
+ .shopee-react-zoom-appear-prepare {
826
+ transform: none; }
827
+
828
+ .shopee-react-zoom-leave {
829
+ animation-timing-function: cubic-bezier(0.78, 0.14, 0.15, 0.86); }
830
+
831
+ .shopee-react-zoom-big-enter,
832
+ .shopee-react-zoom-big-appear {
833
+ animation-duration: 0.2s;
834
+ animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
835
+ animation-fill-mode: both;
836
+ animation-play-state: paused; }
837
+
838
+ .shopee-react-zoom-big-leave {
839
+ animation-duration: 0.2s;
840
+ animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
841
+ animation-fill-mode: both;
842
+ animation-play-state: paused; }
843
+
844
+ .shopee-react-zoom-big-enter.shopee-react-zoom-big-enter-active,
845
+ .shopee-react-zoom-big-appear.shopee-react-zoom-big-appear-active {
846
+ animation-name: shopeeZoomBigIn;
847
+ animation-play-state: running; }
848
+
849
+ .shopee-react-zoom-big-leave.shopee-react-zoom-big-leave-active {
850
+ animation-name: shopeeZoomBigOut;
851
+ animation-play-state: running;
852
+ pointer-events: none; }
853
+
854
+ .shopee-react-zoom-big-enter,
855
+ .shopee-react-zoom-big-appear {
856
+ transform: scale(0);
857
+ opacity: 0;
858
+ animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1); }
859
+ .shopee-react-zoom-big-enter-prepare,
860
+ .shopee-react-zoom-big-appear-prepare {
861
+ transform: none; }
862
+
863
+ .shopee-react-zoom-big-leave {
864
+ animation-timing-function: cubic-bezier(0.78, 0.14, 0.15, 0.86); }
865
+
866
+ .shopee-react-zoom-big-fast-enter,
867
+ .shopee-react-zoom-big-fast-appear {
868
+ animation-duration: 0.1s;
869
+ animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
870
+ animation-fill-mode: both;
871
+ animation-play-state: paused; }
872
+
873
+ .shopee-react-zoom-big-fast-leave {
874
+ animation-duration: 0.1s;
875
+ animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
876
+ animation-fill-mode: both;
877
+ animation-play-state: paused; }
878
+
879
+ .shopee-react-zoom-big-fast-enter.shopee-react-zoom-big-fast-enter-active,
880
+ .shopee-react-zoom-big-fast-appear.shopee-react-zoom-big-fast-appear-active {
881
+ animation-name: shopeeZoomBigIn;
882
+ animation-play-state: running; }
883
+
884
+ .shopee-react-zoom-big-fast-leave.shopee-react-zoom-big-fast-leave-active {
885
+ animation-name: shopeeZoomBigOut;
886
+ animation-play-state: running;
887
+ pointer-events: none; }
888
+
889
+ .shopee-react-zoom-big-fast-enter,
890
+ .shopee-react-zoom-big-fast-appear {
891
+ transform: scale(0);
892
+ opacity: 0;
893
+ animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1); }
894
+ .shopee-react-zoom-big-fast-enter-prepare,
895
+ .shopee-react-zoom-big-fast-appear-prepare {
896
+ transform: none; }
897
+
898
+ .shopee-react-zoom-big-fast-leave {
899
+ animation-timing-function: cubic-bezier(0.78, 0.14, 0.15, 0.86); }
900
+
901
+ .shopee-react-zoom-up-enter,
902
+ .shopee-react-zoom-up-appear {
903
+ animation-duration: 0.2s;
904
+ animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
905
+ animation-fill-mode: both;
906
+ animation-play-state: paused; }
907
+
908
+ .shopee-react-zoom-up-leave {
909
+ animation-duration: 0.2s;
910
+ animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
911
+ animation-fill-mode: both;
912
+ animation-play-state: paused; }
913
+
914
+ .shopee-react-zoom-up-enter.shopee-react-zoom-up-enter-active,
915
+ .shopee-react-zoom-up-appear.shopee-react-zoom-up-appear-active {
916
+ animation-name: shopeeZoomUpIn;
917
+ animation-play-state: running; }
918
+
919
+ .shopee-react-zoom-up-leave.shopee-react-zoom-up-leave-active {
920
+ animation-name: shopeeZoomUpOut;
921
+ animation-play-state: running;
922
+ pointer-events: none; }
923
+
924
+ .shopee-react-zoom-up-enter,
925
+ .shopee-react-zoom-up-appear {
926
+ transform: scale(0);
927
+ opacity: 0;
928
+ animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1); }
929
+ .shopee-react-zoom-up-enter-prepare,
930
+ .shopee-react-zoom-up-appear-prepare {
931
+ transform: none; }
932
+
933
+ .shopee-react-zoom-up-leave {
934
+ animation-timing-function: cubic-bezier(0.78, 0.14, 0.15, 0.86); }
935
+
936
+ .shopee-react-zoom-down-enter,
937
+ .shopee-react-zoom-down-appear {
938
+ animation-duration: 0.2s;
939
+ animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
940
+ animation-fill-mode: both;
941
+ animation-play-state: paused; }
942
+
943
+ .shopee-react-zoom-down-leave {
944
+ animation-duration: 0.2s;
945
+ animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
946
+ animation-fill-mode: both;
947
+ animation-play-state: paused; }
948
+
949
+ .shopee-react-zoom-down-enter.shopee-react-zoom-down-enter-active,
950
+ .shopee-react-zoom-down-appear.shopee-react-zoom-down-appear-active {
951
+ animation-name: shopeeZoomDownIn;
952
+ animation-play-state: running; }
953
+
954
+ .shopee-react-zoom-down-leave.shopee-react-zoom-down-leave-active {
955
+ animation-name: shopeeZoomDownOut;
956
+ animation-play-state: running;
957
+ pointer-events: none; }
958
+
959
+ .shopee-react-zoom-down-enter,
960
+ .shopee-react-zoom-down-appear {
961
+ transform: scale(0);
962
+ opacity: 0;
963
+ animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1); }
964
+ .shopee-react-zoom-down-enter-prepare,
965
+ .shopee-react-zoom-down-appear-prepare {
966
+ transform: none; }
967
+
968
+ .shopee-react-zoom-down-leave {
969
+ animation-timing-function: cubic-bezier(0.78, 0.14, 0.15, 0.86); }
970
+
971
+ .shopee-react-zoom-left-enter,
972
+ .shopee-react-zoom-left-appear {
973
+ animation-duration: 0.2s;
974
+ animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
975
+ animation-fill-mode: both;
976
+ animation-play-state: paused; }
977
+
978
+ .shopee-react-zoom-left-leave {
979
+ animation-duration: 0.2s;
980
+ animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
981
+ animation-fill-mode: both;
982
+ animation-play-state: paused; }
983
+
984
+ .shopee-react-zoom-left-enter.shopee-react-zoom-left-enter-active,
985
+ .shopee-react-zoom-left-appear.shopee-react-zoom-left-appear-active {
986
+ animation-name: shopeeZoomLeftIn;
987
+ animation-play-state: running; }
988
+
989
+ .shopee-react-zoom-left-leave.shopee-react-zoom-left-leave-active {
990
+ animation-name: shopeeZoomLeftOut;
991
+ animation-play-state: running;
992
+ pointer-events: none; }
993
+
994
+ .shopee-react-zoom-left-enter,
995
+ .shopee-react-zoom-left-appear {
996
+ transform: scale(0);
997
+ opacity: 0;
998
+ animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1); }
999
+ .shopee-react-zoom-left-enter-prepare,
1000
+ .shopee-react-zoom-left-appear-prepare {
1001
+ transform: none; }
1002
+
1003
+ .shopee-react-zoom-left-leave {
1004
+ animation-timing-function: cubic-bezier(0.78, 0.14, 0.15, 0.86); }
1005
+
1006
+ .shopee-react-zoom-right-enter,
1007
+ .shopee-react-zoom-right-appear {
1008
+ animation-duration: 0.2s;
1009
+ animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
1010
+ animation-fill-mode: both;
1011
+ animation-play-state: paused; }
1012
+
1013
+ .shopee-react-zoom-right-leave {
1014
+ animation-duration: 0.2s;
1015
+ animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
1016
+ animation-fill-mode: both;
1017
+ animation-play-state: paused; }
1018
+
1019
+ .shopee-react-zoom-right-enter.shopee-react-zoom-right-enter-active,
1020
+ .shopee-react-zoom-right-appear.shopee-react-zoom-right-appear-active {
1021
+ animation-name: shopeeZoomRightIn;
1022
+ animation-play-state: running; }
1023
+
1024
+ .shopee-react-zoom-right-leave.shopee-react-zoom-right-leave-active {
1025
+ animation-name: shopeeZoomRightOut;
1026
+ animation-play-state: running;
1027
+ pointer-events: none; }
1028
+
1029
+ .shopee-react-zoom-right-enter,
1030
+ .shopee-react-zoom-right-appear {
1031
+ transform: scale(0);
1032
+ opacity: 0;
1033
+ animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1); }
1034
+ .shopee-react-zoom-right-enter-prepare,
1035
+ .shopee-react-zoom-right-appear-prepare {
1036
+ transform: none; }
1037
+
1038
+ .shopee-react-zoom-right-leave {
1039
+ animation-timing-function: cubic-bezier(0.78, 0.14, 0.15, 0.86); }
1040
+
1041
+ @keyframes shopeeZoomIn {
1042
+ 0% {
1043
+ transform: scale(0.2);
1044
+ opacity: 0; }
1045
+ 100% {
1046
+ transform: scale(1);
1047
+ opacity: 1; } }
1048
+
1049
+ @keyframes shopeeZoomOut {
1050
+ 0% {
1051
+ transform: scale(1); }
1052
+ 100% {
1053
+ transform: scale(0.2);
1054
+ opacity: 0; } }
1055
+
1056
+ @keyframes shopeeZoomBigIn {
1057
+ 0% {
1058
+ transform: scale(0.8);
1059
+ opacity: 0; }
1060
+ 100% {
1061
+ transform: scale(1);
1062
+ opacity: 1; } }
1063
+
1064
+ @keyframes shopeeZoomBigOut {
1065
+ 0% {
1066
+ transform: scale(1); }
1067
+ 100% {
1068
+ transform: scale(0.8);
1069
+ opacity: 0; } }
1070
+
1071
+ @keyframes shopeeZoomUpIn {
1072
+ 0% {
1073
+ transform: scale(0.8);
1074
+ transform-origin: 50% 0%;
1075
+ opacity: 0; }
1076
+ 100% {
1077
+ transform: scale(1);
1078
+ transform-origin: 50% 0%; } }
1079
+
1080
+ @keyframes shopeeZoomUpOut {
1081
+ 0% {
1082
+ transform: scale(1);
1083
+ transform-origin: 50% 0%; }
1084
+ 100% {
1085
+ transform: scale(0.8);
1086
+ transform-origin: 50% 0%;
1087
+ opacity: 0; } }
1088
+
1089
+ @keyframes shopeeZoomLeftIn {
1090
+ 0% {
1091
+ transform: scale(0.8);
1092
+ transform-origin: 0% 50%;
1093
+ opacity: 0; }
1094
+ 100% {
1095
+ transform: scale(1);
1096
+ transform-origin: 0% 50%; } }
1097
+
1098
+ @keyframes shopeeZoomLeftOut {
1099
+ 0% {
1100
+ transform: scale(1);
1101
+ transform-origin: 0% 50%; }
1102
+ 100% {
1103
+ transform: scale(0.8);
1104
+ transform-origin: 0% 50%;
1105
+ opacity: 0; } }
1106
+
1107
+ @keyframes shopeeZoomRightIn {
1108
+ 0% {
1109
+ transform: scale(0.8);
1110
+ transform-origin: 100% 50%;
1111
+ opacity: 0; }
1112
+ 100% {
1113
+ transform: scale(1);
1114
+ transform-origin: 100% 50%; } }
1115
+
1116
+ @keyframes shopeeZoomRightOut {
1117
+ 0% {
1118
+ transform: scale(1);
1119
+ transform-origin: 100% 50%; }
1120
+ 100% {
1121
+ transform: scale(0.8);
1122
+ transform-origin: 100% 50%;
1123
+ opacity: 0; } }
1124
+
1125
+ @keyframes shopeeZoomDownIn {
1126
+ 0% {
1127
+ transform: scale(0.8);
1128
+ transform-origin: 50% 100%;
1129
+ opacity: 0; }
1130
+ 100% {
1131
+ transform: scale(1);
1132
+ transform-origin: 50% 100%; } }
1133
+
1134
+ @keyframes shopeeZoomDownOut {
1135
+ 0% {
1136
+ transform: scale(1);
1137
+ transform-origin: 50% 100%; }
1138
+ 100% {
1139
+ transform: scale(0.8);
1140
+ transform-origin: 50% 100%;
1141
+ opacity: 0; } }
1142
+
1143
+ /** text **/
1144
+ /** z-index **/
1145
+ /** fill **/
1146
+ /** boder **/
1147
+ .move-up-enter,
1148
+ .move-up-appear {
1149
+ animation-duration: 0.2s;
1150
+ animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
1151
+ animation-fill-mode: both;
1152
+ animation-play-state: paused; }
1153
+
1154
+ .move-up-leave {
1155
+ animation-duration: 0.2s;
1156
+ animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
1157
+ animation-fill-mode: both;
1158
+ animation-play-state: paused; }
1159
+
1160
+ .move-up-enter.move-up-enter-active,
1161
+ .move-up-appear.move-up-appear-active {
1162
+ animation-name: shopeeMoveUpIn;
1163
+ animation-play-state: running; }
1164
+
1165
+ .move-up-leave.move-up-leave-active {
1166
+ animation-name: shopeeMoveUpOut;
1167
+ animation-play-state: running;
1168
+ pointer-events: none; }
1169
+
1170
+ .move-up-enter,
1171
+ .move-up-appear {
1172
+ opacity: 0;
1173
+ animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1); }
1174
+
1175
+ .move-up-leave {
1176
+ animation-timing-function: cubic-bezier(0.6, 0.04, 0.98, 0.34); }
1177
+
1178
+ .move-down-enter,
1179
+ .move-down-appear {
1180
+ animation-duration: 0.2s;
1181
+ animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
1182
+ animation-fill-mode: both;
1183
+ animation-play-state: paused; }
1184
+
1185
+ .move-down-leave {
1186
+ animation-duration: 0.2s;
1187
+ animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
1188
+ animation-fill-mode: both;
1189
+ animation-play-state: paused; }
1190
+
1191
+ .move-down-enter.move-down-enter-active,
1192
+ .move-down-appear.move-down-appear-active {
1193
+ animation-name: shopeeMoveDownIn;
1194
+ animation-play-state: running; }
1195
+
1196
+ .move-down-leave.move-down-leave-active {
1197
+ animation-name: shopeeMoveDownOut;
1198
+ animation-play-state: running;
1199
+ pointer-events: none; }
1200
+
1201
+ .move-down-enter,
1202
+ .move-down-appear {
1203
+ opacity: 0;
1204
+ animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1); }
1205
+
1206
+ .move-down-leave {
1207
+ animation-timing-function: cubic-bezier(0.6, 0.04, 0.98, 0.34); }
1208
+
1209
+ .move-left-enter,
1210
+ .move-left-appear {
1211
+ animation-duration: 0.2s;
1212
+ animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
1213
+ animation-fill-mode: both;
1214
+ animation-play-state: paused; }
1215
+
1216
+ .move-left-leave {
1217
+ animation-duration: 0.2s;
1218
+ animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
1219
+ animation-fill-mode: both;
1220
+ animation-play-state: paused; }
1221
+
1222
+ .move-left-enter.move-left-enter-active,
1223
+ .move-left-appear.move-left-appear-active {
1224
+ animation-name: shopeeMoveLeftIn;
1225
+ animation-play-state: running; }
1226
+
1227
+ .move-left-leave.move-left-leave-active {
1228
+ animation-name: shopeeMoveLeftOut;
1229
+ animation-play-state: running;
1230
+ pointer-events: none; }
1231
+
1232
+ .move-left-enter,
1233
+ .move-left-appear {
1234
+ opacity: 0;
1235
+ animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1); }
1236
+
1237
+ .move-left-leave {
1238
+ animation-timing-function: cubic-bezier(0.6, 0.04, 0.98, 0.34); }
1239
+
1240
+ .move-right-enter,
1241
+ .move-right-appear {
1242
+ animation-duration: 0.2s;
1243
+ animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
1244
+ animation-fill-mode: both;
1245
+ animation-play-state: paused; }
1246
+
1247
+ .move-right-leave {
1248
+ animation-duration: 0.2s;
1249
+ animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
1250
+ animation-fill-mode: both;
1251
+ animation-play-state: paused; }
1252
+
1253
+ .move-right-enter.move-right-enter-active,
1254
+ .move-right-appear.move-right-appear-active {
1255
+ animation-name: shopeeMoveRightIn;
1256
+ animation-play-state: running; }
1257
+
1258
+ .move-right-leave.move-right-leave-active {
1259
+ animation-name: shopeeMoveRightOut;
1260
+ animation-play-state: running;
1261
+ pointer-events: none; }
1262
+
1263
+ .move-right-enter,
1264
+ .move-right-appear {
1265
+ opacity: 0;
1266
+ animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1); }
1267
+
1268
+ .move-right-leave {
1269
+ animation-timing-function: cubic-bezier(0.6, 0.04, 0.98, 0.34); }
1270
+
1271
+ @keyframes shopeeMoveDownIn {
1272
+ 0% {
1273
+ transform: translateY(100%);
1274
+ transform-origin: 0 0;
1275
+ opacity: 0; }
1276
+ 100% {
1277
+ transform: translateY(0%);
1278
+ transform-origin: 0 0;
1279
+ opacity: 1; } }
1280
+
1281
+ @keyframes shopeeMoveDownOut {
1282
+ 0% {
1283
+ transform: translateY(0%);
1284
+ transform-origin: 0 0;
1285
+ opacity: 1; }
1286
+ 100% {
1287
+ transform: translateY(100%);
1288
+ transform-origin: 0 0;
1289
+ opacity: 0; } }
1290
+
1291
+ @keyframes shopeeMoveLeftIn {
1292
+ 0% {
1293
+ transform: translateX(-100%);
1294
+ transform-origin: 0 0;
1295
+ opacity: 0; }
1296
+ 100% {
1297
+ transform: translateX(0%);
1298
+ transform-origin: 0 0;
1299
+ opacity: 1; } }
1300
+
1301
+ @keyframes shopeeMoveLeftOut {
1302
+ 0% {
1303
+ transform: translateX(0%);
1304
+ transform-origin: 0 0;
1305
+ opacity: 1; }
1306
+ 100% {
1307
+ transform: translateX(-100%);
1308
+ transform-origin: 0 0;
1309
+ opacity: 0; } }
1310
+
1311
+ @keyframes shopeeMoveRightIn {
1312
+ 0% {
1313
+ transform: translateX(100%);
1314
+ transform-origin: 0 0;
1315
+ opacity: 0; }
1316
+ 100% {
1317
+ transform: translateX(0%);
1318
+ transform-origin: 0 0;
1319
+ opacity: 1; } }
1320
+
1321
+ @keyframes shopeeMoveRightOut {
1322
+ 0% {
1323
+ transform: translateX(0%);
1324
+ transform-origin: 0 0;
1325
+ opacity: 1; }
1326
+ 100% {
1327
+ transform: translateX(100%);
1328
+ transform-origin: 0 0;
1329
+ opacity: 0; } }
1330
+
1331
+ @keyframes shopeeMoveUpIn {
1332
+ 0% {
1333
+ transform: translateY(-100%);
1334
+ transform-origin: 0 0;
1335
+ opacity: 0; }
1336
+ 100% {
1337
+ transform: translateY(0%);
1338
+ transform-origin: 0 0;
1339
+ opacity: 1; } }
1340
+
1341
+ @keyframes shopeeMoveUpOut {
1342
+ 0% {
1343
+ transform: translateY(0%);
1344
+ transform-origin: 0 0;
1345
+ opacity: 1; }
1346
+ 100% {
1347
+ transform: translateY(-100%);
1348
+ transform-origin: 0 0;
1349
+ opacity: 0; } }
1350
+
1351
+ .shopee-react-zoom-enter,
1352
+ .shopee-react-zoom-appear {
1353
+ animation-duration: 0.2s;
1354
+ animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
1355
+ animation-fill-mode: both;
1356
+ animation-play-state: paused; }
1357
+
1358
+ .shopee-react-zoom-leave {
1359
+ animation-duration: 0.2s;
1360
+ animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
1361
+ animation-fill-mode: both;
1362
+ animation-play-state: paused; }
1363
+
1364
+ .shopee-react-zoom-enter.shopee-react-zoom-enter-active,
1365
+ .shopee-react-zoom-appear.shopee-react-zoom-appear-active {
1366
+ animation-name: shopeeZoomIn;
1367
+ animation-play-state: running; }
1368
+
1369
+ .shopee-react-zoom-leave.shopee-react-zoom-leave-active {
1370
+ animation-name: shopeeZoomOut;
1371
+ animation-play-state: running;
1372
+ pointer-events: none; }
1373
+
1374
+ .shopee-react-zoom-enter,
1375
+ .shopee-react-zoom-appear {
1376
+ transform: scale(0);
1377
+ opacity: 0;
1378
+ animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1); }
1379
+ .shopee-react-zoom-enter-prepare,
1380
+ .shopee-react-zoom-appear-prepare {
1381
+ transform: none; }
1382
+
1383
+ .shopee-react-zoom-leave {
1384
+ animation-timing-function: cubic-bezier(0.78, 0.14, 0.15, 0.86); }
1385
+
1386
+ .shopee-react-zoom-big-enter,
1387
+ .shopee-react-zoom-big-appear {
1388
+ animation-duration: 0.2s;
1389
+ animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
1390
+ animation-fill-mode: both;
1391
+ animation-play-state: paused; }
1392
+
1393
+ .shopee-react-zoom-big-leave {
1394
+ animation-duration: 0.2s;
1395
+ animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
1396
+ animation-fill-mode: both;
1397
+ animation-play-state: paused; }
1398
+
1399
+ .shopee-react-zoom-big-enter.shopee-react-zoom-big-enter-active,
1400
+ .shopee-react-zoom-big-appear.shopee-react-zoom-big-appear-active {
1401
+ animation-name: shopeeZoomBigIn;
1402
+ animation-play-state: running; }
1403
+
1404
+ .shopee-react-zoom-big-leave.shopee-react-zoom-big-leave-active {
1405
+ animation-name: shopeeZoomBigOut;
1406
+ animation-play-state: running;
1407
+ pointer-events: none; }
1408
+
1409
+ .shopee-react-zoom-big-enter,
1410
+ .shopee-react-zoom-big-appear {
1411
+ transform: scale(0);
1412
+ opacity: 0;
1413
+ animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1); }
1414
+ .shopee-react-zoom-big-enter-prepare,
1415
+ .shopee-react-zoom-big-appear-prepare {
1416
+ transform: none; }
1417
+
1418
+ .shopee-react-zoom-big-leave {
1419
+ animation-timing-function: cubic-bezier(0.78, 0.14, 0.15, 0.86); }
1420
+
1421
+ .shopee-react-zoom-big-fast-enter,
1422
+ .shopee-react-zoom-big-fast-appear {
1423
+ animation-duration: 0.1s;
1424
+ animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
1425
+ animation-fill-mode: both;
1426
+ animation-play-state: paused; }
1427
+
1428
+ .shopee-react-zoom-big-fast-leave {
1429
+ animation-duration: 0.1s;
1430
+ animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
1431
+ animation-fill-mode: both;
1432
+ animation-play-state: paused; }
1433
+
1434
+ .shopee-react-zoom-big-fast-enter.shopee-react-zoom-big-fast-enter-active,
1435
+ .shopee-react-zoom-big-fast-appear.shopee-react-zoom-big-fast-appear-active {
1436
+ animation-name: shopeeZoomBigIn;
1437
+ animation-play-state: running; }
1438
+
1439
+ .shopee-react-zoom-big-fast-leave.shopee-react-zoom-big-fast-leave-active {
1440
+ animation-name: shopeeZoomBigOut;
1441
+ animation-play-state: running;
1442
+ pointer-events: none; }
1443
+
1444
+ .shopee-react-zoom-big-fast-enter,
1445
+ .shopee-react-zoom-big-fast-appear {
1446
+ transform: scale(0);
1447
+ opacity: 0;
1448
+ animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1); }
1449
+ .shopee-react-zoom-big-fast-enter-prepare,
1450
+ .shopee-react-zoom-big-fast-appear-prepare {
1451
+ transform: none; }
1452
+
1453
+ .shopee-react-zoom-big-fast-leave {
1454
+ animation-timing-function: cubic-bezier(0.78, 0.14, 0.15, 0.86); }
1455
+
1456
+ .shopee-react-zoom-up-enter,
1457
+ .shopee-react-zoom-up-appear {
1458
+ animation-duration: 0.2s;
1459
+ animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
1460
+ animation-fill-mode: both;
1461
+ animation-play-state: paused; }
1462
+
1463
+ .shopee-react-zoom-up-leave {
1464
+ animation-duration: 0.2s;
1465
+ animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
1466
+ animation-fill-mode: both;
1467
+ animation-play-state: paused; }
1468
+
1469
+ .shopee-react-zoom-up-enter.shopee-react-zoom-up-enter-active,
1470
+ .shopee-react-zoom-up-appear.shopee-react-zoom-up-appear-active {
1471
+ animation-name: shopeeZoomUpIn;
1472
+ animation-play-state: running; }
1473
+
1474
+ .shopee-react-zoom-up-leave.shopee-react-zoom-up-leave-active {
1475
+ animation-name: shopeeZoomUpOut;
1476
+ animation-play-state: running;
1477
+ pointer-events: none; }
1478
+
1479
+ .shopee-react-zoom-up-enter,
1480
+ .shopee-react-zoom-up-appear {
1481
+ transform: scale(0);
1482
+ opacity: 0;
1483
+ animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1); }
1484
+ .shopee-react-zoom-up-enter-prepare,
1485
+ .shopee-react-zoom-up-appear-prepare {
1486
+ transform: none; }
1487
+
1488
+ .shopee-react-zoom-up-leave {
1489
+ animation-timing-function: cubic-bezier(0.78, 0.14, 0.15, 0.86); }
1490
+
1491
+ .shopee-react-zoom-down-enter,
1492
+ .shopee-react-zoom-down-appear {
1493
+ animation-duration: 0.2s;
1494
+ animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
1495
+ animation-fill-mode: both;
1496
+ animation-play-state: paused; }
1497
+
1498
+ .shopee-react-zoom-down-leave {
1499
+ animation-duration: 0.2s;
1500
+ animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
1501
+ animation-fill-mode: both;
1502
+ animation-play-state: paused; }
1503
+
1504
+ .shopee-react-zoom-down-enter.shopee-react-zoom-down-enter-active,
1505
+ .shopee-react-zoom-down-appear.shopee-react-zoom-down-appear-active {
1506
+ animation-name: shopeeZoomDownIn;
1507
+ animation-play-state: running; }
1508
+
1509
+ .shopee-react-zoom-down-leave.shopee-react-zoom-down-leave-active {
1510
+ animation-name: shopeeZoomDownOut;
1511
+ animation-play-state: running;
1512
+ pointer-events: none; }
1513
+
1514
+ .shopee-react-zoom-down-enter,
1515
+ .shopee-react-zoom-down-appear {
1516
+ transform: scale(0);
1517
+ opacity: 0;
1518
+ animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1); }
1519
+ .shopee-react-zoom-down-enter-prepare,
1520
+ .shopee-react-zoom-down-appear-prepare {
1521
+ transform: none; }
1522
+
1523
+ .shopee-react-zoom-down-leave {
1524
+ animation-timing-function: cubic-bezier(0.78, 0.14, 0.15, 0.86); }
1525
+
1526
+ .shopee-react-zoom-left-enter,
1527
+ .shopee-react-zoom-left-appear {
1528
+ animation-duration: 0.2s;
1529
+ animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
1530
+ animation-fill-mode: both;
1531
+ animation-play-state: paused; }
1532
+
1533
+ .shopee-react-zoom-left-leave {
1534
+ animation-duration: 0.2s;
1535
+ animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
1536
+ animation-fill-mode: both;
1537
+ animation-play-state: paused; }
1538
+
1539
+ .shopee-react-zoom-left-enter.shopee-react-zoom-left-enter-active,
1540
+ .shopee-react-zoom-left-appear.shopee-react-zoom-left-appear-active {
1541
+ animation-name: shopeeZoomLeftIn;
1542
+ animation-play-state: running; }
1543
+
1544
+ .shopee-react-zoom-left-leave.shopee-react-zoom-left-leave-active {
1545
+ animation-name: shopeeZoomLeftOut;
1546
+ animation-play-state: running;
1547
+ pointer-events: none; }
1548
+
1549
+ .shopee-react-zoom-left-enter,
1550
+ .shopee-react-zoom-left-appear {
1551
+ transform: scale(0);
1552
+ opacity: 0;
1553
+ animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1); }
1554
+ .shopee-react-zoom-left-enter-prepare,
1555
+ .shopee-react-zoom-left-appear-prepare {
1556
+ transform: none; }
1557
+
1558
+ .shopee-react-zoom-left-leave {
1559
+ animation-timing-function: cubic-bezier(0.78, 0.14, 0.15, 0.86); }
1560
+
1561
+ .shopee-react-zoom-right-enter,
1562
+ .shopee-react-zoom-right-appear {
1563
+ animation-duration: 0.2s;
1564
+ animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
1565
+ animation-fill-mode: both;
1566
+ animation-play-state: paused; }
1567
+
1568
+ .shopee-react-zoom-right-leave {
1569
+ animation-duration: 0.2s;
1570
+ animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
1571
+ animation-fill-mode: both;
1572
+ animation-play-state: paused; }
1573
+
1574
+ .shopee-react-zoom-right-enter.shopee-react-zoom-right-enter-active,
1575
+ .shopee-react-zoom-right-appear.shopee-react-zoom-right-appear-active {
1576
+ animation-name: shopeeZoomRightIn;
1577
+ animation-play-state: running; }
1578
+
1579
+ .shopee-react-zoom-right-leave.shopee-react-zoom-right-leave-active {
1580
+ animation-name: shopeeZoomRightOut;
1581
+ animation-play-state: running;
1582
+ pointer-events: none; }
1583
+
1584
+ .shopee-react-zoom-right-enter,
1585
+ .shopee-react-zoom-right-appear {
1586
+ transform: scale(0);
1587
+ opacity: 0;
1588
+ animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1); }
1589
+ .shopee-react-zoom-right-enter-prepare,
1590
+ .shopee-react-zoom-right-appear-prepare {
1591
+ transform: none; }
1592
+
1593
+ .shopee-react-zoom-right-leave {
1594
+ animation-timing-function: cubic-bezier(0.78, 0.14, 0.15, 0.86); }
1595
+
1596
+ @keyframes shopeeZoomIn {
1597
+ 0% {
1598
+ transform: scale(0.2);
1599
+ opacity: 0; }
1600
+ 100% {
1601
+ transform: scale(1);
1602
+ opacity: 1; } }
1603
+
1604
+ @keyframes shopeeZoomOut {
1605
+ 0% {
1606
+ transform: scale(1); }
1607
+ 100% {
1608
+ transform: scale(0.2);
1609
+ opacity: 0; } }
1610
+
1611
+ @keyframes shopeeZoomBigIn {
1612
+ 0% {
1613
+ transform: scale(0.8);
1614
+ opacity: 0; }
1615
+ 100% {
1616
+ transform: scale(1);
1617
+ opacity: 1; } }
1618
+
1619
+ @keyframes shopeeZoomBigOut {
1620
+ 0% {
1621
+ transform: scale(1); }
1622
+ 100% {
1623
+ transform: scale(0.8);
1624
+ opacity: 0; } }
1625
+
1626
+ @keyframes shopeeZoomUpIn {
1627
+ 0% {
1628
+ transform: scale(0.8);
1629
+ transform-origin: 50% 0%;
1630
+ opacity: 0; }
1631
+ 100% {
1632
+ transform: scale(1);
1633
+ transform-origin: 50% 0%; } }
1634
+
1635
+ @keyframes shopeeZoomUpOut {
1636
+ 0% {
1637
+ transform: scale(1);
1638
+ transform-origin: 50% 0%; }
1639
+ 100% {
1640
+ transform: scale(0.8);
1641
+ transform-origin: 50% 0%;
1642
+ opacity: 0; } }
1643
+
1644
+ @keyframes shopeeZoomLeftIn {
1645
+ 0% {
1646
+ transform: scale(0.8);
1647
+ transform-origin: 0% 50%;
1648
+ opacity: 0; }
1649
+ 100% {
1650
+ transform: scale(1);
1651
+ transform-origin: 0% 50%; } }
1652
+
1653
+ @keyframes shopeeZoomLeftOut {
1654
+ 0% {
1655
+ transform: scale(1);
1656
+ transform-origin: 0% 50%; }
1657
+ 100% {
1658
+ transform: scale(0.8);
1659
+ transform-origin: 0% 50%;
1660
+ opacity: 0; } }
1661
+
1662
+ @keyframes shopeeZoomRightIn {
1663
+ 0% {
1664
+ transform: scale(0.8);
1665
+ transform-origin: 100% 50%;
1666
+ opacity: 0; }
1667
+ 100% {
1668
+ transform: scale(1);
1669
+ transform-origin: 100% 50%; } }
1670
+
1671
+ @keyframes shopeeZoomRightOut {
1672
+ 0% {
1673
+ transform: scale(1);
1674
+ transform-origin: 100% 50%; }
1675
+ 100% {
1676
+ transform: scale(0.8);
1677
+ transform-origin: 100% 50%;
1678
+ opacity: 0; } }
1679
+
1680
+ @keyframes shopeeZoomDownIn {
1681
+ 0% {
1682
+ transform: scale(0.8);
1683
+ transform-origin: 50% 100%;
1684
+ opacity: 0; }
1685
+ 100% {
1686
+ transform: scale(1);
1687
+ transform-origin: 50% 100%; } }
1688
+
1689
+ @keyframes shopeeZoomDownOut {
1690
+ 0% {
1691
+ transform: scale(1);
1692
+ transform-origin: 50% 100%; }
1693
+ 100% {
1694
+ transform: scale(0.8);
1695
+ transform-origin: 50% 100%;
1696
+ opacity: 0; } }
1697
+
1698
+ .shopee-react-button {
1699
+ color: #333;
1700
+ background-color: #fff;
1701
+ border-color: #e5e5e5;
1702
+ position: relative;
1703
+ display: inline-flex;
1704
+ align-items: center;
1705
+ justify-content: center;
1706
+ height: 32px;
1707
+ min-width: 72px;
1708
+ padding: 0 16px;
1709
+ font-size: 14px;
1710
+ font-weight: 500;
1711
+ text-decoration: none;
1712
+ white-space: nowrap;
1713
+ vertical-align: middle;
1714
+ cursor: pointer;
1715
+ border-style: solid;
1716
+ border-width: 1px;
1717
+ border-radius: 4px;
1718
+ outline: none;
1719
+ box-sizing: border-box;
1720
+ transition: all 0.2s cubic-bezier(0.42, 0, 0.58, 1);
1721
+ appearance: none;
1722
+ user-select: none; }
1723
+ .shopee-react-button:focus::before, .shopee-react-button:hover::before {
1724
+ background-color: rgba(0, 0, 0, 0.06); }
1725
+ .shopee-react-button:active::before {
1726
+ background-color: rgba(0, 0, 0, 0.12); }
1727
+ .shopee-react-button.loading::before {
1728
+ background-color: rgba(255, 255, 255, 0.4); }
1729
+ .shopee-react-button.shopee-react-button--normal:focus::before, .shopee-react-button.shopee-react-button--normal:hover::before {
1730
+ background-color: rgba(0, 0, 0, 0.04); }
1731
+ .shopee-react-button.shopee-react-button--normal:active::before {
1732
+ background-color: rgba(0, 0, 0, 0.08); }
1733
+ .shopee-react-button.shopee-react-button--outline {
1734
+ color: #fff;
1735
+ background-color: transparent;
1736
+ border-color: #e5e5e5; }
1737
+ .shopee-react-button.shopee-react-button--outline:focus::before, .shopee-react-button.shopee-react-button--outline:hover::before {
1738
+ background-color: rgba(255, 255, 255, 0.06); }
1739
+ .shopee-react-button.shopee-react-button--outline:active::before {
1740
+ background-color: rgba(255, 255, 255, 0.12); }
1741
+ .shopee-react-button.shopee-react-button--outline.loading::before {
1742
+ background-color: rgba(255, 255, 255, 0.4); }
1743
+ .shopee-react-button.shopee-react-button--frameless {
1744
+ color: #fff;
1745
+ background-color: transparent;
1746
+ border-color: transparent; }
1747
+ .shopee-react-button.shopee-react-button--frameless:focus::before, .shopee-react-button.shopee-react-button--frameless:hover::before {
1748
+ background-color: rgba(255, 255, 255, 0.06); }
1749
+ .shopee-react-button.shopee-react-button--frameless:active::before {
1750
+ background-color: rgba(255, 255, 255, 0.12); }
1751
+ .shopee-react-button.shopee-react-button--frameless.loading::before {
1752
+ background-color: rgba(255, 255, 255, 0.4); }
1753
+ html[data-focus-visible] .shopee-react-button:focus {
1754
+ box-shadow: 0 0 0 2px #fff, 0 0 0 4px rgba(238, 77, 45, 0.3); }
1755
+ .shopee-react-button::before {
1756
+ position: absolute;
1757
+ top: -1px;
1758
+ right: -1px;
1759
+ bottom: -1px;
1760
+ left: -1px;
1761
+ border-radius: inherit;
1762
+ content: ''; }
1763
+ .shopee-react-button.disabled, .shopee-react-button.disabled:hover {
1764
+ cursor: not-allowed;
1765
+ opacity: .5; }
1766
+ .shopee-react-button.disabled::before, .shopee-react-button.disabled:hover::before {
1767
+ display: none; }
1768
+ .shopee-react-button span {
1769
+ line-height: 1;
1770
+ vertical-align: middle; }
1771
+ .shopee-react-button span .shopee-react-icon {
1772
+ vertical-align: text-bottom; }
1773
+ .shopee-react-button .shopee-react-icon {
1774
+ width: 16px;
1775
+ line-height: 16px;
1776
+ vertical-align: middle; }
1777
+ .shopee-react-button .shopee-react-icon + span,
1778
+ .shopee-react-button span + .shopee-react-icon {
1779
+ margin-left: 8px; }
1780
+ .shopee-react-button--x-large {
1781
+ height: 48px;
1782
+ min-width: 80px;
1783
+ padding: 0 16px;
1784
+ font-size: 16px; }
1785
+ .shopee-react-button--x-large .shopee-react-icon + span,
1786
+ .shopee-react-button--x-large span + .shopee-react-icon {
1787
+ margin-left: 8px; }
1788
+ .shopee-react-button--large {
1789
+ height: 40px;
1790
+ min-width: 80px;
1791
+ padding: 0 16px;
1792
+ font-size: 14px; }
1793
+ .shopee-react-button--small {
1794
+ height: 24px;
1795
+ min-width: 64px;
1796
+ padding: 0 8px;
1797
+ font-size: 12px; }
1798
+ .shopee-react-button--small .shopee-react-icon {
1799
+ width: 12px;
1800
+ line-height: 12px; }
1801
+ .shopee-react-button--rich {
1802
+ height: auto;
1803
+ padding: 8px 24px; }
1804
+ .shopee-react-button--rich .shopee-react-icon {
1805
+ display: inline-block;
1806
+ width: 24px;
1807
+ line-height: 24px;
1808
+ vertical-align: middle; }
1809
+ .shopee-react-button--rich .shopee-react-button__rich-content {
1810
+ display: inline-block;
1811
+ margin-left: 16px;
1812
+ line-height: 1;
1813
+ text-align: left;
1814
+ vertical-align: middle; }
1815
+ .shopee-react-button--rich .shopee-react-button__rich-content .shopee-react-button__description {
1816
+ margin-top: 2px;
1817
+ font-size: 11px;
1818
+ line-height: normal;
1819
+ white-space: nowrap; }
1820
+ .shopee-react-button--frameless {
1821
+ color: #333; }
1822
+ .shopee-react-button--frameless:focus::before, .shopee-react-button--frameless:hover::before {
1823
+ background-color: rgba(0, 0, 0, 0.06); }
1824
+ .shopee-react-button--frameless:active::before {
1825
+ background-color: rgba(0, 0, 0, 0.12); }
1826
+ .shopee-react-button--frameless.loading::before {
1827
+ background-color: rgba(255, 255, 255, 0.4); }
1828
+ .shopee-react-button--primary {
1829
+ color: #fff;
1830
+ background-color: #ee4d2d;
1831
+ border-color: #ee4d2d; }
1832
+ .shopee-react-button--primary:focus::before, .shopee-react-button--primary:hover::before {
1833
+ background-color: rgba(0, 0, 0, 0.06); }
1834
+ .shopee-react-button--primary:active::before {
1835
+ background-color: rgba(0, 0, 0, 0.12); }
1836
+ .shopee-react-button--primary.loading::before {
1837
+ background-color: rgba(255, 255, 255, 0.4); }
1838
+ .shopee-react-button--primary.shopee-react-button--normal:focus::before, .shopee-react-button--primary.shopee-react-button--normal:hover::before {
1839
+ background-color: rgba(0, 0, 0, 0.04); }
1840
+ .shopee-react-button--primary.shopee-react-button--normal:active::before {
1841
+ background-color: rgba(0, 0, 0, 0.08); }
1842
+ .shopee-react-button--primary.shopee-react-button--outline {
1843
+ color: #ee4d2d;
1844
+ background-color: transparent;
1845
+ border-color: #ee4d2d; }
1846
+ .shopee-react-button--primary.shopee-react-button--outline:focus::before, .shopee-react-button--primary.shopee-react-button--outline:hover::before {
1847
+ background-color: rgba(238, 77, 45, 0.06); }
1848
+ .shopee-react-button--primary.shopee-react-button--outline:active::before {
1849
+ background-color: rgba(238, 77, 45, 0.12); }
1850
+ .shopee-react-button--primary.shopee-react-button--outline.loading::before {
1851
+ background-color: rgba(255, 255, 255, 0.4); }
1852
+ .shopee-react-button--primary.shopee-react-button--frameless {
1853
+ color: #ee4d2d;
1854
+ background-color: transparent;
1855
+ border-color: transparent; }
1856
+ .shopee-react-button--primary.shopee-react-button--frameless:focus::before, .shopee-react-button--primary.shopee-react-button--frameless:hover::before {
1857
+ background-color: rgba(238, 77, 45, 0.06); }
1858
+ .shopee-react-button--primary.shopee-react-button--frameless:active::before {
1859
+ background-color: rgba(238, 77, 45, 0.12); }
1860
+ .shopee-react-button--primary.shopee-react-button--frameless.loading::before {
1861
+ background-color: rgba(255, 255, 255, 0.4); }
1862
+ .shopee-react-button--secondary {
1863
+ color: #fff;
1864
+ background-color: #00bfa5;
1865
+ border-color: #00bfa5; }
1866
+ .shopee-react-button--secondary:focus::before, .shopee-react-button--secondary:hover::before {
1867
+ background-color: rgba(0, 0, 0, 0.06); }
1868
+ .shopee-react-button--secondary:active::before {
1869
+ background-color: rgba(0, 0, 0, 0.12); }
1870
+ .shopee-react-button--secondary.loading::before {
1871
+ background-color: rgba(255, 255, 255, 0.4); }
1872
+ .shopee-react-button--secondary.shopee-react-button--normal:focus::before, .shopee-react-button--secondary.shopee-react-button--normal:hover::before {
1873
+ background-color: rgba(0, 0, 0, 0.04); }
1874
+ .shopee-react-button--secondary.shopee-react-button--normal:active::before {
1875
+ background-color: rgba(0, 0, 0, 0.08); }
1876
+ .shopee-react-button--secondary.shopee-react-button--outline {
1877
+ color: #00bfa5;
1878
+ background-color: transparent;
1879
+ border-color: #00bfa5; }
1880
+ .shopee-react-button--secondary.shopee-react-button--outline:focus::before, .shopee-react-button--secondary.shopee-react-button--outline:hover::before {
1881
+ background-color: rgba(0, 191, 165, 0.06); }
1882
+ .shopee-react-button--secondary.shopee-react-button--outline:active::before {
1883
+ background-color: rgba(0, 191, 165, 0.12); }
1884
+ .shopee-react-button--secondary.shopee-react-button--outline.loading::before {
1885
+ background-color: rgba(255, 255, 255, 0.4); }
1886
+ .shopee-react-button--secondary.shopee-react-button--frameless {
1887
+ color: #00bfa5;
1888
+ background-color: transparent;
1889
+ border-color: transparent; }
1890
+ .shopee-react-button--secondary.shopee-react-button--frameless:focus::before, .shopee-react-button--secondary.shopee-react-button--frameless:hover::before {
1891
+ background-color: rgba(0, 191, 165, 0.06); }
1892
+ .shopee-react-button--secondary.shopee-react-button--frameless:active::before {
1893
+ background-color: rgba(0, 191, 165, 0.12); }
1894
+ .shopee-react-button--secondary.shopee-react-button--frameless.loading::before {
1895
+ background-color: rgba(255, 255, 255, 0.4); }
1896
+ html[data-focus-visible] .shopee-react-button--secondary:focus {
1897
+ box-shadow: 0 0 0 2px #fff, 0 0 0 4px rgba(0, 191, 165, 0.3); }
1898
+ .shopee-react-button--danger {
1899
+ color: #fff;
1900
+ background-color: #ff4742;
1901
+ border-color: #ff4742; }
1902
+ .shopee-react-button--danger:focus::before, .shopee-react-button--danger:hover::before {
1903
+ background-color: rgba(0, 0, 0, 0.06); }
1904
+ .shopee-react-button--danger:active::before {
1905
+ background-color: rgba(0, 0, 0, 0.12); }
1906
+ .shopee-react-button--danger.loading::before {
1907
+ background-color: rgba(255, 255, 255, 0.4); }
1908
+ .shopee-react-button--danger.shopee-react-button--normal:focus::before, .shopee-react-button--danger.shopee-react-button--normal:hover::before {
1909
+ background-color: rgba(0, 0, 0, 0.04); }
1910
+ .shopee-react-button--danger.shopee-react-button--normal:active::before {
1911
+ background-color: rgba(0, 0, 0, 0.08); }
1912
+ .shopee-react-button--danger.shopee-react-button--outline {
1913
+ color: #ff4742;
1914
+ background-color: transparent;
1915
+ border-color: #ff4742; }
1916
+ .shopee-react-button--danger.shopee-react-button--outline:focus::before, .shopee-react-button--danger.shopee-react-button--outline:hover::before {
1917
+ background-color: rgba(255, 71, 66, 0.06); }
1918
+ .shopee-react-button--danger.shopee-react-button--outline:active::before {
1919
+ background-color: rgba(255, 71, 66, 0.12); }
1920
+ .shopee-react-button--danger.shopee-react-button--outline.loading::before {
1921
+ background-color: rgba(255, 255, 255, 0.4); }
1922
+ .shopee-react-button--danger.shopee-react-button--frameless {
1923
+ color: #ff4742;
1924
+ background-color: transparent;
1925
+ border-color: transparent; }
1926
+ .shopee-react-button--danger.shopee-react-button--frameless:focus::before, .shopee-react-button--danger.shopee-react-button--frameless:hover::before {
1927
+ background-color: rgba(255, 71, 66, 0.06); }
1928
+ .shopee-react-button--danger.shopee-react-button--frameless:active::before {
1929
+ background-color: rgba(255, 71, 66, 0.12); }
1930
+ .shopee-react-button--danger.shopee-react-button--frameless.loading::before {
1931
+ background-color: rgba(255, 255, 255, 0.4); }
1932
+ html[data-focus-visible] .shopee-react-button--danger:focus {
1933
+ box-shadow: 0 0 0 2px #fff, 0 0 0 4px rgba(255, 71, 66, 0.3); }
1934
+ .shopee-react-button--link {
1935
+ color: #2673dd;
1936
+ background-color: transparent;
1937
+ border-color: transparent;
1938
+ height: unset;
1939
+ min-width: unset;
1940
+ padding: 0;
1941
+ font-weight: normal; }
1942
+ .shopee-react-button--link:focus::before, .shopee-react-button--link:hover::before {
1943
+ background-color: rgba(0, 0, 0, 0.06); }
1944
+ .shopee-react-button--link:active::before {
1945
+ background-color: rgba(0, 0, 0, 0.12); }
1946
+ .shopee-react-button--link.loading::before {
1947
+ background-color: rgba(255, 255, 255, 0.4); }
1948
+ .shopee-react-button--link.shopee-react-button--normal:focus::before, .shopee-react-button--link.shopee-react-button--normal:hover::before {
1949
+ background-color: rgba(0, 0, 0, 0.04); }
1950
+ .shopee-react-button--link.shopee-react-button--normal:active::before {
1951
+ background-color: rgba(0, 0, 0, 0.08); }
1952
+ .shopee-react-button--link.shopee-react-button--outline {
1953
+ color: transparent;
1954
+ background-color: transparent;
1955
+ border-color: transparent; }
1956
+ .shopee-react-button--link.shopee-react-button--outline:focus::before, .shopee-react-button--link.shopee-react-button--outline:hover::before {
1957
+ background-color: rgba(0, 0, 0, 0.06); }
1958
+ .shopee-react-button--link.shopee-react-button--outline:active::before {
1959
+ background-color: rgba(0, 0, 0, 0.12); }
1960
+ .shopee-react-button--link.shopee-react-button--outline.loading::before {
1961
+ background-color: rgba(255, 255, 255, 0.4); }
1962
+ .shopee-react-button--link.shopee-react-button--frameless {
1963
+ color: transparent;
1964
+ background-color: transparent;
1965
+ border-color: transparent; }
1966
+ .shopee-react-button--link.shopee-react-button--frameless:focus::before, .shopee-react-button--link.shopee-react-button--frameless:hover::before {
1967
+ background-color: rgba(0, 0, 0, 0.06); }
1968
+ .shopee-react-button--link.shopee-react-button--frameless:active::before {
1969
+ background-color: rgba(0, 0, 0, 0.12); }
1970
+ .shopee-react-button--link.shopee-react-button--frameless.loading::before {
1971
+ background-color: rgba(255, 255, 255, 0.4); }
1972
+ .shopee-react-button--link:focus::before, .shopee-react-button--link:hover::before {
1973
+ background-color: rgba(0, 0, 0, 0); }
1974
+ .shopee-react-button--link:active::before {
1975
+ background-color: rgba(0, 0, 0, 0); }
1976
+ .shopee-react-button--link.loading::before {
1977
+ background-color: rgba(255, 255, 255, 0.4); }
1978
+ .shopee-react-button--link.shopee-react-button:hover::before {
1979
+ background-color: transparent; }
1980
+ .shopee-react-button--link.shopee-react-button:not(.disabled):hover {
1981
+ color: #1791f2; }
1982
+ .shopee-react-button--link .shopee-react-icon + span {
1983
+ margin-left: 4px; }
1984
+ .shopee-react-button--link span + .shopee-react-icon {
1985
+ margin-left: 2px; }
1986
+ .shopee-react-button--link.underline {
1987
+ text-decoration: underline; }
1988
+ .shopee-react-button--dashed {
1989
+ border-color: #d8d8d8;
1990
+ border-style: dashed; }
1991
+ .shopee-react-button--dashed.shopee-react-button--primary {
1992
+ color: #2673dd;
1993
+ background-color: #fff;
1994
+ border-color: #2673dd;
1995
+ border-style: dashed; }
1996
+ .shopee-react-button--dashed.shopee-react-button--primary:focus::before, .shopee-react-button--dashed.shopee-react-button--primary:hover::before {
1997
+ background-color: rgba(0, 0, 0, 0.06); }
1998
+ .shopee-react-button--dashed.shopee-react-button--primary:active::before {
1999
+ background-color: rgba(0, 0, 0, 0.12); }
2000
+ .shopee-react-button--dashed.shopee-react-button--primary.loading::before {
2001
+ background-color: rgba(255, 255, 255, 0.4); }
2002
+ .shopee-react-button--dashed.shopee-react-button--primary.shopee-react-button--normal:focus::before, .shopee-react-button--dashed.shopee-react-button--primary.shopee-react-button--normal:hover::before {
2003
+ background-color: rgba(0, 0, 0, 0.04); }
2004
+ .shopee-react-button--dashed.shopee-react-button--primary.shopee-react-button--normal:active::before {
2005
+ background-color: rgba(0, 0, 0, 0.08); }
2006
+ .shopee-react-button--dashed.shopee-react-button--primary.shopee-react-button--outline {
2007
+ color: #fff;
2008
+ background-color: transparent;
2009
+ border-color: #2673dd; }
2010
+ .shopee-react-button--dashed.shopee-react-button--primary.shopee-react-button--outline:focus::before, .shopee-react-button--dashed.shopee-react-button--primary.shopee-react-button--outline:hover::before {
2011
+ background-color: rgba(255, 255, 255, 0.06); }
2012
+ .shopee-react-button--dashed.shopee-react-button--primary.shopee-react-button--outline:active::before {
2013
+ background-color: rgba(255, 255, 255, 0.12); }
2014
+ .shopee-react-button--dashed.shopee-react-button--primary.shopee-react-button--outline.loading::before {
2015
+ background-color: rgba(255, 255, 255, 0.4); }
2016
+ .shopee-react-button--dashed.shopee-react-button--primary.shopee-react-button--frameless {
2017
+ color: #fff;
2018
+ background-color: transparent;
2019
+ border-color: transparent; }
2020
+ .shopee-react-button--dashed.shopee-react-button--primary.shopee-react-button--frameless:focus::before, .shopee-react-button--dashed.shopee-react-button--primary.shopee-react-button--frameless:hover::before {
2021
+ background-color: rgba(255, 255, 255, 0.06); }
2022
+ .shopee-react-button--dashed.shopee-react-button--primary.shopee-react-button--frameless:active::before {
2023
+ background-color: rgba(255, 255, 255, 0.12); }
2024
+ .shopee-react-button--dashed.shopee-react-button--primary.shopee-react-button--frameless.loading::before {
2025
+ background-color: rgba(255, 255, 255, 0.4); }
2026
+ .shopee-react-button--dashed.shopee-react-button--primary:focus::before, .shopee-react-button--dashed.shopee-react-button--primary:hover::before {
2027
+ background-color: rgba(38, 115, 221, 0.06); }
2028
+ .shopee-react-button--dashed.shopee-react-button--primary:active::before {
2029
+ background-color: rgba(38, 115, 221, 0.12); }
2030
+ .shopee-react-button--dashed.shopee-react-button--primary.loading::before {
2031
+ background-color: rgba(255, 255, 255, 0.4); }
2032
+ .shopee-react-button--ghost {
2033
+ color: #fff;
2034
+ background-color: transparent;
2035
+ border-color: #fff; }
2036
+ .shopee-react-button--ghost:focus::before, .shopee-react-button--ghost:hover::before {
2037
+ background-color: rgba(0, 0, 0, 0.06); }
2038
+ .shopee-react-button--ghost:active::before {
2039
+ background-color: rgba(0, 0, 0, 0.12); }
2040
+ .shopee-react-button--ghost.loading::before {
2041
+ background-color: rgba(255, 255, 255, 0.4); }
2042
+ .shopee-react-button--ghost.shopee-react-button--normal:focus::before, .shopee-react-button--ghost.shopee-react-button--normal:hover::before {
2043
+ background-color: rgba(0, 0, 0, 0.04); }
2044
+ .shopee-react-button--ghost.shopee-react-button--normal:active::before {
2045
+ background-color: rgba(0, 0, 0, 0.08); }
2046
+ .shopee-react-button--ghost.shopee-react-button--outline {
2047
+ color: transparent;
2048
+ background-color: transparent;
2049
+ border-color: #fff; }
2050
+ .shopee-react-button--ghost.shopee-react-button--outline:focus::before, .shopee-react-button--ghost.shopee-react-button--outline:hover::before {
2051
+ background-color: rgba(0, 0, 0, 0.06); }
2052
+ .shopee-react-button--ghost.shopee-react-button--outline:active::before {
2053
+ background-color: rgba(0, 0, 0, 0.12); }
2054
+ .shopee-react-button--ghost.shopee-react-button--outline.loading::before {
2055
+ background-color: rgba(255, 255, 255, 0.4); }
2056
+ .shopee-react-button--ghost.shopee-react-button--frameless {
2057
+ color: transparent;
2058
+ background-color: transparent;
2059
+ border-color: transparent; }
2060
+ .shopee-react-button--ghost.shopee-react-button--frameless:focus::before, .shopee-react-button--ghost.shopee-react-button--frameless:hover::before {
2061
+ background-color: rgba(0, 0, 0, 0.06); }
2062
+ .shopee-react-button--ghost.shopee-react-button--frameless:active::before {
2063
+ background-color: rgba(0, 0, 0, 0.12); }
2064
+ .shopee-react-button--ghost.shopee-react-button--frameless.loading::before {
2065
+ background-color: rgba(255, 255, 255, 0.4); }
2066
+ .shopee-react-button--ghost:focus::before, .shopee-react-button--ghost:hover::before {
2067
+ background-color: rgba(255, 255, 255, 0.06); }
2068
+ .shopee-react-button--ghost:active::before {
2069
+ background-color: rgba(255, 255, 255, 0.12); }
2070
+ .shopee-react-button--ghost.loading::before {
2071
+ background-color: rgba(255, 255, 255, 0.4); }
2072
+ .shopee-react-button--round {
2073
+ border-radius: 100px; }
2074
+ .shopee-react-button--circle {
2075
+ min-width: unset;
2076
+ padding: 8px;
2077
+ border-radius: 100%; }
2078
+ .shopee-react-button--block {
2079
+ width: 100%; }
2080
+ .shopee-react-button--compact {
2081
+ padding: 0 8px; }
2082
+
2083
+ /** text **/
2084
+ /** z-index **/
2085
+ /** fill **/
2086
+ /** boder **/
2087
+ .move-up-enter,
2088
+ .move-up-appear {
2089
+ animation-duration: 0.2s;
2090
+ animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
2091
+ animation-fill-mode: both;
2092
+ animation-play-state: paused; }
2093
+
2094
+ .move-up-leave {
2095
+ animation-duration: 0.2s;
2096
+ animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
2097
+ animation-fill-mode: both;
2098
+ animation-play-state: paused; }
2099
+
2100
+ .move-up-enter.move-up-enter-active,
2101
+ .move-up-appear.move-up-appear-active {
2102
+ animation-name: shopeeMoveUpIn;
2103
+ animation-play-state: running; }
2104
+
2105
+ .move-up-leave.move-up-leave-active {
2106
+ animation-name: shopeeMoveUpOut;
2107
+ animation-play-state: running;
2108
+ pointer-events: none; }
2109
+
2110
+ .move-up-enter,
2111
+ .move-up-appear {
2112
+ opacity: 0;
2113
+ animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1); }
2114
+
2115
+ .move-up-leave {
2116
+ animation-timing-function: cubic-bezier(0.6, 0.04, 0.98, 0.34); }
2117
+
2118
+ .move-down-enter,
2119
+ .move-down-appear {
2120
+ animation-duration: 0.2s;
2121
+ animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
2122
+ animation-fill-mode: both;
2123
+ animation-play-state: paused; }
2124
+
2125
+ .move-down-leave {
2126
+ animation-duration: 0.2s;
2127
+ animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
2128
+ animation-fill-mode: both;
2129
+ animation-play-state: paused; }
2130
+
2131
+ .move-down-enter.move-down-enter-active,
2132
+ .move-down-appear.move-down-appear-active {
2133
+ animation-name: shopeeMoveDownIn;
2134
+ animation-play-state: running; }
2135
+
2136
+ .move-down-leave.move-down-leave-active {
2137
+ animation-name: shopeeMoveDownOut;
2138
+ animation-play-state: running;
2139
+ pointer-events: none; }
2140
+
2141
+ .move-down-enter,
2142
+ .move-down-appear {
2143
+ opacity: 0;
2144
+ animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1); }
2145
+
2146
+ .move-down-leave {
2147
+ animation-timing-function: cubic-bezier(0.6, 0.04, 0.98, 0.34); }
2148
+
2149
+ .move-left-enter,
2150
+ .move-left-appear {
2151
+ animation-duration: 0.2s;
2152
+ animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
2153
+ animation-fill-mode: both;
2154
+ animation-play-state: paused; }
2155
+
2156
+ .move-left-leave {
2157
+ animation-duration: 0.2s;
2158
+ animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
2159
+ animation-fill-mode: both;
2160
+ animation-play-state: paused; }
2161
+
2162
+ .move-left-enter.move-left-enter-active,
2163
+ .move-left-appear.move-left-appear-active {
2164
+ animation-name: shopeeMoveLeftIn;
2165
+ animation-play-state: running; }
2166
+
2167
+ .move-left-leave.move-left-leave-active {
2168
+ animation-name: shopeeMoveLeftOut;
2169
+ animation-play-state: running;
2170
+ pointer-events: none; }
2171
+
2172
+ .move-left-enter,
2173
+ .move-left-appear {
2174
+ opacity: 0;
2175
+ animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1); }
2176
+
2177
+ .move-left-leave {
2178
+ animation-timing-function: cubic-bezier(0.6, 0.04, 0.98, 0.34); }
2179
+
2180
+ .move-right-enter,
2181
+ .move-right-appear {
2182
+ animation-duration: 0.2s;
2183
+ animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
2184
+ animation-fill-mode: both;
2185
+ animation-play-state: paused; }
2186
+
2187
+ .move-right-leave {
2188
+ animation-duration: 0.2s;
2189
+ animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
2190
+ animation-fill-mode: both;
2191
+ animation-play-state: paused; }
2192
+
2193
+ .move-right-enter.move-right-enter-active,
2194
+ .move-right-appear.move-right-appear-active {
2195
+ animation-name: shopeeMoveRightIn;
2196
+ animation-play-state: running; }
2197
+
2198
+ .move-right-leave.move-right-leave-active {
2199
+ animation-name: shopeeMoveRightOut;
2200
+ animation-play-state: running;
2201
+ pointer-events: none; }
2202
+
2203
+ .move-right-enter,
2204
+ .move-right-appear {
2205
+ opacity: 0;
2206
+ animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1); }
2207
+
2208
+ .move-right-leave {
2209
+ animation-timing-function: cubic-bezier(0.6, 0.04, 0.98, 0.34); }
2210
+
2211
+ @keyframes shopeeMoveDownIn {
2212
+ 0% {
2213
+ transform: translateY(100%);
2214
+ transform-origin: 0 0;
2215
+ opacity: 0; }
2216
+ 100% {
2217
+ transform: translateY(0%);
2218
+ transform-origin: 0 0;
2219
+ opacity: 1; } }
2220
+
2221
+ @keyframes shopeeMoveDownOut {
2222
+ 0% {
2223
+ transform: translateY(0%);
2224
+ transform-origin: 0 0;
2225
+ opacity: 1; }
2226
+ 100% {
2227
+ transform: translateY(100%);
2228
+ transform-origin: 0 0;
2229
+ opacity: 0; } }
2230
+
2231
+ @keyframes shopeeMoveLeftIn {
2232
+ 0% {
2233
+ transform: translateX(-100%);
2234
+ transform-origin: 0 0;
2235
+ opacity: 0; }
2236
+ 100% {
2237
+ transform: translateX(0%);
2238
+ transform-origin: 0 0;
2239
+ opacity: 1; } }
2240
+
2241
+ @keyframes shopeeMoveLeftOut {
2242
+ 0% {
2243
+ transform: translateX(0%);
2244
+ transform-origin: 0 0;
2245
+ opacity: 1; }
2246
+ 100% {
2247
+ transform: translateX(-100%);
2248
+ transform-origin: 0 0;
2249
+ opacity: 0; } }
2250
+
2251
+ @keyframes shopeeMoveRightIn {
2252
+ 0% {
2253
+ transform: translateX(100%);
2254
+ transform-origin: 0 0;
2255
+ opacity: 0; }
2256
+ 100% {
2257
+ transform: translateX(0%);
2258
+ transform-origin: 0 0;
2259
+ opacity: 1; } }
2260
+
2261
+ @keyframes shopeeMoveRightOut {
2262
+ 0% {
2263
+ transform: translateX(0%);
2264
+ transform-origin: 0 0;
2265
+ opacity: 1; }
2266
+ 100% {
2267
+ transform: translateX(100%);
2268
+ transform-origin: 0 0;
2269
+ opacity: 0; } }
2270
+
2271
+ @keyframes shopeeMoveUpIn {
2272
+ 0% {
2273
+ transform: translateY(-100%);
2274
+ transform-origin: 0 0;
2275
+ opacity: 0; }
2276
+ 100% {
2277
+ transform: translateY(0%);
2278
+ transform-origin: 0 0;
2279
+ opacity: 1; } }
2280
+
2281
+ @keyframes shopeeMoveUpOut {
2282
+ 0% {
2283
+ transform: translateY(0%);
2284
+ transform-origin: 0 0;
2285
+ opacity: 1; }
2286
+ 100% {
2287
+ transform: translateY(-100%);
2288
+ transform-origin: 0 0;
2289
+ opacity: 0; } }
2290
+
2291
+ .shopee-react-zoom-enter,
2292
+ .shopee-react-zoom-appear {
2293
+ animation-duration: 0.2s;
2294
+ animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
2295
+ animation-fill-mode: both;
2296
+ animation-play-state: paused; }
2297
+
2298
+ .shopee-react-zoom-leave {
2299
+ animation-duration: 0.2s;
2300
+ animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
2301
+ animation-fill-mode: both;
2302
+ animation-play-state: paused; }
2303
+
2304
+ .shopee-react-zoom-enter.shopee-react-zoom-enter-active,
2305
+ .shopee-react-zoom-appear.shopee-react-zoom-appear-active {
2306
+ animation-name: shopeeZoomIn;
2307
+ animation-play-state: running; }
2308
+
2309
+ .shopee-react-zoom-leave.shopee-react-zoom-leave-active {
2310
+ animation-name: shopeeZoomOut;
2311
+ animation-play-state: running;
2312
+ pointer-events: none; }
2313
+
2314
+ .shopee-react-zoom-enter,
2315
+ .shopee-react-zoom-appear {
2316
+ transform: scale(0);
2317
+ opacity: 0;
2318
+ animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1); }
2319
+ .shopee-react-zoom-enter-prepare,
2320
+ .shopee-react-zoom-appear-prepare {
2321
+ transform: none; }
2322
+
2323
+ .shopee-react-zoom-leave {
2324
+ animation-timing-function: cubic-bezier(0.78, 0.14, 0.15, 0.86); }
2325
+
2326
+ .shopee-react-zoom-big-enter,
2327
+ .shopee-react-zoom-big-appear {
2328
+ animation-duration: 0.2s;
2329
+ animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
2330
+ animation-fill-mode: both;
2331
+ animation-play-state: paused; }
2332
+
2333
+ .shopee-react-zoom-big-leave {
2334
+ animation-duration: 0.2s;
2335
+ animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
2336
+ animation-fill-mode: both;
2337
+ animation-play-state: paused; }
2338
+
2339
+ .shopee-react-zoom-big-enter.shopee-react-zoom-big-enter-active,
2340
+ .shopee-react-zoom-big-appear.shopee-react-zoom-big-appear-active {
2341
+ animation-name: shopeeZoomBigIn;
2342
+ animation-play-state: running; }
2343
+
2344
+ .shopee-react-zoom-big-leave.shopee-react-zoom-big-leave-active {
2345
+ animation-name: shopeeZoomBigOut;
2346
+ animation-play-state: running;
2347
+ pointer-events: none; }
2348
+
2349
+ .shopee-react-zoom-big-enter,
2350
+ .shopee-react-zoom-big-appear {
2351
+ transform: scale(0);
2352
+ opacity: 0;
2353
+ animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1); }
2354
+ .shopee-react-zoom-big-enter-prepare,
2355
+ .shopee-react-zoom-big-appear-prepare {
2356
+ transform: none; }
2357
+
2358
+ .shopee-react-zoom-big-leave {
2359
+ animation-timing-function: cubic-bezier(0.78, 0.14, 0.15, 0.86); }
2360
+
2361
+ .shopee-react-zoom-big-fast-enter,
2362
+ .shopee-react-zoom-big-fast-appear {
2363
+ animation-duration: 0.1s;
2364
+ animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
2365
+ animation-fill-mode: both;
2366
+ animation-play-state: paused; }
2367
+
2368
+ .shopee-react-zoom-big-fast-leave {
2369
+ animation-duration: 0.1s;
2370
+ animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
2371
+ animation-fill-mode: both;
2372
+ animation-play-state: paused; }
2373
+
2374
+ .shopee-react-zoom-big-fast-enter.shopee-react-zoom-big-fast-enter-active,
2375
+ .shopee-react-zoom-big-fast-appear.shopee-react-zoom-big-fast-appear-active {
2376
+ animation-name: shopeeZoomBigIn;
2377
+ animation-play-state: running; }
2378
+
2379
+ .shopee-react-zoom-big-fast-leave.shopee-react-zoom-big-fast-leave-active {
2380
+ animation-name: shopeeZoomBigOut;
2381
+ animation-play-state: running;
2382
+ pointer-events: none; }
2383
+
2384
+ .shopee-react-zoom-big-fast-enter,
2385
+ .shopee-react-zoom-big-fast-appear {
2386
+ transform: scale(0);
2387
+ opacity: 0;
2388
+ animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1); }
2389
+ .shopee-react-zoom-big-fast-enter-prepare,
2390
+ .shopee-react-zoom-big-fast-appear-prepare {
2391
+ transform: none; }
2392
+
2393
+ .shopee-react-zoom-big-fast-leave {
2394
+ animation-timing-function: cubic-bezier(0.78, 0.14, 0.15, 0.86); }
2395
+
2396
+ .shopee-react-zoom-up-enter,
2397
+ .shopee-react-zoom-up-appear {
2398
+ animation-duration: 0.2s;
2399
+ animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
2400
+ animation-fill-mode: both;
2401
+ animation-play-state: paused; }
2402
+
2403
+ .shopee-react-zoom-up-leave {
2404
+ animation-duration: 0.2s;
2405
+ animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
2406
+ animation-fill-mode: both;
2407
+ animation-play-state: paused; }
2408
+
2409
+ .shopee-react-zoom-up-enter.shopee-react-zoom-up-enter-active,
2410
+ .shopee-react-zoom-up-appear.shopee-react-zoom-up-appear-active {
2411
+ animation-name: shopeeZoomUpIn;
2412
+ animation-play-state: running; }
2413
+
2414
+ .shopee-react-zoom-up-leave.shopee-react-zoom-up-leave-active {
2415
+ animation-name: shopeeZoomUpOut;
2416
+ animation-play-state: running;
2417
+ pointer-events: none; }
2418
+
2419
+ .shopee-react-zoom-up-enter,
2420
+ .shopee-react-zoom-up-appear {
2421
+ transform: scale(0);
2422
+ opacity: 0;
2423
+ animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1); }
2424
+ .shopee-react-zoom-up-enter-prepare,
2425
+ .shopee-react-zoom-up-appear-prepare {
2426
+ transform: none; }
2427
+
2428
+ .shopee-react-zoom-up-leave {
2429
+ animation-timing-function: cubic-bezier(0.78, 0.14, 0.15, 0.86); }
2430
+
2431
+ .shopee-react-zoom-down-enter,
2432
+ .shopee-react-zoom-down-appear {
2433
+ animation-duration: 0.2s;
2434
+ animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
2435
+ animation-fill-mode: both;
2436
+ animation-play-state: paused; }
2437
+
2438
+ .shopee-react-zoom-down-leave {
2439
+ animation-duration: 0.2s;
2440
+ animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
2441
+ animation-fill-mode: both;
2442
+ animation-play-state: paused; }
2443
+
2444
+ .shopee-react-zoom-down-enter.shopee-react-zoom-down-enter-active,
2445
+ .shopee-react-zoom-down-appear.shopee-react-zoom-down-appear-active {
2446
+ animation-name: shopeeZoomDownIn;
2447
+ animation-play-state: running; }
2448
+
2449
+ .shopee-react-zoom-down-leave.shopee-react-zoom-down-leave-active {
2450
+ animation-name: shopeeZoomDownOut;
2451
+ animation-play-state: running;
2452
+ pointer-events: none; }
2453
+
2454
+ .shopee-react-zoom-down-enter,
2455
+ .shopee-react-zoom-down-appear {
2456
+ transform: scale(0);
2457
+ opacity: 0;
2458
+ animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1); }
2459
+ .shopee-react-zoom-down-enter-prepare,
2460
+ .shopee-react-zoom-down-appear-prepare {
2461
+ transform: none; }
2462
+
2463
+ .shopee-react-zoom-down-leave {
2464
+ animation-timing-function: cubic-bezier(0.78, 0.14, 0.15, 0.86); }
2465
+
2466
+ .shopee-react-zoom-left-enter,
2467
+ .shopee-react-zoom-left-appear {
2468
+ animation-duration: 0.2s;
2469
+ animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
2470
+ animation-fill-mode: both;
2471
+ animation-play-state: paused; }
2472
+
2473
+ .shopee-react-zoom-left-leave {
2474
+ animation-duration: 0.2s;
2475
+ animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
2476
+ animation-fill-mode: both;
2477
+ animation-play-state: paused; }
2478
+
2479
+ .shopee-react-zoom-left-enter.shopee-react-zoom-left-enter-active,
2480
+ .shopee-react-zoom-left-appear.shopee-react-zoom-left-appear-active {
2481
+ animation-name: shopeeZoomLeftIn;
2482
+ animation-play-state: running; }
2483
+
2484
+ .shopee-react-zoom-left-leave.shopee-react-zoom-left-leave-active {
2485
+ animation-name: shopeeZoomLeftOut;
2486
+ animation-play-state: running;
2487
+ pointer-events: none; }
2488
+
2489
+ .shopee-react-zoom-left-enter,
2490
+ .shopee-react-zoom-left-appear {
2491
+ transform: scale(0);
2492
+ opacity: 0;
2493
+ animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1); }
2494
+ .shopee-react-zoom-left-enter-prepare,
2495
+ .shopee-react-zoom-left-appear-prepare {
2496
+ transform: none; }
2497
+
2498
+ .shopee-react-zoom-left-leave {
2499
+ animation-timing-function: cubic-bezier(0.78, 0.14, 0.15, 0.86); }
2500
+
2501
+ .shopee-react-zoom-right-enter,
2502
+ .shopee-react-zoom-right-appear {
2503
+ animation-duration: 0.2s;
2504
+ animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
2505
+ animation-fill-mode: both;
2506
+ animation-play-state: paused; }
2507
+
2508
+ .shopee-react-zoom-right-leave {
2509
+ animation-duration: 0.2s;
2510
+ animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
2511
+ animation-fill-mode: both;
2512
+ animation-play-state: paused; }
2513
+
2514
+ .shopee-react-zoom-right-enter.shopee-react-zoom-right-enter-active,
2515
+ .shopee-react-zoom-right-appear.shopee-react-zoom-right-appear-active {
2516
+ animation-name: shopeeZoomRightIn;
2517
+ animation-play-state: running; }
2518
+
2519
+ .shopee-react-zoom-right-leave.shopee-react-zoom-right-leave-active {
2520
+ animation-name: shopeeZoomRightOut;
2521
+ animation-play-state: running;
2522
+ pointer-events: none; }
2523
+
2524
+ .shopee-react-zoom-right-enter,
2525
+ .shopee-react-zoom-right-appear {
2526
+ transform: scale(0);
2527
+ opacity: 0;
2528
+ animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1); }
2529
+ .shopee-react-zoom-right-enter-prepare,
2530
+ .shopee-react-zoom-right-appear-prepare {
2531
+ transform: none; }
2532
+
2533
+ .shopee-react-zoom-right-leave {
2534
+ animation-timing-function: cubic-bezier(0.78, 0.14, 0.15, 0.86); }
2535
+
2536
+ @keyframes shopeeZoomIn {
2537
+ 0% {
2538
+ transform: scale(0.2);
2539
+ opacity: 0; }
2540
+ 100% {
2541
+ transform: scale(1);
2542
+ opacity: 1; } }
2543
+
2544
+ @keyframes shopeeZoomOut {
2545
+ 0% {
2546
+ transform: scale(1); }
2547
+ 100% {
2548
+ transform: scale(0.2);
2549
+ opacity: 0; } }
2550
+
2551
+ @keyframes shopeeZoomBigIn {
2552
+ 0% {
2553
+ transform: scale(0.8);
2554
+ opacity: 0; }
2555
+ 100% {
2556
+ transform: scale(1);
2557
+ opacity: 1; } }
2558
+
2559
+ @keyframes shopeeZoomBigOut {
2560
+ 0% {
2561
+ transform: scale(1); }
2562
+ 100% {
2563
+ transform: scale(0.8);
2564
+ opacity: 0; } }
2565
+
2566
+ @keyframes shopeeZoomUpIn {
2567
+ 0% {
2568
+ transform: scale(0.8);
2569
+ transform-origin: 50% 0%;
2570
+ opacity: 0; }
2571
+ 100% {
2572
+ transform: scale(1);
2573
+ transform-origin: 50% 0%; } }
2574
+
2575
+ @keyframes shopeeZoomUpOut {
2576
+ 0% {
2577
+ transform: scale(1);
2578
+ transform-origin: 50% 0%; }
2579
+ 100% {
2580
+ transform: scale(0.8);
2581
+ transform-origin: 50% 0%;
2582
+ opacity: 0; } }
2583
+
2584
+ @keyframes shopeeZoomLeftIn {
2585
+ 0% {
2586
+ transform: scale(0.8);
2587
+ transform-origin: 0% 50%;
2588
+ opacity: 0; }
2589
+ 100% {
2590
+ transform: scale(1);
2591
+ transform-origin: 0% 50%; } }
2592
+
2593
+ @keyframes shopeeZoomLeftOut {
2594
+ 0% {
2595
+ transform: scale(1);
2596
+ transform-origin: 0% 50%; }
2597
+ 100% {
2598
+ transform: scale(0.8);
2599
+ transform-origin: 0% 50%;
2600
+ opacity: 0; } }
2601
+
2602
+ @keyframes shopeeZoomRightIn {
2603
+ 0% {
2604
+ transform: scale(0.8);
2605
+ transform-origin: 100% 50%;
2606
+ opacity: 0; }
2607
+ 100% {
2608
+ transform: scale(1);
2609
+ transform-origin: 100% 50%; } }
2610
+
2611
+ @keyframes shopeeZoomRightOut {
2612
+ 0% {
2613
+ transform: scale(1);
2614
+ transform-origin: 100% 50%; }
2615
+ 100% {
2616
+ transform: scale(0.8);
2617
+ transform-origin: 100% 50%;
2618
+ opacity: 0; } }
2619
+
2620
+ @keyframes shopeeZoomDownIn {
2621
+ 0% {
2622
+ transform: scale(0.8);
2623
+ transform-origin: 50% 100%;
2624
+ opacity: 0; }
2625
+ 100% {
2626
+ transform: scale(1);
2627
+ transform-origin: 50% 100%; } }
2628
+
2629
+ @keyframes shopeeZoomDownOut {
2630
+ 0% {
2631
+ transform: scale(1);
2632
+ transform-origin: 50% 100%; }
2633
+ 100% {
2634
+ transform: scale(0.8);
2635
+ transform-origin: 50% 100%;
2636
+ opacity: 0; } }
2637
+
2638
+ .shopee-react-button-group {
2639
+ display: inline-block;
2640
+ vertical-align: middle; }
2641
+ .shopee-react-button-group.horizontal .shopee-react-button {
2642
+ float: left; }
2643
+ .shopee-react-button-group.horizontal .shopee-react-button:not(:last-of-type):not(:first-of-type) {
2644
+ border-radius: 0; }
2645
+ .shopee-react-button-group.horizontal .shopee-react-button:not(:last-of-type) {
2646
+ margin-right: -1px; }
2647
+ .shopee-react-button-group.horizontal .shopee-react-button:first-of-type {
2648
+ border-top-right-radius: 0;
2649
+ border-bottom-right-radius: 0; }
2650
+ .shopee-react-button-group.horizontal .shopee-react-button:last-of-type {
2651
+ border-bottom-left-radius: 0;
2652
+ border-top-left-radius: 0; }
2653
+ .shopee-react-button-group.vertical .shopee-react-button {
2654
+ display: block;
2655
+ float: none;
2656
+ width: 100%; }
2657
+ .shopee-react-button-group.vertical .shopee-react-button:not(:last-of-type):not(:first-of-type) {
2658
+ border-radius: 0; }
2659
+ .shopee-react-button-group.vertical .shopee-react-button:not(:last-of-type) {
2660
+ margin-bottom: -1px; }
2661
+ .shopee-react-button-group.vertical .shopee-react-button:first-of-type {
2662
+ border-bottom-right-radius: 0;
2663
+ border-bottom-left-radius: 0; }
2664
+ .shopee-react-button-group.vertical .shopee-react-button:last-of-type {
2665
+ border-top-right-radius: 0;
2666
+ border-top-left-radius: 0; }
2667
+
2668
+ /** text **/
2669
+ /** z-index **/
2670
+ /** fill **/
2671
+ /** boder **/
2672
+ .move-up-enter,
2673
+ .move-up-appear {
2674
+ animation-duration: 0.2s;
2675
+ animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
2676
+ animation-fill-mode: both;
2677
+ animation-play-state: paused; }
2678
+
2679
+ .move-up-leave {
2680
+ animation-duration: 0.2s;
2681
+ animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
2682
+ animation-fill-mode: both;
2683
+ animation-play-state: paused; }
2684
+
2685
+ .move-up-enter.move-up-enter-active,
2686
+ .move-up-appear.move-up-appear-active {
2687
+ animation-name: shopeeMoveUpIn;
2688
+ animation-play-state: running; }
2689
+
2690
+ .move-up-leave.move-up-leave-active {
2691
+ animation-name: shopeeMoveUpOut;
2692
+ animation-play-state: running;
2693
+ pointer-events: none; }
2694
+
2695
+ .move-up-enter,
2696
+ .move-up-appear {
2697
+ opacity: 0;
2698
+ animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1); }
2699
+
2700
+ .move-up-leave {
2701
+ animation-timing-function: cubic-bezier(0.6, 0.04, 0.98, 0.34); }
2702
+
2703
+ .move-down-enter,
2704
+ .move-down-appear {
2705
+ animation-duration: 0.2s;
2706
+ animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
2707
+ animation-fill-mode: both;
2708
+ animation-play-state: paused; }
2709
+
2710
+ .move-down-leave {
2711
+ animation-duration: 0.2s;
2712
+ animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
2713
+ animation-fill-mode: both;
2714
+ animation-play-state: paused; }
2715
+
2716
+ .move-down-enter.move-down-enter-active,
2717
+ .move-down-appear.move-down-appear-active {
2718
+ animation-name: shopeeMoveDownIn;
2719
+ animation-play-state: running; }
2720
+
2721
+ .move-down-leave.move-down-leave-active {
2722
+ animation-name: shopeeMoveDownOut;
2723
+ animation-play-state: running;
2724
+ pointer-events: none; }
2725
+
2726
+ .move-down-enter,
2727
+ .move-down-appear {
2728
+ opacity: 0;
2729
+ animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1); }
2730
+
2731
+ .move-down-leave {
2732
+ animation-timing-function: cubic-bezier(0.6, 0.04, 0.98, 0.34); }
2733
+
2734
+ .move-left-enter,
2735
+ .move-left-appear {
2736
+ animation-duration: 0.2s;
2737
+ animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
2738
+ animation-fill-mode: both;
2739
+ animation-play-state: paused; }
2740
+
2741
+ .move-left-leave {
2742
+ animation-duration: 0.2s;
2743
+ animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
2744
+ animation-fill-mode: both;
2745
+ animation-play-state: paused; }
2746
+
2747
+ .move-left-enter.move-left-enter-active,
2748
+ .move-left-appear.move-left-appear-active {
2749
+ animation-name: shopeeMoveLeftIn;
2750
+ animation-play-state: running; }
2751
+
2752
+ .move-left-leave.move-left-leave-active {
2753
+ animation-name: shopeeMoveLeftOut;
2754
+ animation-play-state: running;
2755
+ pointer-events: none; }
2756
+
2757
+ .move-left-enter,
2758
+ .move-left-appear {
2759
+ opacity: 0;
2760
+ animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1); }
2761
+
2762
+ .move-left-leave {
2763
+ animation-timing-function: cubic-bezier(0.6, 0.04, 0.98, 0.34); }
2764
+
2765
+ .move-right-enter,
2766
+ .move-right-appear {
2767
+ animation-duration: 0.2s;
2768
+ animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
2769
+ animation-fill-mode: both;
2770
+ animation-play-state: paused; }
2771
+
2772
+ .move-right-leave {
2773
+ animation-duration: 0.2s;
2774
+ animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
2775
+ animation-fill-mode: both;
2776
+ animation-play-state: paused; }
2777
+
2778
+ .move-right-enter.move-right-enter-active,
2779
+ .move-right-appear.move-right-appear-active {
2780
+ animation-name: shopeeMoveRightIn;
2781
+ animation-play-state: running; }
2782
+
2783
+ .move-right-leave.move-right-leave-active {
2784
+ animation-name: shopeeMoveRightOut;
2785
+ animation-play-state: running;
2786
+ pointer-events: none; }
2787
+
2788
+ .move-right-enter,
2789
+ .move-right-appear {
2790
+ opacity: 0;
2791
+ animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1); }
2792
+
2793
+ .move-right-leave {
2794
+ animation-timing-function: cubic-bezier(0.6, 0.04, 0.98, 0.34); }
2795
+
2796
+ @keyframes shopeeMoveDownIn {
2797
+ 0% {
2798
+ transform: translateY(100%);
2799
+ transform-origin: 0 0;
2800
+ opacity: 0; }
2801
+ 100% {
2802
+ transform: translateY(0%);
2803
+ transform-origin: 0 0;
2804
+ opacity: 1; } }
2805
+
2806
+ @keyframes shopeeMoveDownOut {
2807
+ 0% {
2808
+ transform: translateY(0%);
2809
+ transform-origin: 0 0;
2810
+ opacity: 1; }
2811
+ 100% {
2812
+ transform: translateY(100%);
2813
+ transform-origin: 0 0;
2814
+ opacity: 0; } }
2815
+
2816
+ @keyframes shopeeMoveLeftIn {
2817
+ 0% {
2818
+ transform: translateX(-100%);
2819
+ transform-origin: 0 0;
2820
+ opacity: 0; }
2821
+ 100% {
2822
+ transform: translateX(0%);
2823
+ transform-origin: 0 0;
2824
+ opacity: 1; } }
2825
+
2826
+ @keyframes shopeeMoveLeftOut {
2827
+ 0% {
2828
+ transform: translateX(0%);
2829
+ transform-origin: 0 0;
2830
+ opacity: 1; }
2831
+ 100% {
2832
+ transform: translateX(-100%);
2833
+ transform-origin: 0 0;
2834
+ opacity: 0; } }
2835
+
2836
+ @keyframes shopeeMoveRightIn {
2837
+ 0% {
2838
+ transform: translateX(100%);
2839
+ transform-origin: 0 0;
2840
+ opacity: 0; }
2841
+ 100% {
2842
+ transform: translateX(0%);
2843
+ transform-origin: 0 0;
2844
+ opacity: 1; } }
2845
+
2846
+ @keyframes shopeeMoveRightOut {
2847
+ 0% {
2848
+ transform: translateX(0%);
2849
+ transform-origin: 0 0;
2850
+ opacity: 1; }
2851
+ 100% {
2852
+ transform: translateX(100%);
2853
+ transform-origin: 0 0;
2854
+ opacity: 0; } }
2855
+
2856
+ @keyframes shopeeMoveUpIn {
2857
+ 0% {
2858
+ transform: translateY(-100%);
2859
+ transform-origin: 0 0;
2860
+ opacity: 0; }
2861
+ 100% {
2862
+ transform: translateY(0%);
2863
+ transform-origin: 0 0;
2864
+ opacity: 1; } }
2865
+
2866
+ @keyframes shopeeMoveUpOut {
2867
+ 0% {
2868
+ transform: translateY(0%);
2869
+ transform-origin: 0 0;
2870
+ opacity: 1; }
2871
+ 100% {
2872
+ transform: translateY(-100%);
2873
+ transform-origin: 0 0;
2874
+ opacity: 0; } }
2875
+
2876
+ .shopee-react-zoom-enter,
2877
+ .shopee-react-zoom-appear {
2878
+ animation-duration: 0.2s;
2879
+ animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
2880
+ animation-fill-mode: both;
2881
+ animation-play-state: paused; }
2882
+
2883
+ .shopee-react-zoom-leave {
2884
+ animation-duration: 0.2s;
2885
+ animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
2886
+ animation-fill-mode: both;
2887
+ animation-play-state: paused; }
2888
+
2889
+ .shopee-react-zoom-enter.shopee-react-zoom-enter-active,
2890
+ .shopee-react-zoom-appear.shopee-react-zoom-appear-active {
2891
+ animation-name: shopeeZoomIn;
2892
+ animation-play-state: running; }
2893
+
2894
+ .shopee-react-zoom-leave.shopee-react-zoom-leave-active {
2895
+ animation-name: shopeeZoomOut;
2896
+ animation-play-state: running;
2897
+ pointer-events: none; }
2898
+
2899
+ .shopee-react-zoom-enter,
2900
+ .shopee-react-zoom-appear {
2901
+ transform: scale(0);
2902
+ opacity: 0;
2903
+ animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1); }
2904
+ .shopee-react-zoom-enter-prepare,
2905
+ .shopee-react-zoom-appear-prepare {
2906
+ transform: none; }
2907
+
2908
+ .shopee-react-zoom-leave {
2909
+ animation-timing-function: cubic-bezier(0.78, 0.14, 0.15, 0.86); }
2910
+
2911
+ .shopee-react-zoom-big-enter,
2912
+ .shopee-react-zoom-big-appear {
2913
+ animation-duration: 0.2s;
2914
+ animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
2915
+ animation-fill-mode: both;
2916
+ animation-play-state: paused; }
2917
+
2918
+ .shopee-react-zoom-big-leave {
2919
+ animation-duration: 0.2s;
2920
+ animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
2921
+ animation-fill-mode: both;
2922
+ animation-play-state: paused; }
2923
+
2924
+ .shopee-react-zoom-big-enter.shopee-react-zoom-big-enter-active,
2925
+ .shopee-react-zoom-big-appear.shopee-react-zoom-big-appear-active {
2926
+ animation-name: shopeeZoomBigIn;
2927
+ animation-play-state: running; }
2928
+
2929
+ .shopee-react-zoom-big-leave.shopee-react-zoom-big-leave-active {
2930
+ animation-name: shopeeZoomBigOut;
2931
+ animation-play-state: running;
2932
+ pointer-events: none; }
2933
+
2934
+ .shopee-react-zoom-big-enter,
2935
+ .shopee-react-zoom-big-appear {
2936
+ transform: scale(0);
2937
+ opacity: 0;
2938
+ animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1); }
2939
+ .shopee-react-zoom-big-enter-prepare,
2940
+ .shopee-react-zoom-big-appear-prepare {
2941
+ transform: none; }
2942
+
2943
+ .shopee-react-zoom-big-leave {
2944
+ animation-timing-function: cubic-bezier(0.78, 0.14, 0.15, 0.86); }
2945
+
2946
+ .shopee-react-zoom-big-fast-enter,
2947
+ .shopee-react-zoom-big-fast-appear {
2948
+ animation-duration: 0.1s;
2949
+ animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
2950
+ animation-fill-mode: both;
2951
+ animation-play-state: paused; }
2952
+
2953
+ .shopee-react-zoom-big-fast-leave {
2954
+ animation-duration: 0.1s;
2955
+ animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
2956
+ animation-fill-mode: both;
2957
+ animation-play-state: paused; }
2958
+
2959
+ .shopee-react-zoom-big-fast-enter.shopee-react-zoom-big-fast-enter-active,
2960
+ .shopee-react-zoom-big-fast-appear.shopee-react-zoom-big-fast-appear-active {
2961
+ animation-name: shopeeZoomBigIn;
2962
+ animation-play-state: running; }
2963
+
2964
+ .shopee-react-zoom-big-fast-leave.shopee-react-zoom-big-fast-leave-active {
2965
+ animation-name: shopeeZoomBigOut;
2966
+ animation-play-state: running;
2967
+ pointer-events: none; }
2968
+
2969
+ .shopee-react-zoom-big-fast-enter,
2970
+ .shopee-react-zoom-big-fast-appear {
2971
+ transform: scale(0);
2972
+ opacity: 0;
2973
+ animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1); }
2974
+ .shopee-react-zoom-big-fast-enter-prepare,
2975
+ .shopee-react-zoom-big-fast-appear-prepare {
2976
+ transform: none; }
2977
+
2978
+ .shopee-react-zoom-big-fast-leave {
2979
+ animation-timing-function: cubic-bezier(0.78, 0.14, 0.15, 0.86); }
2980
+
2981
+ .shopee-react-zoom-up-enter,
2982
+ .shopee-react-zoom-up-appear {
2983
+ animation-duration: 0.2s;
2984
+ animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
2985
+ animation-fill-mode: both;
2986
+ animation-play-state: paused; }
2987
+
2988
+ .shopee-react-zoom-up-leave {
2989
+ animation-duration: 0.2s;
2990
+ animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
2991
+ animation-fill-mode: both;
2992
+ animation-play-state: paused; }
2993
+
2994
+ .shopee-react-zoom-up-enter.shopee-react-zoom-up-enter-active,
2995
+ .shopee-react-zoom-up-appear.shopee-react-zoom-up-appear-active {
2996
+ animation-name: shopeeZoomUpIn;
2997
+ animation-play-state: running; }
2998
+
2999
+ .shopee-react-zoom-up-leave.shopee-react-zoom-up-leave-active {
3000
+ animation-name: shopeeZoomUpOut;
3001
+ animation-play-state: running;
3002
+ pointer-events: none; }
3003
+
3004
+ .shopee-react-zoom-up-enter,
3005
+ .shopee-react-zoom-up-appear {
3006
+ transform: scale(0);
3007
+ opacity: 0;
3008
+ animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1); }
3009
+ .shopee-react-zoom-up-enter-prepare,
3010
+ .shopee-react-zoom-up-appear-prepare {
3011
+ transform: none; }
3012
+
3013
+ .shopee-react-zoom-up-leave {
3014
+ animation-timing-function: cubic-bezier(0.78, 0.14, 0.15, 0.86); }
3015
+
3016
+ .shopee-react-zoom-down-enter,
3017
+ .shopee-react-zoom-down-appear {
3018
+ animation-duration: 0.2s;
3019
+ animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
3020
+ animation-fill-mode: both;
3021
+ animation-play-state: paused; }
3022
+
3023
+ .shopee-react-zoom-down-leave {
3024
+ animation-duration: 0.2s;
3025
+ animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
3026
+ animation-fill-mode: both;
3027
+ animation-play-state: paused; }
3028
+
3029
+ .shopee-react-zoom-down-enter.shopee-react-zoom-down-enter-active,
3030
+ .shopee-react-zoom-down-appear.shopee-react-zoom-down-appear-active {
3031
+ animation-name: shopeeZoomDownIn;
3032
+ animation-play-state: running; }
3033
+
3034
+ .shopee-react-zoom-down-leave.shopee-react-zoom-down-leave-active {
3035
+ animation-name: shopeeZoomDownOut;
3036
+ animation-play-state: running;
3037
+ pointer-events: none; }
3038
+
3039
+ .shopee-react-zoom-down-enter,
3040
+ .shopee-react-zoom-down-appear {
3041
+ transform: scale(0);
3042
+ opacity: 0;
3043
+ animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1); }
3044
+ .shopee-react-zoom-down-enter-prepare,
3045
+ .shopee-react-zoom-down-appear-prepare {
3046
+ transform: none; }
3047
+
3048
+ .shopee-react-zoom-down-leave {
3049
+ animation-timing-function: cubic-bezier(0.78, 0.14, 0.15, 0.86); }
3050
+
3051
+ .shopee-react-zoom-left-enter,
3052
+ .shopee-react-zoom-left-appear {
3053
+ animation-duration: 0.2s;
3054
+ animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
3055
+ animation-fill-mode: both;
3056
+ animation-play-state: paused; }
3057
+
3058
+ .shopee-react-zoom-left-leave {
3059
+ animation-duration: 0.2s;
3060
+ animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
3061
+ animation-fill-mode: both;
3062
+ animation-play-state: paused; }
3063
+
3064
+ .shopee-react-zoom-left-enter.shopee-react-zoom-left-enter-active,
3065
+ .shopee-react-zoom-left-appear.shopee-react-zoom-left-appear-active {
3066
+ animation-name: shopeeZoomLeftIn;
3067
+ animation-play-state: running; }
3068
+
3069
+ .shopee-react-zoom-left-leave.shopee-react-zoom-left-leave-active {
3070
+ animation-name: shopeeZoomLeftOut;
3071
+ animation-play-state: running;
3072
+ pointer-events: none; }
3073
+
3074
+ .shopee-react-zoom-left-enter,
3075
+ .shopee-react-zoom-left-appear {
3076
+ transform: scale(0);
3077
+ opacity: 0;
3078
+ animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1); }
3079
+ .shopee-react-zoom-left-enter-prepare,
3080
+ .shopee-react-zoom-left-appear-prepare {
3081
+ transform: none; }
3082
+
3083
+ .shopee-react-zoom-left-leave {
3084
+ animation-timing-function: cubic-bezier(0.78, 0.14, 0.15, 0.86); }
3085
+
3086
+ .shopee-react-zoom-right-enter,
3087
+ .shopee-react-zoom-right-appear {
3088
+ animation-duration: 0.2s;
3089
+ animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
3090
+ animation-fill-mode: both;
3091
+ animation-play-state: paused; }
3092
+
3093
+ .shopee-react-zoom-right-leave {
3094
+ animation-duration: 0.2s;
3095
+ animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
3096
+ animation-fill-mode: both;
3097
+ animation-play-state: paused; }
3098
+
3099
+ .shopee-react-zoom-right-enter.shopee-react-zoom-right-enter-active,
3100
+ .shopee-react-zoom-right-appear.shopee-react-zoom-right-appear-active {
3101
+ animation-name: shopeeZoomRightIn;
3102
+ animation-play-state: running; }
3103
+
3104
+ .shopee-react-zoom-right-leave.shopee-react-zoom-right-leave-active {
3105
+ animation-name: shopeeZoomRightOut;
3106
+ animation-play-state: running;
3107
+ pointer-events: none; }
3108
+
3109
+ .shopee-react-zoom-right-enter,
3110
+ .shopee-react-zoom-right-appear {
3111
+ transform: scale(0);
3112
+ opacity: 0;
3113
+ animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1); }
3114
+ .shopee-react-zoom-right-enter-prepare,
3115
+ .shopee-react-zoom-right-appear-prepare {
3116
+ transform: none; }
3117
+
3118
+ .shopee-react-zoom-right-leave {
3119
+ animation-timing-function: cubic-bezier(0.78, 0.14, 0.15, 0.86); }
3120
+
3121
+ @keyframes shopeeZoomIn {
3122
+ 0% {
3123
+ transform: scale(0.2);
3124
+ opacity: 0; }
3125
+ 100% {
3126
+ transform: scale(1);
3127
+ opacity: 1; } }
3128
+
3129
+ @keyframes shopeeZoomOut {
3130
+ 0% {
3131
+ transform: scale(1); }
3132
+ 100% {
3133
+ transform: scale(0.2);
3134
+ opacity: 0; } }
3135
+
3136
+ @keyframes shopeeZoomBigIn {
3137
+ 0% {
3138
+ transform: scale(0.8);
3139
+ opacity: 0; }
3140
+ 100% {
3141
+ transform: scale(1);
3142
+ opacity: 1; } }
3143
+
3144
+ @keyframes shopeeZoomBigOut {
3145
+ 0% {
3146
+ transform: scale(1); }
3147
+ 100% {
3148
+ transform: scale(0.8);
3149
+ opacity: 0; } }
3150
+
3151
+ @keyframes shopeeZoomUpIn {
3152
+ 0% {
3153
+ transform: scale(0.8);
3154
+ transform-origin: 50% 0%;
3155
+ opacity: 0; }
3156
+ 100% {
3157
+ transform: scale(1);
3158
+ transform-origin: 50% 0%; } }
3159
+
3160
+ @keyframes shopeeZoomUpOut {
3161
+ 0% {
3162
+ transform: scale(1);
3163
+ transform-origin: 50% 0%; }
3164
+ 100% {
3165
+ transform: scale(0.8);
3166
+ transform-origin: 50% 0%;
3167
+ opacity: 0; } }
3168
+
3169
+ @keyframes shopeeZoomLeftIn {
3170
+ 0% {
3171
+ transform: scale(0.8);
3172
+ transform-origin: 0% 50%;
3173
+ opacity: 0; }
3174
+ 100% {
3175
+ transform: scale(1);
3176
+ transform-origin: 0% 50%; } }
3177
+
3178
+ @keyframes shopeeZoomLeftOut {
3179
+ 0% {
3180
+ transform: scale(1);
3181
+ transform-origin: 0% 50%; }
3182
+ 100% {
3183
+ transform: scale(0.8);
3184
+ transform-origin: 0% 50%;
3185
+ opacity: 0; } }
3186
+
3187
+ @keyframes shopeeZoomRightIn {
3188
+ 0% {
3189
+ transform: scale(0.8);
3190
+ transform-origin: 100% 50%;
3191
+ opacity: 0; }
3192
+ 100% {
3193
+ transform: scale(1);
3194
+ transform-origin: 100% 50%; } }
3195
+
3196
+ @keyframes shopeeZoomRightOut {
3197
+ 0% {
3198
+ transform: scale(1);
3199
+ transform-origin: 100% 50%; }
3200
+ 100% {
3201
+ transform: scale(0.8);
3202
+ transform-origin: 100% 50%;
3203
+ opacity: 0; } }
3204
+
3205
+ @keyframes shopeeZoomDownIn {
3206
+ 0% {
3207
+ transform: scale(0.8);
3208
+ transform-origin: 50% 100%;
3209
+ opacity: 0; }
3210
+ 100% {
3211
+ transform: scale(1);
3212
+ transform-origin: 50% 100%; } }
3213
+
3214
+ @keyframes shopeeZoomDownOut {
3215
+ 0% {
3216
+ transform: scale(1);
3217
+ transform-origin: 50% 100%; }
3218
+ 100% {
3219
+ transform: scale(0.8);
3220
+ transform-origin: 50% 100%;
3221
+ opacity: 0; } }
3222
+
3223
+ .shopee-react-icon {
3224
+ display: inline-block;
3225
+ color: inherit;
3226
+ font-style: normal;
3227
+ line-height: 0;
3228
+ text-align: center;
3229
+ text-transform: none;
3230
+ fill: currentColor;
3231
+ vertical-align: -0.125em;
3232
+ text-rendering: optimizeLegibility;
3233
+ -webkit-font-smoothing: antialiased;
3234
+ -moz-osx-font-smoothing: grayscale;
3235
+ outline: none; }
3236
+ .shopee-react-icon > * {
3237
+ line-height: 1; }
3238
+ .shopee-react-icon svg {
3239
+ width: 100%;
3240
+ height: 100%; }
3241
+ .shopee-react-icon .shopee-react-icon-icon {
3242
+ display: block; }
3243
+ .shopee-react-icon[tabindex] {
3244
+ cursor: pointer; }
3245
+ .shopee-react-icon-spin {
3246
+ display: inline-block;
3247
+ animation: shopee-react-icon-spin 1s 0s infinite linear; }
3248
+
3249
+ @keyframes shopee-react-icon-spin {
3250
+ 0% {
3251
+ transform: rotate(0deg); }
3252
+ 100% {
3253
+ transform: rotate(360deg); } }
3254
+
3255
+ /** text **/
3256
+ /** z-index **/
3257
+ /** fill **/
3258
+ /** boder **/
3259
+ .move-up-enter,
3260
+ .move-up-appear {
3261
+ animation-duration: 0.2s;
3262
+ animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
3263
+ animation-fill-mode: both;
3264
+ animation-play-state: paused; }
3265
+
3266
+ .move-up-leave {
3267
+ animation-duration: 0.2s;
3268
+ animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
3269
+ animation-fill-mode: both;
3270
+ animation-play-state: paused; }
3271
+
3272
+ .move-up-enter.move-up-enter-active,
3273
+ .move-up-appear.move-up-appear-active {
3274
+ animation-name: shopeeMoveUpIn;
3275
+ animation-play-state: running; }
3276
+
3277
+ .move-up-leave.move-up-leave-active {
3278
+ animation-name: shopeeMoveUpOut;
3279
+ animation-play-state: running;
3280
+ pointer-events: none; }
3281
+
3282
+ .move-up-enter,
3283
+ .move-up-appear {
3284
+ opacity: 0;
3285
+ animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1); }
3286
+
3287
+ .move-up-leave {
3288
+ animation-timing-function: cubic-bezier(0.6, 0.04, 0.98, 0.34); }
3289
+
3290
+ .move-down-enter,
3291
+ .move-down-appear {
3292
+ animation-duration: 0.2s;
3293
+ animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
3294
+ animation-fill-mode: both;
3295
+ animation-play-state: paused; }
3296
+
3297
+ .move-down-leave {
3298
+ animation-duration: 0.2s;
3299
+ animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
3300
+ animation-fill-mode: both;
3301
+ animation-play-state: paused; }
3302
+
3303
+ .move-down-enter.move-down-enter-active,
3304
+ .move-down-appear.move-down-appear-active {
3305
+ animation-name: shopeeMoveDownIn;
3306
+ animation-play-state: running; }
3307
+
3308
+ .move-down-leave.move-down-leave-active {
3309
+ animation-name: shopeeMoveDownOut;
3310
+ animation-play-state: running;
3311
+ pointer-events: none; }
3312
+
3313
+ .move-down-enter,
3314
+ .move-down-appear {
3315
+ opacity: 0;
3316
+ animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1); }
3317
+
3318
+ .move-down-leave {
3319
+ animation-timing-function: cubic-bezier(0.6, 0.04, 0.98, 0.34); }
3320
+
3321
+ .move-left-enter,
3322
+ .move-left-appear {
3323
+ animation-duration: 0.2s;
3324
+ animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
3325
+ animation-fill-mode: both;
3326
+ animation-play-state: paused; }
3327
+
3328
+ .move-left-leave {
3329
+ animation-duration: 0.2s;
3330
+ animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
3331
+ animation-fill-mode: both;
3332
+ animation-play-state: paused; }
3333
+
3334
+ .move-left-enter.move-left-enter-active,
3335
+ .move-left-appear.move-left-appear-active {
3336
+ animation-name: shopeeMoveLeftIn;
3337
+ animation-play-state: running; }
3338
+
3339
+ .move-left-leave.move-left-leave-active {
3340
+ animation-name: shopeeMoveLeftOut;
3341
+ animation-play-state: running;
3342
+ pointer-events: none; }
3343
+
3344
+ .move-left-enter,
3345
+ .move-left-appear {
3346
+ opacity: 0;
3347
+ animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1); }
3348
+
3349
+ .move-left-leave {
3350
+ animation-timing-function: cubic-bezier(0.6, 0.04, 0.98, 0.34); }
3351
+
3352
+ .move-right-enter,
3353
+ .move-right-appear {
3354
+ animation-duration: 0.2s;
3355
+ animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
3356
+ animation-fill-mode: both;
3357
+ animation-play-state: paused; }
3358
+
3359
+ .move-right-leave {
3360
+ animation-duration: 0.2s;
3361
+ animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
3362
+ animation-fill-mode: both;
3363
+ animation-play-state: paused; }
3364
+
3365
+ .move-right-enter.move-right-enter-active,
3366
+ .move-right-appear.move-right-appear-active {
3367
+ animation-name: shopeeMoveRightIn;
3368
+ animation-play-state: running; }
3369
+
3370
+ .move-right-leave.move-right-leave-active {
3371
+ animation-name: shopeeMoveRightOut;
3372
+ animation-play-state: running;
3373
+ pointer-events: none; }
3374
+
3375
+ .move-right-enter,
3376
+ .move-right-appear {
3377
+ opacity: 0;
3378
+ animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1); }
3379
+
3380
+ .move-right-leave {
3381
+ animation-timing-function: cubic-bezier(0.6, 0.04, 0.98, 0.34); }
3382
+
3383
+ @keyframes shopeeMoveDownIn {
3384
+ 0% {
3385
+ transform: translateY(100%);
3386
+ transform-origin: 0 0;
3387
+ opacity: 0; }
3388
+ 100% {
3389
+ transform: translateY(0%);
3390
+ transform-origin: 0 0;
3391
+ opacity: 1; } }
3392
+
3393
+ @keyframes shopeeMoveDownOut {
3394
+ 0% {
3395
+ transform: translateY(0%);
3396
+ transform-origin: 0 0;
3397
+ opacity: 1; }
3398
+ 100% {
3399
+ transform: translateY(100%);
3400
+ transform-origin: 0 0;
3401
+ opacity: 0; } }
3402
+
3403
+ @keyframes shopeeMoveLeftIn {
3404
+ 0% {
3405
+ transform: translateX(-100%);
3406
+ transform-origin: 0 0;
3407
+ opacity: 0; }
3408
+ 100% {
3409
+ transform: translateX(0%);
3410
+ transform-origin: 0 0;
3411
+ opacity: 1; } }
3412
+
3413
+ @keyframes shopeeMoveLeftOut {
3414
+ 0% {
3415
+ transform: translateX(0%);
3416
+ transform-origin: 0 0;
3417
+ opacity: 1; }
3418
+ 100% {
3419
+ transform: translateX(-100%);
3420
+ transform-origin: 0 0;
3421
+ opacity: 0; } }
3422
+
3423
+ @keyframes shopeeMoveRightIn {
3424
+ 0% {
3425
+ transform: translateX(100%);
3426
+ transform-origin: 0 0;
3427
+ opacity: 0; }
3428
+ 100% {
3429
+ transform: translateX(0%);
3430
+ transform-origin: 0 0;
3431
+ opacity: 1; } }
3432
+
3433
+ @keyframes shopeeMoveRightOut {
3434
+ 0% {
3435
+ transform: translateX(0%);
3436
+ transform-origin: 0 0;
3437
+ opacity: 1; }
3438
+ 100% {
3439
+ transform: translateX(100%);
3440
+ transform-origin: 0 0;
3441
+ opacity: 0; } }
3442
+
3443
+ @keyframes shopeeMoveUpIn {
3444
+ 0% {
3445
+ transform: translateY(-100%);
3446
+ transform-origin: 0 0;
3447
+ opacity: 0; }
3448
+ 100% {
3449
+ transform: translateY(0%);
3450
+ transform-origin: 0 0;
3451
+ opacity: 1; } }
3452
+
3453
+ @keyframes shopeeMoveUpOut {
3454
+ 0% {
3455
+ transform: translateY(0%);
3456
+ transform-origin: 0 0;
3457
+ opacity: 1; }
3458
+ 100% {
3459
+ transform: translateY(-100%);
3460
+ transform-origin: 0 0;
3461
+ opacity: 0; } }
3462
+
3463
+ .shopee-react-zoom-enter,
3464
+ .shopee-react-zoom-appear {
3465
+ animation-duration: 0.2s;
3466
+ animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
3467
+ animation-fill-mode: both;
3468
+ animation-play-state: paused; }
3469
+
3470
+ .shopee-react-zoom-leave {
3471
+ animation-duration: 0.2s;
3472
+ animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
3473
+ animation-fill-mode: both;
3474
+ animation-play-state: paused; }
3475
+
3476
+ .shopee-react-zoom-enter.shopee-react-zoom-enter-active,
3477
+ .shopee-react-zoom-appear.shopee-react-zoom-appear-active {
3478
+ animation-name: shopeeZoomIn;
3479
+ animation-play-state: running; }
3480
+
3481
+ .shopee-react-zoom-leave.shopee-react-zoom-leave-active {
3482
+ animation-name: shopeeZoomOut;
3483
+ animation-play-state: running;
3484
+ pointer-events: none; }
3485
+
3486
+ .shopee-react-zoom-enter,
3487
+ .shopee-react-zoom-appear {
3488
+ transform: scale(0);
3489
+ opacity: 0;
3490
+ animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1); }
3491
+ .shopee-react-zoom-enter-prepare,
3492
+ .shopee-react-zoom-appear-prepare {
3493
+ transform: none; }
3494
+
3495
+ .shopee-react-zoom-leave {
3496
+ animation-timing-function: cubic-bezier(0.78, 0.14, 0.15, 0.86); }
3497
+
3498
+ .shopee-react-zoom-big-enter,
3499
+ .shopee-react-zoom-big-appear {
3500
+ animation-duration: 0.2s;
3501
+ animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
3502
+ animation-fill-mode: both;
3503
+ animation-play-state: paused; }
3504
+
3505
+ .shopee-react-zoom-big-leave {
3506
+ animation-duration: 0.2s;
3507
+ animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
3508
+ animation-fill-mode: both;
3509
+ animation-play-state: paused; }
3510
+
3511
+ .shopee-react-zoom-big-enter.shopee-react-zoom-big-enter-active,
3512
+ .shopee-react-zoom-big-appear.shopee-react-zoom-big-appear-active {
3513
+ animation-name: shopeeZoomBigIn;
3514
+ animation-play-state: running; }
3515
+
3516
+ .shopee-react-zoom-big-leave.shopee-react-zoom-big-leave-active {
3517
+ animation-name: shopeeZoomBigOut;
3518
+ animation-play-state: running;
3519
+ pointer-events: none; }
3520
+
3521
+ .shopee-react-zoom-big-enter,
3522
+ .shopee-react-zoom-big-appear {
3523
+ transform: scale(0);
3524
+ opacity: 0;
3525
+ animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1); }
3526
+ .shopee-react-zoom-big-enter-prepare,
3527
+ .shopee-react-zoom-big-appear-prepare {
3528
+ transform: none; }
3529
+
3530
+ .shopee-react-zoom-big-leave {
3531
+ animation-timing-function: cubic-bezier(0.78, 0.14, 0.15, 0.86); }
3532
+
3533
+ .shopee-react-zoom-big-fast-enter,
3534
+ .shopee-react-zoom-big-fast-appear {
3535
+ animation-duration: 0.1s;
3536
+ animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
3537
+ animation-fill-mode: both;
3538
+ animation-play-state: paused; }
3539
+
3540
+ .shopee-react-zoom-big-fast-leave {
3541
+ animation-duration: 0.1s;
3542
+ animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
3543
+ animation-fill-mode: both;
3544
+ animation-play-state: paused; }
3545
+
3546
+ .shopee-react-zoom-big-fast-enter.shopee-react-zoom-big-fast-enter-active,
3547
+ .shopee-react-zoom-big-fast-appear.shopee-react-zoom-big-fast-appear-active {
3548
+ animation-name: shopeeZoomBigIn;
3549
+ animation-play-state: running; }
3550
+
3551
+ .shopee-react-zoom-big-fast-leave.shopee-react-zoom-big-fast-leave-active {
3552
+ animation-name: shopeeZoomBigOut;
3553
+ animation-play-state: running;
3554
+ pointer-events: none; }
3555
+
3556
+ .shopee-react-zoom-big-fast-enter,
3557
+ .shopee-react-zoom-big-fast-appear {
3558
+ transform: scale(0);
3559
+ opacity: 0;
3560
+ animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1); }
3561
+ .shopee-react-zoom-big-fast-enter-prepare,
3562
+ .shopee-react-zoom-big-fast-appear-prepare {
3563
+ transform: none; }
3564
+
3565
+ .shopee-react-zoom-big-fast-leave {
3566
+ animation-timing-function: cubic-bezier(0.78, 0.14, 0.15, 0.86); }
3567
+
3568
+ .shopee-react-zoom-up-enter,
3569
+ .shopee-react-zoom-up-appear {
3570
+ animation-duration: 0.2s;
3571
+ animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
3572
+ animation-fill-mode: both;
3573
+ animation-play-state: paused; }
3574
+
3575
+ .shopee-react-zoom-up-leave {
3576
+ animation-duration: 0.2s;
3577
+ animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
3578
+ animation-fill-mode: both;
3579
+ animation-play-state: paused; }
3580
+
3581
+ .shopee-react-zoom-up-enter.shopee-react-zoom-up-enter-active,
3582
+ .shopee-react-zoom-up-appear.shopee-react-zoom-up-appear-active {
3583
+ animation-name: shopeeZoomUpIn;
3584
+ animation-play-state: running; }
3585
+
3586
+ .shopee-react-zoom-up-leave.shopee-react-zoom-up-leave-active {
3587
+ animation-name: shopeeZoomUpOut;
3588
+ animation-play-state: running;
3589
+ pointer-events: none; }
3590
+
3591
+ .shopee-react-zoom-up-enter,
3592
+ .shopee-react-zoom-up-appear {
3593
+ transform: scale(0);
3594
+ opacity: 0;
3595
+ animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1); }
3596
+ .shopee-react-zoom-up-enter-prepare,
3597
+ .shopee-react-zoom-up-appear-prepare {
3598
+ transform: none; }
3599
+
3600
+ .shopee-react-zoom-up-leave {
3601
+ animation-timing-function: cubic-bezier(0.78, 0.14, 0.15, 0.86); }
3602
+
3603
+ .shopee-react-zoom-down-enter,
3604
+ .shopee-react-zoom-down-appear {
3605
+ animation-duration: 0.2s;
3606
+ animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
3607
+ animation-fill-mode: both;
3608
+ animation-play-state: paused; }
3609
+
3610
+ .shopee-react-zoom-down-leave {
3611
+ animation-duration: 0.2s;
3612
+ animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
3613
+ animation-fill-mode: both;
3614
+ animation-play-state: paused; }
3615
+
3616
+ .shopee-react-zoom-down-enter.shopee-react-zoom-down-enter-active,
3617
+ .shopee-react-zoom-down-appear.shopee-react-zoom-down-appear-active {
3618
+ animation-name: shopeeZoomDownIn;
3619
+ animation-play-state: running; }
3620
+
3621
+ .shopee-react-zoom-down-leave.shopee-react-zoom-down-leave-active {
3622
+ animation-name: shopeeZoomDownOut;
3623
+ animation-play-state: running;
3624
+ pointer-events: none; }
3625
+
3626
+ .shopee-react-zoom-down-enter,
3627
+ .shopee-react-zoom-down-appear {
3628
+ transform: scale(0);
3629
+ opacity: 0;
3630
+ animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1); }
3631
+ .shopee-react-zoom-down-enter-prepare,
3632
+ .shopee-react-zoom-down-appear-prepare {
3633
+ transform: none; }
3634
+
3635
+ .shopee-react-zoom-down-leave {
3636
+ animation-timing-function: cubic-bezier(0.78, 0.14, 0.15, 0.86); }
3637
+
3638
+ .shopee-react-zoom-left-enter,
3639
+ .shopee-react-zoom-left-appear {
3640
+ animation-duration: 0.2s;
3641
+ animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
3642
+ animation-fill-mode: both;
3643
+ animation-play-state: paused; }
3644
+
3645
+ .shopee-react-zoom-left-leave {
3646
+ animation-duration: 0.2s;
3647
+ animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
3648
+ animation-fill-mode: both;
3649
+ animation-play-state: paused; }
3650
+
3651
+ .shopee-react-zoom-left-enter.shopee-react-zoom-left-enter-active,
3652
+ .shopee-react-zoom-left-appear.shopee-react-zoom-left-appear-active {
3653
+ animation-name: shopeeZoomLeftIn;
3654
+ animation-play-state: running; }
3655
+
3656
+ .shopee-react-zoom-left-leave.shopee-react-zoom-left-leave-active {
3657
+ animation-name: shopeeZoomLeftOut;
3658
+ animation-play-state: running;
3659
+ pointer-events: none; }
3660
+
3661
+ .shopee-react-zoom-left-enter,
3662
+ .shopee-react-zoom-left-appear {
3663
+ transform: scale(0);
3664
+ opacity: 0;
3665
+ animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1); }
3666
+ .shopee-react-zoom-left-enter-prepare,
3667
+ .shopee-react-zoom-left-appear-prepare {
3668
+ transform: none; }
3669
+
3670
+ .shopee-react-zoom-left-leave {
3671
+ animation-timing-function: cubic-bezier(0.78, 0.14, 0.15, 0.86); }
3672
+
3673
+ .shopee-react-zoom-right-enter,
3674
+ .shopee-react-zoom-right-appear {
3675
+ animation-duration: 0.2s;
3676
+ animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
3677
+ animation-fill-mode: both;
3678
+ animation-play-state: paused; }
3679
+
3680
+ .shopee-react-zoom-right-leave {
3681
+ animation-duration: 0.2s;
3682
+ animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
3683
+ animation-fill-mode: both;
3684
+ animation-play-state: paused; }
3685
+
3686
+ .shopee-react-zoom-right-enter.shopee-react-zoom-right-enter-active,
3687
+ .shopee-react-zoom-right-appear.shopee-react-zoom-right-appear-active {
3688
+ animation-name: shopeeZoomRightIn;
3689
+ animation-play-state: running; }
3690
+
3691
+ .shopee-react-zoom-right-leave.shopee-react-zoom-right-leave-active {
3692
+ animation-name: shopeeZoomRightOut;
3693
+ animation-play-state: running;
3694
+ pointer-events: none; }
3695
+
3696
+ .shopee-react-zoom-right-enter,
3697
+ .shopee-react-zoom-right-appear {
3698
+ transform: scale(0);
3699
+ opacity: 0;
3700
+ animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1); }
3701
+ .shopee-react-zoom-right-enter-prepare,
3702
+ .shopee-react-zoom-right-appear-prepare {
3703
+ transform: none; }
3704
+
3705
+ .shopee-react-zoom-right-leave {
3706
+ animation-timing-function: cubic-bezier(0.78, 0.14, 0.15, 0.86); }
3707
+
3708
+ @keyframes shopeeZoomIn {
3709
+ 0% {
3710
+ transform: scale(0.2);
3711
+ opacity: 0; }
3712
+ 100% {
3713
+ transform: scale(1);
3714
+ opacity: 1; } }
3715
+
3716
+ @keyframes shopeeZoomOut {
3717
+ 0% {
3718
+ transform: scale(1); }
3719
+ 100% {
3720
+ transform: scale(0.2);
3721
+ opacity: 0; } }
3722
+
3723
+ @keyframes shopeeZoomBigIn {
3724
+ 0% {
3725
+ transform: scale(0.8);
3726
+ opacity: 0; }
3727
+ 100% {
3728
+ transform: scale(1);
3729
+ opacity: 1; } }
3730
+
3731
+ @keyframes shopeeZoomBigOut {
3732
+ 0% {
3733
+ transform: scale(1); }
3734
+ 100% {
3735
+ transform: scale(0.8);
3736
+ opacity: 0; } }
3737
+
3738
+ @keyframes shopeeZoomUpIn {
3739
+ 0% {
3740
+ transform: scale(0.8);
3741
+ transform-origin: 50% 0%;
3742
+ opacity: 0; }
3743
+ 100% {
3744
+ transform: scale(1);
3745
+ transform-origin: 50% 0%; } }
3746
+
3747
+ @keyframes shopeeZoomUpOut {
3748
+ 0% {
3749
+ transform: scale(1);
3750
+ transform-origin: 50% 0%; }
3751
+ 100% {
3752
+ transform: scale(0.8);
3753
+ transform-origin: 50% 0%;
3754
+ opacity: 0; } }
3755
+
3756
+ @keyframes shopeeZoomLeftIn {
3757
+ 0% {
3758
+ transform: scale(0.8);
3759
+ transform-origin: 0% 50%;
3760
+ opacity: 0; }
3761
+ 100% {
3762
+ transform: scale(1);
3763
+ transform-origin: 0% 50%; } }
3764
+
3765
+ @keyframes shopeeZoomLeftOut {
3766
+ 0% {
3767
+ transform: scale(1);
3768
+ transform-origin: 0% 50%; }
3769
+ 100% {
3770
+ transform: scale(0.8);
3771
+ transform-origin: 0% 50%;
3772
+ opacity: 0; } }
3773
+
3774
+ @keyframes shopeeZoomRightIn {
3775
+ 0% {
3776
+ transform: scale(0.8);
3777
+ transform-origin: 100% 50%;
3778
+ opacity: 0; }
3779
+ 100% {
3780
+ transform: scale(1);
3781
+ transform-origin: 100% 50%; } }
3782
+
3783
+ @keyframes shopeeZoomRightOut {
3784
+ 0% {
3785
+ transform: scale(1);
3786
+ transform-origin: 100% 50%; }
3787
+ 100% {
3788
+ transform: scale(0.8);
3789
+ transform-origin: 100% 50%;
3790
+ opacity: 0; } }
3791
+
3792
+ @keyframes shopeeZoomDownIn {
3793
+ 0% {
3794
+ transform: scale(0.8);
3795
+ transform-origin: 50% 100%;
3796
+ opacity: 0; }
3797
+ 100% {
3798
+ transform: scale(1);
3799
+ transform-origin: 50% 100%; } }
3800
+
3801
+ @keyframes shopeeZoomDownOut {
3802
+ 0% {
3803
+ transform: scale(1);
3804
+ transform-origin: 50% 100%; }
3805
+ 100% {
3806
+ transform: scale(0.8);
3807
+ transform-origin: 50% 100%;
3808
+ opacity: 0; } }
3809
+
3810
+ .shopee-react-modal__mask {
3811
+ position: fixed;
3812
+ z-index: 1000;
3813
+ top: 0;
3814
+ right: 0;
3815
+ bottom: 0;
3816
+ left: 0;
3817
+ overflow: hidden;
3818
+ background-color: rgba(0, 0, 0, 0.5); }
3819
+
3820
+ .shopee-react-modal__container {
3821
+ position: absolute;
3822
+ top: 40px;
3823
+ right: 0;
3824
+ bottom: 40px;
3825
+ left: 0;
3826
+ display: flex;
3827
+ align-items: center;
3828
+ justify-content: center; }
3829
+
3830
+ .shopee-react-modal__box {
3831
+ position: relative;
3832
+ display: inline-flex;
3833
+ max-height: 100%;
3834
+ padding: 0 24px;
3835
+ transform-origin: top; }
3836
+
3837
+ .shopee-react-modal__content {
3838
+ display: flex;
3839
+ flex-direction: column;
3840
+ width: 400px;
3841
+ max-height: 100%;
3842
+ overflow-y: auto;
3843
+ background-color: #fff;
3844
+ border-radius: 3px;
3845
+ box-shadow: 0 1px 8px 0 rgba(0, 0, 0, 0.12); }
3846
+ .shopee-react-modal__content--medium {
3847
+ width: 500px; }
3848
+ .shopee-react-modal__content--large {
3849
+ width: 600px; }
3850
+ .shopee-react-modal__content--x-large {
3851
+ width: 800px;
3852
+ min-height: 400px; }
3853
+ .shopee-react-modal__content--auto {
3854
+ width: auto; }
3855
+ .shopee-react-modal__content--center {
3856
+ text-align: center; }
3857
+
3858
+ .shopee-react-modal__header {
3859
+ flex-shrink: 0;
3860
+ min-height: 24px;
3861
+ padding: 24px; }
3862
+
3863
+ .shopee-react-modal__header-inner {
3864
+ position: relative; }
3865
+ .shopee-react-modal__header-inner__has-back {
3866
+ border-left: 36px solid transparent; }
3867
+
3868
+ .shopee-react-modal__header-back.shopee-react-icon {
3869
+ position: absolute;
3870
+ top: 0;
3871
+ width: 20px;
3872
+ line-height: 20px;
3873
+ margin-top: 2px;
3874
+ margin-left: -36px;
3875
+ cursor: pointer; }
3876
+
3877
+ .shopee-react-modal__title {
3878
+ font-size: 20px;
3879
+ font-weight: 500;
3880
+ color: #333; }
3881
+
3882
+ .shopee-react-modal__subtitle {
3883
+ margin-top: 8px;
3884
+ font-size: 14px;
3885
+ line-height: 1;
3886
+ color: #999; }
3887
+
3888
+ .shopee-react-modal__body {
3889
+ flex-grow: 1;
3890
+ min-height: 32px;
3891
+ padding: 0 24px;
3892
+ overflow: auto;
3893
+ font-size: 14px;
3894
+ color: #333; }
3895
+ .shopee-react-modal__body.over-height {
3896
+ box-shadow: inset 0 -4px 4px 0 rgba(0, 0, 0, 0.04); }
3897
+
3898
+ .shopee-react-modal__footer {
3899
+ flex-shrink: 0;
3900
+ padding: 24px;
3901
+ overflow: hidden; }
3902
+ .shopee-react-modal__footer.with-assist {
3903
+ display: flex;
3904
+ justify-content: space-between; }
3905
+ .shopee-react-modal__footer-buttons {
3906
+ display: inline-flex;
3907
+ float: right; }
3908
+ .shopee-react-modal__footer-buttons .shopee-react-button:not(:first-of-type) {
3909
+ margin-left: 16px; }
3910
+ .shopee-react-modal__content--center .shopee-react-modal__footer-buttons {
3911
+ float: none; }
3912
+
3913
+ .shopee-react-modal__close.shopee-react-icon {
3914
+ position: absolute;
3915
+ top: 28px;
3916
+ right: 48px;
3917
+ width: 16px;
3918
+ line-height: 16px;
3919
+ color: #999;
3920
+ cursor: pointer;
3921
+ box-sizing: border-box;
3922
+ transition: color 0.2s cubic-bezier(0.42, 0, 0.58, 1); }
3923
+ .shopee-react-modal__close.shopee-react-icon:hover, .shopee-react-modal__close.shopee-react-icon:focus {
3924
+ color: #747474; }
3925
+
3926
+ .shopee-react-modal-fade-fast-enter {
3927
+ opacity: 0; }
3928
+
3929
+ .shopee-react-modal-fade-fast-enter-active {
3930
+ opacity: 1;
3931
+ transition: opacity 200ms; }
3932
+
3933
+ .shopee-react-modal-fade-fast-exit {
3934
+ opacity: 1; }
3935
+
3936
+ .shopee-react-modal-fade-fast-exit-active {
3937
+ opacity: 0;
3938
+ transition: opacity 200ms; }
3939
+
3940
+ .shopee-react-modal-move-down-fast-enter {
3941
+ opacity: 0;
3942
+ transform: translateY(-10%) scaleY(0.95); }
3943
+
3944
+ .shopee-react-modal-move-down-fast-enter-active {
3945
+ opacity: 1;
3946
+ transform: translateY(0) scaleY(1);
3947
+ transition: opacity 200ms ease-out, transform 200ms ease-out; }
3948
+
3949
+ .shopee-react-modal-move-down-fast-exit {
3950
+ opacity: 1;
3951
+ transform: translateY(0) scaleY(1); }
3952
+
3953
+ .shopee-react-modal-move-down-fast-exit-active {
3954
+ opacity: 0;
3955
+ transform: translateY(-10%) scaleY(0.95);
3956
+ transition: opacity 200ms ease-out, transform 200ms ease-out; }