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,3592 @@
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-selector {
557
+ border: 1px solid #e5e5e5;
558
+ border-radius: 4px;
559
+ outline: none;
560
+ transition: border 0.2s cubic-bezier(0.42, 0, 0.58, 1);
561
+ position: relative;
562
+ display: inline-table;
563
+ width: 100%;
564
+ padding: 7px 12px;
565
+ font-size: 14px;
566
+ line-height: 16px;
567
+ color: #333;
568
+ cursor: pointer;
569
+ border-collapse: separate;
570
+ border-spacing: 0;
571
+ box-sizing: border-box; }
572
+ .shopee-react-selector .shopee-react-selector__suffix-icon.shopee-react-icon {
573
+ width: 16px;
574
+ line-height: 16px; }
575
+ .shopee-react-selector .shopee-react-selector__clear-btn.shopee-react-icon {
576
+ width: 12px;
577
+ height: 16px;
578
+ line-height: 16px; }
579
+ .shopee-react-selector:hover, .shopee-react-selector:focus {
580
+ border-color: #b7b7b7; }
581
+ .shopee-react-selector.focused {
582
+ border-color: #b7b7b7; }
583
+ .shopee-react-selector.disabled {
584
+ color: #b7b7b7;
585
+ cursor: not-allowed;
586
+ background-color: #f6f6f6;
587
+ border-color: #eee; }
588
+ .shopee-react-selector.disabled:hover {
589
+ border-color: #eee; }
590
+ .shopee-react-selector.disabled .shopee-react-selector__suffix-icon {
591
+ fill: #b7b7b7; }
592
+ .shopee-react-selector.active-clearable:hover .shopee-react-selector__clear-btn {
593
+ visibility: visible; }
594
+ .shopee-react-selector .placeholder {
595
+ color: #b7b7b7; }
596
+ .shopee-react-selector .shopee-react-selector__inner {
597
+ font-size: 14px;
598
+ line-height: 16px; }
599
+ .shopee-react-selector .line-clamp--1 {
600
+ display: -webkit-box;
601
+ overflow: hidden;
602
+ text-overflow: ellipsis;
603
+ word-break: break-word;
604
+ -webkit-line-clamp: 1;
605
+ -webkit-box-orient: vertical; }
606
+ .shopee-react-selector .line-clamp--2 {
607
+ display: -webkit-box;
608
+ overflow: hidden;
609
+ text-overflow: ellipsis;
610
+ word-break: break-word;
611
+ -webkit-line-clamp: 2;
612
+ -webkit-box-orient: vertical; }
613
+ .shopee-react-selector .line-clamp--3 {
614
+ display: -webkit-box;
615
+ overflow: hidden;
616
+ text-overflow: ellipsis;
617
+ word-break: break-word;
618
+ -webkit-line-clamp: 3;
619
+ -webkit-box-orient: vertical; }
620
+ .shopee-react-selector--small {
621
+ padding: 3px 8px; }
622
+ .shopee-react-selector--small .shopee-react-selector__suffix-icon.shopee-react-icon {
623
+ width: 16px;
624
+ line-height: 16px; }
625
+ .shopee-react-selector--small .shopee-react-selector__clear-btn.shopee-react-icon {
626
+ width: 12px;
627
+ height: 16px;
628
+ line-height: 16px; }
629
+ .shopee-react-selector--large {
630
+ padding: 11px 12px; }
631
+ .shopee-react-selector--large .shopee-react-selector__suffix-icon.shopee-react-icon {
632
+ width: 16px;
633
+ line-height: 16px; }
634
+ .shopee-react-selector--large .shopee-react-selector__clear-btn.shopee-react-icon {
635
+ width: 12px;
636
+ height: 16px;
637
+ line-height: 16px; }
638
+ .shopee-react-selector__suffix {
639
+ position: relative;
640
+ display: table-cell;
641
+ width: 1px;
642
+ height: 100%;
643
+ padding-left: 4px;
644
+ line-height: 0;
645
+ color: #b7b7b7;
646
+ white-space: nowrap;
647
+ vertical-align: middle; }
648
+ .shopee-react-selector__suffix .shopee-react-selector__suffix-icon {
649
+ fill: #999; }
650
+ .shopee-react-selector__clear-btn {
651
+ visibility: hidden; }
652
+ .shopee-react-selector__clear-btn.shopee-react-icon {
653
+ display: inline-block;
654
+ fill: #b7b7b7; }
655
+
656
+ .shopee-react-selector-focus {
657
+ border-color: #b7b7b7; }
658
+
659
+ /** text **/
660
+ /** z-index **/
661
+ /** fill **/
662
+ /** boder **/
663
+ .move-up-enter,
664
+ .move-up-appear {
665
+ animation-duration: 0.2s;
666
+ animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
667
+ animation-fill-mode: both;
668
+ animation-play-state: paused; }
669
+
670
+ .move-up-leave {
671
+ animation-duration: 0.2s;
672
+ animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
673
+ animation-fill-mode: both;
674
+ animation-play-state: paused; }
675
+
676
+ .move-up-enter.move-up-enter-active,
677
+ .move-up-appear.move-up-appear-active {
678
+ animation-name: shopeeMoveUpIn;
679
+ animation-play-state: running; }
680
+
681
+ .move-up-leave.move-up-leave-active {
682
+ animation-name: shopeeMoveUpOut;
683
+ animation-play-state: running;
684
+ pointer-events: none; }
685
+
686
+ .move-up-enter,
687
+ .move-up-appear {
688
+ opacity: 0;
689
+ animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1); }
690
+
691
+ .move-up-leave {
692
+ animation-timing-function: cubic-bezier(0.6, 0.04, 0.98, 0.34); }
693
+
694
+ .move-down-enter,
695
+ .move-down-appear {
696
+ animation-duration: 0.2s;
697
+ animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
698
+ animation-fill-mode: both;
699
+ animation-play-state: paused; }
700
+
701
+ .move-down-leave {
702
+ animation-duration: 0.2s;
703
+ animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
704
+ animation-fill-mode: both;
705
+ animation-play-state: paused; }
706
+
707
+ .move-down-enter.move-down-enter-active,
708
+ .move-down-appear.move-down-appear-active {
709
+ animation-name: shopeeMoveDownIn;
710
+ animation-play-state: running; }
711
+
712
+ .move-down-leave.move-down-leave-active {
713
+ animation-name: shopeeMoveDownOut;
714
+ animation-play-state: running;
715
+ pointer-events: none; }
716
+
717
+ .move-down-enter,
718
+ .move-down-appear {
719
+ opacity: 0;
720
+ animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1); }
721
+
722
+ .move-down-leave {
723
+ animation-timing-function: cubic-bezier(0.6, 0.04, 0.98, 0.34); }
724
+
725
+ .move-left-enter,
726
+ .move-left-appear {
727
+ animation-duration: 0.2s;
728
+ animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
729
+ animation-fill-mode: both;
730
+ animation-play-state: paused; }
731
+
732
+ .move-left-leave {
733
+ animation-duration: 0.2s;
734
+ animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
735
+ animation-fill-mode: both;
736
+ animation-play-state: paused; }
737
+
738
+ .move-left-enter.move-left-enter-active,
739
+ .move-left-appear.move-left-appear-active {
740
+ animation-name: shopeeMoveLeftIn;
741
+ animation-play-state: running; }
742
+
743
+ .move-left-leave.move-left-leave-active {
744
+ animation-name: shopeeMoveLeftOut;
745
+ animation-play-state: running;
746
+ pointer-events: none; }
747
+
748
+ .move-left-enter,
749
+ .move-left-appear {
750
+ opacity: 0;
751
+ animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1); }
752
+
753
+ .move-left-leave {
754
+ animation-timing-function: cubic-bezier(0.6, 0.04, 0.98, 0.34); }
755
+
756
+ .move-right-enter,
757
+ .move-right-appear {
758
+ animation-duration: 0.2s;
759
+ animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
760
+ animation-fill-mode: both;
761
+ animation-play-state: paused; }
762
+
763
+ .move-right-leave {
764
+ animation-duration: 0.2s;
765
+ animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
766
+ animation-fill-mode: both;
767
+ animation-play-state: paused; }
768
+
769
+ .move-right-enter.move-right-enter-active,
770
+ .move-right-appear.move-right-appear-active {
771
+ animation-name: shopeeMoveRightIn;
772
+ animation-play-state: running; }
773
+
774
+ .move-right-leave.move-right-leave-active {
775
+ animation-name: shopeeMoveRightOut;
776
+ animation-play-state: running;
777
+ pointer-events: none; }
778
+
779
+ .move-right-enter,
780
+ .move-right-appear {
781
+ opacity: 0;
782
+ animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1); }
783
+
784
+ .move-right-leave {
785
+ animation-timing-function: cubic-bezier(0.6, 0.04, 0.98, 0.34); }
786
+
787
+ @keyframes shopeeMoveDownIn {
788
+ 0% {
789
+ transform: translateY(100%);
790
+ transform-origin: 0 0;
791
+ opacity: 0; }
792
+ 100% {
793
+ transform: translateY(0%);
794
+ transform-origin: 0 0;
795
+ opacity: 1; } }
796
+
797
+ @keyframes shopeeMoveDownOut {
798
+ 0% {
799
+ transform: translateY(0%);
800
+ transform-origin: 0 0;
801
+ opacity: 1; }
802
+ 100% {
803
+ transform: translateY(100%);
804
+ transform-origin: 0 0;
805
+ opacity: 0; } }
806
+
807
+ @keyframes shopeeMoveLeftIn {
808
+ 0% {
809
+ transform: translateX(-100%);
810
+ transform-origin: 0 0;
811
+ opacity: 0; }
812
+ 100% {
813
+ transform: translateX(0%);
814
+ transform-origin: 0 0;
815
+ opacity: 1; } }
816
+
817
+ @keyframes shopeeMoveLeftOut {
818
+ 0% {
819
+ transform: translateX(0%);
820
+ transform-origin: 0 0;
821
+ opacity: 1; }
822
+ 100% {
823
+ transform: translateX(-100%);
824
+ transform-origin: 0 0;
825
+ opacity: 0; } }
826
+
827
+ @keyframes shopeeMoveRightIn {
828
+ 0% {
829
+ transform: translateX(100%);
830
+ transform-origin: 0 0;
831
+ opacity: 0; }
832
+ 100% {
833
+ transform: translateX(0%);
834
+ transform-origin: 0 0;
835
+ opacity: 1; } }
836
+
837
+ @keyframes shopeeMoveRightOut {
838
+ 0% {
839
+ transform: translateX(0%);
840
+ transform-origin: 0 0;
841
+ opacity: 1; }
842
+ 100% {
843
+ transform: translateX(100%);
844
+ transform-origin: 0 0;
845
+ opacity: 0; } }
846
+
847
+ @keyframes shopeeMoveUpIn {
848
+ 0% {
849
+ transform: translateY(-100%);
850
+ transform-origin: 0 0;
851
+ opacity: 0; }
852
+ 100% {
853
+ transform: translateY(0%);
854
+ transform-origin: 0 0;
855
+ opacity: 1; } }
856
+
857
+ @keyframes shopeeMoveUpOut {
858
+ 0% {
859
+ transform: translateY(0%);
860
+ transform-origin: 0 0;
861
+ opacity: 1; }
862
+ 100% {
863
+ transform: translateY(-100%);
864
+ transform-origin: 0 0;
865
+ opacity: 0; } }
866
+
867
+ .shopee-react-zoom-enter,
868
+ .shopee-react-zoom-appear {
869
+ animation-duration: 0.2s;
870
+ animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
871
+ animation-fill-mode: both;
872
+ animation-play-state: paused; }
873
+
874
+ .shopee-react-zoom-leave {
875
+ animation-duration: 0.2s;
876
+ animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
877
+ animation-fill-mode: both;
878
+ animation-play-state: paused; }
879
+
880
+ .shopee-react-zoom-enter.shopee-react-zoom-enter-active,
881
+ .shopee-react-zoom-appear.shopee-react-zoom-appear-active {
882
+ animation-name: shopeeZoomIn;
883
+ animation-play-state: running; }
884
+
885
+ .shopee-react-zoom-leave.shopee-react-zoom-leave-active {
886
+ animation-name: shopeeZoomOut;
887
+ animation-play-state: running;
888
+ pointer-events: none; }
889
+
890
+ .shopee-react-zoom-enter,
891
+ .shopee-react-zoom-appear {
892
+ transform: scale(0);
893
+ opacity: 0;
894
+ animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1); }
895
+ .shopee-react-zoom-enter-prepare,
896
+ .shopee-react-zoom-appear-prepare {
897
+ transform: none; }
898
+
899
+ .shopee-react-zoom-leave {
900
+ animation-timing-function: cubic-bezier(0.78, 0.14, 0.15, 0.86); }
901
+
902
+ .shopee-react-zoom-big-enter,
903
+ .shopee-react-zoom-big-appear {
904
+ animation-duration: 0.2s;
905
+ animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
906
+ animation-fill-mode: both;
907
+ animation-play-state: paused; }
908
+
909
+ .shopee-react-zoom-big-leave {
910
+ animation-duration: 0.2s;
911
+ animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
912
+ animation-fill-mode: both;
913
+ animation-play-state: paused; }
914
+
915
+ .shopee-react-zoom-big-enter.shopee-react-zoom-big-enter-active,
916
+ .shopee-react-zoom-big-appear.shopee-react-zoom-big-appear-active {
917
+ animation-name: shopeeZoomBigIn;
918
+ animation-play-state: running; }
919
+
920
+ .shopee-react-zoom-big-leave.shopee-react-zoom-big-leave-active {
921
+ animation-name: shopeeZoomBigOut;
922
+ animation-play-state: running;
923
+ pointer-events: none; }
924
+
925
+ .shopee-react-zoom-big-enter,
926
+ .shopee-react-zoom-big-appear {
927
+ transform: scale(0);
928
+ opacity: 0;
929
+ animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1); }
930
+ .shopee-react-zoom-big-enter-prepare,
931
+ .shopee-react-zoom-big-appear-prepare {
932
+ transform: none; }
933
+
934
+ .shopee-react-zoom-big-leave {
935
+ animation-timing-function: cubic-bezier(0.78, 0.14, 0.15, 0.86); }
936
+
937
+ .shopee-react-zoom-big-fast-enter,
938
+ .shopee-react-zoom-big-fast-appear {
939
+ animation-duration: 0.1s;
940
+ animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
941
+ animation-fill-mode: both;
942
+ animation-play-state: paused; }
943
+
944
+ .shopee-react-zoom-big-fast-leave {
945
+ animation-duration: 0.1s;
946
+ animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
947
+ animation-fill-mode: both;
948
+ animation-play-state: paused; }
949
+
950
+ .shopee-react-zoom-big-fast-enter.shopee-react-zoom-big-fast-enter-active,
951
+ .shopee-react-zoom-big-fast-appear.shopee-react-zoom-big-fast-appear-active {
952
+ animation-name: shopeeZoomBigIn;
953
+ animation-play-state: running; }
954
+
955
+ .shopee-react-zoom-big-fast-leave.shopee-react-zoom-big-fast-leave-active {
956
+ animation-name: shopeeZoomBigOut;
957
+ animation-play-state: running;
958
+ pointer-events: none; }
959
+
960
+ .shopee-react-zoom-big-fast-enter,
961
+ .shopee-react-zoom-big-fast-appear {
962
+ transform: scale(0);
963
+ opacity: 0;
964
+ animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1); }
965
+ .shopee-react-zoom-big-fast-enter-prepare,
966
+ .shopee-react-zoom-big-fast-appear-prepare {
967
+ transform: none; }
968
+
969
+ .shopee-react-zoom-big-fast-leave {
970
+ animation-timing-function: cubic-bezier(0.78, 0.14, 0.15, 0.86); }
971
+
972
+ .shopee-react-zoom-up-enter,
973
+ .shopee-react-zoom-up-appear {
974
+ animation-duration: 0.2s;
975
+ animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
976
+ animation-fill-mode: both;
977
+ animation-play-state: paused; }
978
+
979
+ .shopee-react-zoom-up-leave {
980
+ animation-duration: 0.2s;
981
+ animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
982
+ animation-fill-mode: both;
983
+ animation-play-state: paused; }
984
+
985
+ .shopee-react-zoom-up-enter.shopee-react-zoom-up-enter-active,
986
+ .shopee-react-zoom-up-appear.shopee-react-zoom-up-appear-active {
987
+ animation-name: shopeeZoomUpIn;
988
+ animation-play-state: running; }
989
+
990
+ .shopee-react-zoom-up-leave.shopee-react-zoom-up-leave-active {
991
+ animation-name: shopeeZoomUpOut;
992
+ animation-play-state: running;
993
+ pointer-events: none; }
994
+
995
+ .shopee-react-zoom-up-enter,
996
+ .shopee-react-zoom-up-appear {
997
+ transform: scale(0);
998
+ opacity: 0;
999
+ animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1); }
1000
+ .shopee-react-zoom-up-enter-prepare,
1001
+ .shopee-react-zoom-up-appear-prepare {
1002
+ transform: none; }
1003
+
1004
+ .shopee-react-zoom-up-leave {
1005
+ animation-timing-function: cubic-bezier(0.78, 0.14, 0.15, 0.86); }
1006
+
1007
+ .shopee-react-zoom-down-enter,
1008
+ .shopee-react-zoom-down-appear {
1009
+ animation-duration: 0.2s;
1010
+ animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
1011
+ animation-fill-mode: both;
1012
+ animation-play-state: paused; }
1013
+
1014
+ .shopee-react-zoom-down-leave {
1015
+ animation-duration: 0.2s;
1016
+ animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
1017
+ animation-fill-mode: both;
1018
+ animation-play-state: paused; }
1019
+
1020
+ .shopee-react-zoom-down-enter.shopee-react-zoom-down-enter-active,
1021
+ .shopee-react-zoom-down-appear.shopee-react-zoom-down-appear-active {
1022
+ animation-name: shopeeZoomDownIn;
1023
+ animation-play-state: running; }
1024
+
1025
+ .shopee-react-zoom-down-leave.shopee-react-zoom-down-leave-active {
1026
+ animation-name: shopeeZoomDownOut;
1027
+ animation-play-state: running;
1028
+ pointer-events: none; }
1029
+
1030
+ .shopee-react-zoom-down-enter,
1031
+ .shopee-react-zoom-down-appear {
1032
+ transform: scale(0);
1033
+ opacity: 0;
1034
+ animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1); }
1035
+ .shopee-react-zoom-down-enter-prepare,
1036
+ .shopee-react-zoom-down-appear-prepare {
1037
+ transform: none; }
1038
+
1039
+ .shopee-react-zoom-down-leave {
1040
+ animation-timing-function: cubic-bezier(0.78, 0.14, 0.15, 0.86); }
1041
+
1042
+ .shopee-react-zoom-left-enter,
1043
+ .shopee-react-zoom-left-appear {
1044
+ animation-duration: 0.2s;
1045
+ animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
1046
+ animation-fill-mode: both;
1047
+ animation-play-state: paused; }
1048
+
1049
+ .shopee-react-zoom-left-leave {
1050
+ animation-duration: 0.2s;
1051
+ animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
1052
+ animation-fill-mode: both;
1053
+ animation-play-state: paused; }
1054
+
1055
+ .shopee-react-zoom-left-enter.shopee-react-zoom-left-enter-active,
1056
+ .shopee-react-zoom-left-appear.shopee-react-zoom-left-appear-active {
1057
+ animation-name: shopeeZoomLeftIn;
1058
+ animation-play-state: running; }
1059
+
1060
+ .shopee-react-zoom-left-leave.shopee-react-zoom-left-leave-active {
1061
+ animation-name: shopeeZoomLeftOut;
1062
+ animation-play-state: running;
1063
+ pointer-events: none; }
1064
+
1065
+ .shopee-react-zoom-left-enter,
1066
+ .shopee-react-zoom-left-appear {
1067
+ transform: scale(0);
1068
+ opacity: 0;
1069
+ animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1); }
1070
+ .shopee-react-zoom-left-enter-prepare,
1071
+ .shopee-react-zoom-left-appear-prepare {
1072
+ transform: none; }
1073
+
1074
+ .shopee-react-zoom-left-leave {
1075
+ animation-timing-function: cubic-bezier(0.78, 0.14, 0.15, 0.86); }
1076
+
1077
+ .shopee-react-zoom-right-enter,
1078
+ .shopee-react-zoom-right-appear {
1079
+ animation-duration: 0.2s;
1080
+ animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
1081
+ animation-fill-mode: both;
1082
+ animation-play-state: paused; }
1083
+
1084
+ .shopee-react-zoom-right-leave {
1085
+ animation-duration: 0.2s;
1086
+ animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
1087
+ animation-fill-mode: both;
1088
+ animation-play-state: paused; }
1089
+
1090
+ .shopee-react-zoom-right-enter.shopee-react-zoom-right-enter-active,
1091
+ .shopee-react-zoom-right-appear.shopee-react-zoom-right-appear-active {
1092
+ animation-name: shopeeZoomRightIn;
1093
+ animation-play-state: running; }
1094
+
1095
+ .shopee-react-zoom-right-leave.shopee-react-zoom-right-leave-active {
1096
+ animation-name: shopeeZoomRightOut;
1097
+ animation-play-state: running;
1098
+ pointer-events: none; }
1099
+
1100
+ .shopee-react-zoom-right-enter,
1101
+ .shopee-react-zoom-right-appear {
1102
+ transform: scale(0);
1103
+ opacity: 0;
1104
+ animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1); }
1105
+ .shopee-react-zoom-right-enter-prepare,
1106
+ .shopee-react-zoom-right-appear-prepare {
1107
+ transform: none; }
1108
+
1109
+ .shopee-react-zoom-right-leave {
1110
+ animation-timing-function: cubic-bezier(0.78, 0.14, 0.15, 0.86); }
1111
+
1112
+ @keyframes shopeeZoomIn {
1113
+ 0% {
1114
+ transform: scale(0.2);
1115
+ opacity: 0; }
1116
+ 100% {
1117
+ transform: scale(1);
1118
+ opacity: 1; } }
1119
+
1120
+ @keyframes shopeeZoomOut {
1121
+ 0% {
1122
+ transform: scale(1); }
1123
+ 100% {
1124
+ transform: scale(0.2);
1125
+ opacity: 0; } }
1126
+
1127
+ @keyframes shopeeZoomBigIn {
1128
+ 0% {
1129
+ transform: scale(0.8);
1130
+ opacity: 0; }
1131
+ 100% {
1132
+ transform: scale(1);
1133
+ opacity: 1; } }
1134
+
1135
+ @keyframes shopeeZoomBigOut {
1136
+ 0% {
1137
+ transform: scale(1); }
1138
+ 100% {
1139
+ transform: scale(0.8);
1140
+ opacity: 0; } }
1141
+
1142
+ @keyframes shopeeZoomUpIn {
1143
+ 0% {
1144
+ transform: scale(0.8);
1145
+ transform-origin: 50% 0%;
1146
+ opacity: 0; }
1147
+ 100% {
1148
+ transform: scale(1);
1149
+ transform-origin: 50% 0%; } }
1150
+
1151
+ @keyframes shopeeZoomUpOut {
1152
+ 0% {
1153
+ transform: scale(1);
1154
+ transform-origin: 50% 0%; }
1155
+ 100% {
1156
+ transform: scale(0.8);
1157
+ transform-origin: 50% 0%;
1158
+ opacity: 0; } }
1159
+
1160
+ @keyframes shopeeZoomLeftIn {
1161
+ 0% {
1162
+ transform: scale(0.8);
1163
+ transform-origin: 0% 50%;
1164
+ opacity: 0; }
1165
+ 100% {
1166
+ transform: scale(1);
1167
+ transform-origin: 0% 50%; } }
1168
+
1169
+ @keyframes shopeeZoomLeftOut {
1170
+ 0% {
1171
+ transform: scale(1);
1172
+ transform-origin: 0% 50%; }
1173
+ 100% {
1174
+ transform: scale(0.8);
1175
+ transform-origin: 0% 50%;
1176
+ opacity: 0; } }
1177
+
1178
+ @keyframes shopeeZoomRightIn {
1179
+ 0% {
1180
+ transform: scale(0.8);
1181
+ transform-origin: 100% 50%;
1182
+ opacity: 0; }
1183
+ 100% {
1184
+ transform: scale(1);
1185
+ transform-origin: 100% 50%; } }
1186
+
1187
+ @keyframes shopeeZoomRightOut {
1188
+ 0% {
1189
+ transform: scale(1);
1190
+ transform-origin: 100% 50%; }
1191
+ 100% {
1192
+ transform: scale(0.8);
1193
+ transform-origin: 100% 50%;
1194
+ opacity: 0; } }
1195
+
1196
+ @keyframes shopeeZoomDownIn {
1197
+ 0% {
1198
+ transform: scale(0.8);
1199
+ transform-origin: 50% 100%;
1200
+ opacity: 0; }
1201
+ 100% {
1202
+ transform: scale(1);
1203
+ transform-origin: 50% 100%; } }
1204
+
1205
+ @keyframes shopeeZoomDownOut {
1206
+ 0% {
1207
+ transform: scale(1);
1208
+ transform-origin: 50% 100%; }
1209
+ 100% {
1210
+ transform: scale(0.8);
1211
+ transform-origin: 50% 100%;
1212
+ opacity: 0; } }
1213
+
1214
+ .shopee-react-cascader-menu__wrapper {
1215
+ display: inline-block;
1216
+ white-space: nowrap;
1217
+ overflow: auto; }
1218
+
1219
+ .shopee-react-cascader-menu-single .shopee-react-cascader-menu__item.selected {
1220
+ color: #ee4d2d; }
1221
+
1222
+ .shopee-react-cascader-menu {
1223
+ display: inline-block;
1224
+ height: 100%;
1225
+ margin: 0;
1226
+ overflow: auto;
1227
+ font-size: 14px;
1228
+ font-weight: 400;
1229
+ color: #333;
1230
+ vertical-align: top;
1231
+ list-style: none;
1232
+ background-color: #fff;
1233
+ border-radius: 4px;
1234
+ transform-origin: left;
1235
+ padding-inline-start: 0; }
1236
+ .shopee-react-cascader-menu:first-of-type::before {
1237
+ width: 0; }
1238
+ .shopee-react-cascader-menu::before {
1239
+ position: absolute;
1240
+ top: 0;
1241
+ bottom: 0;
1242
+ width: 1px;
1243
+ background-color: #e5e5e5;
1244
+ content: ''; }
1245
+ .shopee-react-cascader-menu__item {
1246
+ display: flex;
1247
+ align-items: center;
1248
+ position: relative;
1249
+ padding: 8px 12px;
1250
+ word-break: normal;
1251
+ word-wrap: break-word;
1252
+ white-space: normal;
1253
+ cursor: pointer; }
1254
+ .shopee-react-cascader-menu__item:hover, .shopee-react-cascader-menu__item.active {
1255
+ color: #333;
1256
+ background-color: rgba(0, 0, 0, 0.04); }
1257
+ .shopee-react-cascader-menu__item.selected {
1258
+ font-weight: 500; }
1259
+ .shopee-react-cascader-menu__item.disabled {
1260
+ cursor: not-allowed;
1261
+ opacity: .5; }
1262
+ .shopee-react-cascader-menu__item.has-children {
1263
+ padding-right: 32px; }
1264
+ .shopee-react-cascader-menu__item .shopee-react-icon {
1265
+ line-height: 16px;
1266
+ position: absolute;
1267
+ top: 50%;
1268
+ right: 8px;
1269
+ width: 16px;
1270
+ transform: translate(0, -50%);
1271
+ fill: #999; }
1272
+
1273
+ /** text **/
1274
+ /** z-index **/
1275
+ /** fill **/
1276
+ /** boder **/
1277
+ .move-up-enter,
1278
+ .move-up-appear {
1279
+ animation-duration: 0.2s;
1280
+ animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
1281
+ animation-fill-mode: both;
1282
+ animation-play-state: paused; }
1283
+
1284
+ .move-up-leave {
1285
+ animation-duration: 0.2s;
1286
+ animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
1287
+ animation-fill-mode: both;
1288
+ animation-play-state: paused; }
1289
+
1290
+ .move-up-enter.move-up-enter-active,
1291
+ .move-up-appear.move-up-appear-active {
1292
+ animation-name: shopeeMoveUpIn;
1293
+ animation-play-state: running; }
1294
+
1295
+ .move-up-leave.move-up-leave-active {
1296
+ animation-name: shopeeMoveUpOut;
1297
+ animation-play-state: running;
1298
+ pointer-events: none; }
1299
+
1300
+ .move-up-enter,
1301
+ .move-up-appear {
1302
+ opacity: 0;
1303
+ animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1); }
1304
+
1305
+ .move-up-leave {
1306
+ animation-timing-function: cubic-bezier(0.6, 0.04, 0.98, 0.34); }
1307
+
1308
+ .move-down-enter,
1309
+ .move-down-appear {
1310
+ animation-duration: 0.2s;
1311
+ animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
1312
+ animation-fill-mode: both;
1313
+ animation-play-state: paused; }
1314
+
1315
+ .move-down-leave {
1316
+ animation-duration: 0.2s;
1317
+ animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
1318
+ animation-fill-mode: both;
1319
+ animation-play-state: paused; }
1320
+
1321
+ .move-down-enter.move-down-enter-active,
1322
+ .move-down-appear.move-down-appear-active {
1323
+ animation-name: shopeeMoveDownIn;
1324
+ animation-play-state: running; }
1325
+
1326
+ .move-down-leave.move-down-leave-active {
1327
+ animation-name: shopeeMoveDownOut;
1328
+ animation-play-state: running;
1329
+ pointer-events: none; }
1330
+
1331
+ .move-down-enter,
1332
+ .move-down-appear {
1333
+ opacity: 0;
1334
+ animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1); }
1335
+
1336
+ .move-down-leave {
1337
+ animation-timing-function: cubic-bezier(0.6, 0.04, 0.98, 0.34); }
1338
+
1339
+ .move-left-enter,
1340
+ .move-left-appear {
1341
+ animation-duration: 0.2s;
1342
+ animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
1343
+ animation-fill-mode: both;
1344
+ animation-play-state: paused; }
1345
+
1346
+ .move-left-leave {
1347
+ animation-duration: 0.2s;
1348
+ animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
1349
+ animation-fill-mode: both;
1350
+ animation-play-state: paused; }
1351
+
1352
+ .move-left-enter.move-left-enter-active,
1353
+ .move-left-appear.move-left-appear-active {
1354
+ animation-name: shopeeMoveLeftIn;
1355
+ animation-play-state: running; }
1356
+
1357
+ .move-left-leave.move-left-leave-active {
1358
+ animation-name: shopeeMoveLeftOut;
1359
+ animation-play-state: running;
1360
+ pointer-events: none; }
1361
+
1362
+ .move-left-enter,
1363
+ .move-left-appear {
1364
+ opacity: 0;
1365
+ animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1); }
1366
+
1367
+ .move-left-leave {
1368
+ animation-timing-function: cubic-bezier(0.6, 0.04, 0.98, 0.34); }
1369
+
1370
+ .move-right-enter,
1371
+ .move-right-appear {
1372
+ animation-duration: 0.2s;
1373
+ animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
1374
+ animation-fill-mode: both;
1375
+ animation-play-state: paused; }
1376
+
1377
+ .move-right-leave {
1378
+ animation-duration: 0.2s;
1379
+ animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
1380
+ animation-fill-mode: both;
1381
+ animation-play-state: paused; }
1382
+
1383
+ .move-right-enter.move-right-enter-active,
1384
+ .move-right-appear.move-right-appear-active {
1385
+ animation-name: shopeeMoveRightIn;
1386
+ animation-play-state: running; }
1387
+
1388
+ .move-right-leave.move-right-leave-active {
1389
+ animation-name: shopeeMoveRightOut;
1390
+ animation-play-state: running;
1391
+ pointer-events: none; }
1392
+
1393
+ .move-right-enter,
1394
+ .move-right-appear {
1395
+ opacity: 0;
1396
+ animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1); }
1397
+
1398
+ .move-right-leave {
1399
+ animation-timing-function: cubic-bezier(0.6, 0.04, 0.98, 0.34); }
1400
+
1401
+ @keyframes shopeeMoveDownIn {
1402
+ 0% {
1403
+ transform: translateY(100%);
1404
+ transform-origin: 0 0;
1405
+ opacity: 0; }
1406
+ 100% {
1407
+ transform: translateY(0%);
1408
+ transform-origin: 0 0;
1409
+ opacity: 1; } }
1410
+
1411
+ @keyframes shopeeMoveDownOut {
1412
+ 0% {
1413
+ transform: translateY(0%);
1414
+ transform-origin: 0 0;
1415
+ opacity: 1; }
1416
+ 100% {
1417
+ transform: translateY(100%);
1418
+ transform-origin: 0 0;
1419
+ opacity: 0; } }
1420
+
1421
+ @keyframes shopeeMoveLeftIn {
1422
+ 0% {
1423
+ transform: translateX(-100%);
1424
+ transform-origin: 0 0;
1425
+ opacity: 0; }
1426
+ 100% {
1427
+ transform: translateX(0%);
1428
+ transform-origin: 0 0;
1429
+ opacity: 1; } }
1430
+
1431
+ @keyframes shopeeMoveLeftOut {
1432
+ 0% {
1433
+ transform: translateX(0%);
1434
+ transform-origin: 0 0;
1435
+ opacity: 1; }
1436
+ 100% {
1437
+ transform: translateX(-100%);
1438
+ transform-origin: 0 0;
1439
+ opacity: 0; } }
1440
+
1441
+ @keyframes shopeeMoveRightIn {
1442
+ 0% {
1443
+ transform: translateX(100%);
1444
+ transform-origin: 0 0;
1445
+ opacity: 0; }
1446
+ 100% {
1447
+ transform: translateX(0%);
1448
+ transform-origin: 0 0;
1449
+ opacity: 1; } }
1450
+
1451
+ @keyframes shopeeMoveRightOut {
1452
+ 0% {
1453
+ transform: translateX(0%);
1454
+ transform-origin: 0 0;
1455
+ opacity: 1; }
1456
+ 100% {
1457
+ transform: translateX(100%);
1458
+ transform-origin: 0 0;
1459
+ opacity: 0; } }
1460
+
1461
+ @keyframes shopeeMoveUpIn {
1462
+ 0% {
1463
+ transform: translateY(-100%);
1464
+ transform-origin: 0 0;
1465
+ opacity: 0; }
1466
+ 100% {
1467
+ transform: translateY(0%);
1468
+ transform-origin: 0 0;
1469
+ opacity: 1; } }
1470
+
1471
+ @keyframes shopeeMoveUpOut {
1472
+ 0% {
1473
+ transform: translateY(0%);
1474
+ transform-origin: 0 0;
1475
+ opacity: 1; }
1476
+ 100% {
1477
+ transform: translateY(-100%);
1478
+ transform-origin: 0 0;
1479
+ opacity: 0; } }
1480
+
1481
+ .shopee-react-zoom-enter,
1482
+ .shopee-react-zoom-appear {
1483
+ animation-duration: 0.2s;
1484
+ animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
1485
+ animation-fill-mode: both;
1486
+ animation-play-state: paused; }
1487
+
1488
+ .shopee-react-zoom-leave {
1489
+ animation-duration: 0.2s;
1490
+ animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
1491
+ animation-fill-mode: both;
1492
+ animation-play-state: paused; }
1493
+
1494
+ .shopee-react-zoom-enter.shopee-react-zoom-enter-active,
1495
+ .shopee-react-zoom-appear.shopee-react-zoom-appear-active {
1496
+ animation-name: shopeeZoomIn;
1497
+ animation-play-state: running; }
1498
+
1499
+ .shopee-react-zoom-leave.shopee-react-zoom-leave-active {
1500
+ animation-name: shopeeZoomOut;
1501
+ animation-play-state: running;
1502
+ pointer-events: none; }
1503
+
1504
+ .shopee-react-zoom-enter,
1505
+ .shopee-react-zoom-appear {
1506
+ transform: scale(0);
1507
+ opacity: 0;
1508
+ animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1); }
1509
+ .shopee-react-zoom-enter-prepare,
1510
+ .shopee-react-zoom-appear-prepare {
1511
+ transform: none; }
1512
+
1513
+ .shopee-react-zoom-leave {
1514
+ animation-timing-function: cubic-bezier(0.78, 0.14, 0.15, 0.86); }
1515
+
1516
+ .shopee-react-zoom-big-enter,
1517
+ .shopee-react-zoom-big-appear {
1518
+ animation-duration: 0.2s;
1519
+ animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
1520
+ animation-fill-mode: both;
1521
+ animation-play-state: paused; }
1522
+
1523
+ .shopee-react-zoom-big-leave {
1524
+ animation-duration: 0.2s;
1525
+ animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
1526
+ animation-fill-mode: both;
1527
+ animation-play-state: paused; }
1528
+
1529
+ .shopee-react-zoom-big-enter.shopee-react-zoom-big-enter-active,
1530
+ .shopee-react-zoom-big-appear.shopee-react-zoom-big-appear-active {
1531
+ animation-name: shopeeZoomBigIn;
1532
+ animation-play-state: running; }
1533
+
1534
+ .shopee-react-zoom-big-leave.shopee-react-zoom-big-leave-active {
1535
+ animation-name: shopeeZoomBigOut;
1536
+ animation-play-state: running;
1537
+ pointer-events: none; }
1538
+
1539
+ .shopee-react-zoom-big-enter,
1540
+ .shopee-react-zoom-big-appear {
1541
+ transform: scale(0);
1542
+ opacity: 0;
1543
+ animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1); }
1544
+ .shopee-react-zoom-big-enter-prepare,
1545
+ .shopee-react-zoom-big-appear-prepare {
1546
+ transform: none; }
1547
+
1548
+ .shopee-react-zoom-big-leave {
1549
+ animation-timing-function: cubic-bezier(0.78, 0.14, 0.15, 0.86); }
1550
+
1551
+ .shopee-react-zoom-big-fast-enter,
1552
+ .shopee-react-zoom-big-fast-appear {
1553
+ animation-duration: 0.1s;
1554
+ animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
1555
+ animation-fill-mode: both;
1556
+ animation-play-state: paused; }
1557
+
1558
+ .shopee-react-zoom-big-fast-leave {
1559
+ animation-duration: 0.1s;
1560
+ animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
1561
+ animation-fill-mode: both;
1562
+ animation-play-state: paused; }
1563
+
1564
+ .shopee-react-zoom-big-fast-enter.shopee-react-zoom-big-fast-enter-active,
1565
+ .shopee-react-zoom-big-fast-appear.shopee-react-zoom-big-fast-appear-active {
1566
+ animation-name: shopeeZoomBigIn;
1567
+ animation-play-state: running; }
1568
+
1569
+ .shopee-react-zoom-big-fast-leave.shopee-react-zoom-big-fast-leave-active {
1570
+ animation-name: shopeeZoomBigOut;
1571
+ animation-play-state: running;
1572
+ pointer-events: none; }
1573
+
1574
+ .shopee-react-zoom-big-fast-enter,
1575
+ .shopee-react-zoom-big-fast-appear {
1576
+ transform: scale(0);
1577
+ opacity: 0;
1578
+ animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1); }
1579
+ .shopee-react-zoom-big-fast-enter-prepare,
1580
+ .shopee-react-zoom-big-fast-appear-prepare {
1581
+ transform: none; }
1582
+
1583
+ .shopee-react-zoom-big-fast-leave {
1584
+ animation-timing-function: cubic-bezier(0.78, 0.14, 0.15, 0.86); }
1585
+
1586
+ .shopee-react-zoom-up-enter,
1587
+ .shopee-react-zoom-up-appear {
1588
+ animation-duration: 0.2s;
1589
+ animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
1590
+ animation-fill-mode: both;
1591
+ animation-play-state: paused; }
1592
+
1593
+ .shopee-react-zoom-up-leave {
1594
+ animation-duration: 0.2s;
1595
+ animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
1596
+ animation-fill-mode: both;
1597
+ animation-play-state: paused; }
1598
+
1599
+ .shopee-react-zoom-up-enter.shopee-react-zoom-up-enter-active,
1600
+ .shopee-react-zoom-up-appear.shopee-react-zoom-up-appear-active {
1601
+ animation-name: shopeeZoomUpIn;
1602
+ animation-play-state: running; }
1603
+
1604
+ .shopee-react-zoom-up-leave.shopee-react-zoom-up-leave-active {
1605
+ animation-name: shopeeZoomUpOut;
1606
+ animation-play-state: running;
1607
+ pointer-events: none; }
1608
+
1609
+ .shopee-react-zoom-up-enter,
1610
+ .shopee-react-zoom-up-appear {
1611
+ transform: scale(0);
1612
+ opacity: 0;
1613
+ animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1); }
1614
+ .shopee-react-zoom-up-enter-prepare,
1615
+ .shopee-react-zoom-up-appear-prepare {
1616
+ transform: none; }
1617
+
1618
+ .shopee-react-zoom-up-leave {
1619
+ animation-timing-function: cubic-bezier(0.78, 0.14, 0.15, 0.86); }
1620
+
1621
+ .shopee-react-zoom-down-enter,
1622
+ .shopee-react-zoom-down-appear {
1623
+ animation-duration: 0.2s;
1624
+ animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
1625
+ animation-fill-mode: both;
1626
+ animation-play-state: paused; }
1627
+
1628
+ .shopee-react-zoom-down-leave {
1629
+ animation-duration: 0.2s;
1630
+ animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
1631
+ animation-fill-mode: both;
1632
+ animation-play-state: paused; }
1633
+
1634
+ .shopee-react-zoom-down-enter.shopee-react-zoom-down-enter-active,
1635
+ .shopee-react-zoom-down-appear.shopee-react-zoom-down-appear-active {
1636
+ animation-name: shopeeZoomDownIn;
1637
+ animation-play-state: running; }
1638
+
1639
+ .shopee-react-zoom-down-leave.shopee-react-zoom-down-leave-active {
1640
+ animation-name: shopeeZoomDownOut;
1641
+ animation-play-state: running;
1642
+ pointer-events: none; }
1643
+
1644
+ .shopee-react-zoom-down-enter,
1645
+ .shopee-react-zoom-down-appear {
1646
+ transform: scale(0);
1647
+ opacity: 0;
1648
+ animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1); }
1649
+ .shopee-react-zoom-down-enter-prepare,
1650
+ .shopee-react-zoom-down-appear-prepare {
1651
+ transform: none; }
1652
+
1653
+ .shopee-react-zoom-down-leave {
1654
+ animation-timing-function: cubic-bezier(0.78, 0.14, 0.15, 0.86); }
1655
+
1656
+ .shopee-react-zoom-left-enter,
1657
+ .shopee-react-zoom-left-appear {
1658
+ animation-duration: 0.2s;
1659
+ animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
1660
+ animation-fill-mode: both;
1661
+ animation-play-state: paused; }
1662
+
1663
+ .shopee-react-zoom-left-leave {
1664
+ animation-duration: 0.2s;
1665
+ animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
1666
+ animation-fill-mode: both;
1667
+ animation-play-state: paused; }
1668
+
1669
+ .shopee-react-zoom-left-enter.shopee-react-zoom-left-enter-active,
1670
+ .shopee-react-zoom-left-appear.shopee-react-zoom-left-appear-active {
1671
+ animation-name: shopeeZoomLeftIn;
1672
+ animation-play-state: running; }
1673
+
1674
+ .shopee-react-zoom-left-leave.shopee-react-zoom-left-leave-active {
1675
+ animation-name: shopeeZoomLeftOut;
1676
+ animation-play-state: running;
1677
+ pointer-events: none; }
1678
+
1679
+ .shopee-react-zoom-left-enter,
1680
+ .shopee-react-zoom-left-appear {
1681
+ transform: scale(0);
1682
+ opacity: 0;
1683
+ animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1); }
1684
+ .shopee-react-zoom-left-enter-prepare,
1685
+ .shopee-react-zoom-left-appear-prepare {
1686
+ transform: none; }
1687
+
1688
+ .shopee-react-zoom-left-leave {
1689
+ animation-timing-function: cubic-bezier(0.78, 0.14, 0.15, 0.86); }
1690
+
1691
+ .shopee-react-zoom-right-enter,
1692
+ .shopee-react-zoom-right-appear {
1693
+ animation-duration: 0.2s;
1694
+ animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
1695
+ animation-fill-mode: both;
1696
+ animation-play-state: paused; }
1697
+
1698
+ .shopee-react-zoom-right-leave {
1699
+ animation-duration: 0.2s;
1700
+ animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
1701
+ animation-fill-mode: both;
1702
+ animation-play-state: paused; }
1703
+
1704
+ .shopee-react-zoom-right-enter.shopee-react-zoom-right-enter-active,
1705
+ .shopee-react-zoom-right-appear.shopee-react-zoom-right-appear-active {
1706
+ animation-name: shopeeZoomRightIn;
1707
+ animation-play-state: running; }
1708
+
1709
+ .shopee-react-zoom-right-leave.shopee-react-zoom-right-leave-active {
1710
+ animation-name: shopeeZoomRightOut;
1711
+ animation-play-state: running;
1712
+ pointer-events: none; }
1713
+
1714
+ .shopee-react-zoom-right-enter,
1715
+ .shopee-react-zoom-right-appear {
1716
+ transform: scale(0);
1717
+ opacity: 0;
1718
+ animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1); }
1719
+ .shopee-react-zoom-right-enter-prepare,
1720
+ .shopee-react-zoom-right-appear-prepare {
1721
+ transform: none; }
1722
+
1723
+ .shopee-react-zoom-right-leave {
1724
+ animation-timing-function: cubic-bezier(0.78, 0.14, 0.15, 0.86); }
1725
+
1726
+ @keyframes shopeeZoomIn {
1727
+ 0% {
1728
+ transform: scale(0.2);
1729
+ opacity: 0; }
1730
+ 100% {
1731
+ transform: scale(1);
1732
+ opacity: 1; } }
1733
+
1734
+ @keyframes shopeeZoomOut {
1735
+ 0% {
1736
+ transform: scale(1); }
1737
+ 100% {
1738
+ transform: scale(0.2);
1739
+ opacity: 0; } }
1740
+
1741
+ @keyframes shopeeZoomBigIn {
1742
+ 0% {
1743
+ transform: scale(0.8);
1744
+ opacity: 0; }
1745
+ 100% {
1746
+ transform: scale(1);
1747
+ opacity: 1; } }
1748
+
1749
+ @keyframes shopeeZoomBigOut {
1750
+ 0% {
1751
+ transform: scale(1); }
1752
+ 100% {
1753
+ transform: scale(0.8);
1754
+ opacity: 0; } }
1755
+
1756
+ @keyframes shopeeZoomUpIn {
1757
+ 0% {
1758
+ transform: scale(0.8);
1759
+ transform-origin: 50% 0%;
1760
+ opacity: 0; }
1761
+ 100% {
1762
+ transform: scale(1);
1763
+ transform-origin: 50% 0%; } }
1764
+
1765
+ @keyframes shopeeZoomUpOut {
1766
+ 0% {
1767
+ transform: scale(1);
1768
+ transform-origin: 50% 0%; }
1769
+ 100% {
1770
+ transform: scale(0.8);
1771
+ transform-origin: 50% 0%;
1772
+ opacity: 0; } }
1773
+
1774
+ @keyframes shopeeZoomLeftIn {
1775
+ 0% {
1776
+ transform: scale(0.8);
1777
+ transform-origin: 0% 50%;
1778
+ opacity: 0; }
1779
+ 100% {
1780
+ transform: scale(1);
1781
+ transform-origin: 0% 50%; } }
1782
+
1783
+ @keyframes shopeeZoomLeftOut {
1784
+ 0% {
1785
+ transform: scale(1);
1786
+ transform-origin: 0% 50%; }
1787
+ 100% {
1788
+ transform: scale(0.8);
1789
+ transform-origin: 0% 50%;
1790
+ opacity: 0; } }
1791
+
1792
+ @keyframes shopeeZoomRightIn {
1793
+ 0% {
1794
+ transform: scale(0.8);
1795
+ transform-origin: 100% 50%;
1796
+ opacity: 0; }
1797
+ 100% {
1798
+ transform: scale(1);
1799
+ transform-origin: 100% 50%; } }
1800
+
1801
+ @keyframes shopeeZoomRightOut {
1802
+ 0% {
1803
+ transform: scale(1);
1804
+ transform-origin: 100% 50%; }
1805
+ 100% {
1806
+ transform: scale(0.8);
1807
+ transform-origin: 100% 50%;
1808
+ opacity: 0; } }
1809
+
1810
+ @keyframes shopeeZoomDownIn {
1811
+ 0% {
1812
+ transform: scale(0.8);
1813
+ transform-origin: 50% 100%;
1814
+ opacity: 0; }
1815
+ 100% {
1816
+ transform: scale(1);
1817
+ transform-origin: 50% 100%; } }
1818
+
1819
+ @keyframes shopeeZoomDownOut {
1820
+ 0% {
1821
+ transform: scale(1);
1822
+ transform-origin: 50% 100%; }
1823
+ 100% {
1824
+ transform: scale(0.8);
1825
+ transform-origin: 50% 100%;
1826
+ opacity: 0; } }
1827
+
1828
+ .shopee-react-cascader {
1829
+ display: inline-block;
1830
+ width: 240px; }
1831
+ .shopee-react-cascader-popper,
1832
+ .shopee-react-cascader-multiple-popover-container .shopee-react-popover-inner-content {
1833
+ padding: 0;
1834
+ white-space: nowrap; }
1835
+ .shopee-react-cascader.is-show .shopee-react-selector .shopee-react-selector__suffix-icon {
1836
+ transform: rotate(180deg); }
1837
+
1838
+ /** text **/
1839
+ /** z-index **/
1840
+ /** fill **/
1841
+ /** boder **/
1842
+ .move-up-enter,
1843
+ .move-up-appear {
1844
+ animation-duration: 0.2s;
1845
+ animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
1846
+ animation-fill-mode: both;
1847
+ animation-play-state: paused; }
1848
+
1849
+ .move-up-leave {
1850
+ animation-duration: 0.2s;
1851
+ animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
1852
+ animation-fill-mode: both;
1853
+ animation-play-state: paused; }
1854
+
1855
+ .move-up-enter.move-up-enter-active,
1856
+ .move-up-appear.move-up-appear-active {
1857
+ animation-name: shopeeMoveUpIn;
1858
+ animation-play-state: running; }
1859
+
1860
+ .move-up-leave.move-up-leave-active {
1861
+ animation-name: shopeeMoveUpOut;
1862
+ animation-play-state: running;
1863
+ pointer-events: none; }
1864
+
1865
+ .move-up-enter,
1866
+ .move-up-appear {
1867
+ opacity: 0;
1868
+ animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1); }
1869
+
1870
+ .move-up-leave {
1871
+ animation-timing-function: cubic-bezier(0.6, 0.04, 0.98, 0.34); }
1872
+
1873
+ .move-down-enter,
1874
+ .move-down-appear {
1875
+ animation-duration: 0.2s;
1876
+ animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
1877
+ animation-fill-mode: both;
1878
+ animation-play-state: paused; }
1879
+
1880
+ .move-down-leave {
1881
+ animation-duration: 0.2s;
1882
+ animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
1883
+ animation-fill-mode: both;
1884
+ animation-play-state: paused; }
1885
+
1886
+ .move-down-enter.move-down-enter-active,
1887
+ .move-down-appear.move-down-appear-active {
1888
+ animation-name: shopeeMoveDownIn;
1889
+ animation-play-state: running; }
1890
+
1891
+ .move-down-leave.move-down-leave-active {
1892
+ animation-name: shopeeMoveDownOut;
1893
+ animation-play-state: running;
1894
+ pointer-events: none; }
1895
+
1896
+ .move-down-enter,
1897
+ .move-down-appear {
1898
+ opacity: 0;
1899
+ animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1); }
1900
+
1901
+ .move-down-leave {
1902
+ animation-timing-function: cubic-bezier(0.6, 0.04, 0.98, 0.34); }
1903
+
1904
+ .move-left-enter,
1905
+ .move-left-appear {
1906
+ animation-duration: 0.2s;
1907
+ animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
1908
+ animation-fill-mode: both;
1909
+ animation-play-state: paused; }
1910
+
1911
+ .move-left-leave {
1912
+ animation-duration: 0.2s;
1913
+ animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
1914
+ animation-fill-mode: both;
1915
+ animation-play-state: paused; }
1916
+
1917
+ .move-left-enter.move-left-enter-active,
1918
+ .move-left-appear.move-left-appear-active {
1919
+ animation-name: shopeeMoveLeftIn;
1920
+ animation-play-state: running; }
1921
+
1922
+ .move-left-leave.move-left-leave-active {
1923
+ animation-name: shopeeMoveLeftOut;
1924
+ animation-play-state: running;
1925
+ pointer-events: none; }
1926
+
1927
+ .move-left-enter,
1928
+ .move-left-appear {
1929
+ opacity: 0;
1930
+ animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1); }
1931
+
1932
+ .move-left-leave {
1933
+ animation-timing-function: cubic-bezier(0.6, 0.04, 0.98, 0.34); }
1934
+
1935
+ .move-right-enter,
1936
+ .move-right-appear {
1937
+ animation-duration: 0.2s;
1938
+ animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
1939
+ animation-fill-mode: both;
1940
+ animation-play-state: paused; }
1941
+
1942
+ .move-right-leave {
1943
+ animation-duration: 0.2s;
1944
+ animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
1945
+ animation-fill-mode: both;
1946
+ animation-play-state: paused; }
1947
+
1948
+ .move-right-enter.move-right-enter-active,
1949
+ .move-right-appear.move-right-appear-active {
1950
+ animation-name: shopeeMoveRightIn;
1951
+ animation-play-state: running; }
1952
+
1953
+ .move-right-leave.move-right-leave-active {
1954
+ animation-name: shopeeMoveRightOut;
1955
+ animation-play-state: running;
1956
+ pointer-events: none; }
1957
+
1958
+ .move-right-enter,
1959
+ .move-right-appear {
1960
+ opacity: 0;
1961
+ animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1); }
1962
+
1963
+ .move-right-leave {
1964
+ animation-timing-function: cubic-bezier(0.6, 0.04, 0.98, 0.34); }
1965
+
1966
+ @keyframes shopeeMoveDownIn {
1967
+ 0% {
1968
+ transform: translateY(100%);
1969
+ transform-origin: 0 0;
1970
+ opacity: 0; }
1971
+ 100% {
1972
+ transform: translateY(0%);
1973
+ transform-origin: 0 0;
1974
+ opacity: 1; } }
1975
+
1976
+ @keyframes shopeeMoveDownOut {
1977
+ 0% {
1978
+ transform: translateY(0%);
1979
+ transform-origin: 0 0;
1980
+ opacity: 1; }
1981
+ 100% {
1982
+ transform: translateY(100%);
1983
+ transform-origin: 0 0;
1984
+ opacity: 0; } }
1985
+
1986
+ @keyframes shopeeMoveLeftIn {
1987
+ 0% {
1988
+ transform: translateX(-100%);
1989
+ transform-origin: 0 0;
1990
+ opacity: 0; }
1991
+ 100% {
1992
+ transform: translateX(0%);
1993
+ transform-origin: 0 0;
1994
+ opacity: 1; } }
1995
+
1996
+ @keyframes shopeeMoveLeftOut {
1997
+ 0% {
1998
+ transform: translateX(0%);
1999
+ transform-origin: 0 0;
2000
+ opacity: 1; }
2001
+ 100% {
2002
+ transform: translateX(-100%);
2003
+ transform-origin: 0 0;
2004
+ opacity: 0; } }
2005
+
2006
+ @keyframes shopeeMoveRightIn {
2007
+ 0% {
2008
+ transform: translateX(100%);
2009
+ transform-origin: 0 0;
2010
+ opacity: 0; }
2011
+ 100% {
2012
+ transform: translateX(0%);
2013
+ transform-origin: 0 0;
2014
+ opacity: 1; } }
2015
+
2016
+ @keyframes shopeeMoveRightOut {
2017
+ 0% {
2018
+ transform: translateX(0%);
2019
+ transform-origin: 0 0;
2020
+ opacity: 1; }
2021
+ 100% {
2022
+ transform: translateX(100%);
2023
+ transform-origin: 0 0;
2024
+ opacity: 0; } }
2025
+
2026
+ @keyframes shopeeMoveUpIn {
2027
+ 0% {
2028
+ transform: translateY(-100%);
2029
+ transform-origin: 0 0;
2030
+ opacity: 0; }
2031
+ 100% {
2032
+ transform: translateY(0%);
2033
+ transform-origin: 0 0;
2034
+ opacity: 1; } }
2035
+
2036
+ @keyframes shopeeMoveUpOut {
2037
+ 0% {
2038
+ transform: translateY(0%);
2039
+ transform-origin: 0 0;
2040
+ opacity: 1; }
2041
+ 100% {
2042
+ transform: translateY(-100%);
2043
+ transform-origin: 0 0;
2044
+ opacity: 0; } }
2045
+
2046
+ .shopee-react-zoom-enter,
2047
+ .shopee-react-zoom-appear {
2048
+ animation-duration: 0.2s;
2049
+ animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
2050
+ animation-fill-mode: both;
2051
+ animation-play-state: paused; }
2052
+
2053
+ .shopee-react-zoom-leave {
2054
+ animation-duration: 0.2s;
2055
+ animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
2056
+ animation-fill-mode: both;
2057
+ animation-play-state: paused; }
2058
+
2059
+ .shopee-react-zoom-enter.shopee-react-zoom-enter-active,
2060
+ .shopee-react-zoom-appear.shopee-react-zoom-appear-active {
2061
+ animation-name: shopeeZoomIn;
2062
+ animation-play-state: running; }
2063
+
2064
+ .shopee-react-zoom-leave.shopee-react-zoom-leave-active {
2065
+ animation-name: shopeeZoomOut;
2066
+ animation-play-state: running;
2067
+ pointer-events: none; }
2068
+
2069
+ .shopee-react-zoom-enter,
2070
+ .shopee-react-zoom-appear {
2071
+ transform: scale(0);
2072
+ opacity: 0;
2073
+ animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1); }
2074
+ .shopee-react-zoom-enter-prepare,
2075
+ .shopee-react-zoom-appear-prepare {
2076
+ transform: none; }
2077
+
2078
+ .shopee-react-zoom-leave {
2079
+ animation-timing-function: cubic-bezier(0.78, 0.14, 0.15, 0.86); }
2080
+
2081
+ .shopee-react-zoom-big-enter,
2082
+ .shopee-react-zoom-big-appear {
2083
+ animation-duration: 0.2s;
2084
+ animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
2085
+ animation-fill-mode: both;
2086
+ animation-play-state: paused; }
2087
+
2088
+ .shopee-react-zoom-big-leave {
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
+ .shopee-react-zoom-big-enter.shopee-react-zoom-big-enter-active,
2095
+ .shopee-react-zoom-big-appear.shopee-react-zoom-big-appear-active {
2096
+ animation-name: shopeeZoomBigIn;
2097
+ animation-play-state: running; }
2098
+
2099
+ .shopee-react-zoom-big-leave.shopee-react-zoom-big-leave-active {
2100
+ animation-name: shopeeZoomBigOut;
2101
+ animation-play-state: running;
2102
+ pointer-events: none; }
2103
+
2104
+ .shopee-react-zoom-big-enter,
2105
+ .shopee-react-zoom-big-appear {
2106
+ transform: scale(0);
2107
+ opacity: 0;
2108
+ animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1); }
2109
+ .shopee-react-zoom-big-enter-prepare,
2110
+ .shopee-react-zoom-big-appear-prepare {
2111
+ transform: none; }
2112
+
2113
+ .shopee-react-zoom-big-leave {
2114
+ animation-timing-function: cubic-bezier(0.78, 0.14, 0.15, 0.86); }
2115
+
2116
+ .shopee-react-zoom-big-fast-enter,
2117
+ .shopee-react-zoom-big-fast-appear {
2118
+ animation-duration: 0.1s;
2119
+ animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
2120
+ animation-fill-mode: both;
2121
+ animation-play-state: paused; }
2122
+
2123
+ .shopee-react-zoom-big-fast-leave {
2124
+ animation-duration: 0.1s;
2125
+ animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
2126
+ animation-fill-mode: both;
2127
+ animation-play-state: paused; }
2128
+
2129
+ .shopee-react-zoom-big-fast-enter.shopee-react-zoom-big-fast-enter-active,
2130
+ .shopee-react-zoom-big-fast-appear.shopee-react-zoom-big-fast-appear-active {
2131
+ animation-name: shopeeZoomBigIn;
2132
+ animation-play-state: running; }
2133
+
2134
+ .shopee-react-zoom-big-fast-leave.shopee-react-zoom-big-fast-leave-active {
2135
+ animation-name: shopeeZoomBigOut;
2136
+ animation-play-state: running;
2137
+ pointer-events: none; }
2138
+
2139
+ .shopee-react-zoom-big-fast-enter,
2140
+ .shopee-react-zoom-big-fast-appear {
2141
+ transform: scale(0);
2142
+ opacity: 0;
2143
+ animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1); }
2144
+ .shopee-react-zoom-big-fast-enter-prepare,
2145
+ .shopee-react-zoom-big-fast-appear-prepare {
2146
+ transform: none; }
2147
+
2148
+ .shopee-react-zoom-big-fast-leave {
2149
+ animation-timing-function: cubic-bezier(0.78, 0.14, 0.15, 0.86); }
2150
+
2151
+ .shopee-react-zoom-up-enter,
2152
+ .shopee-react-zoom-up-appear {
2153
+ animation-duration: 0.2s;
2154
+ animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
2155
+ animation-fill-mode: both;
2156
+ animation-play-state: paused; }
2157
+
2158
+ .shopee-react-zoom-up-leave {
2159
+ animation-duration: 0.2s;
2160
+ animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
2161
+ animation-fill-mode: both;
2162
+ animation-play-state: paused; }
2163
+
2164
+ .shopee-react-zoom-up-enter.shopee-react-zoom-up-enter-active,
2165
+ .shopee-react-zoom-up-appear.shopee-react-zoom-up-appear-active {
2166
+ animation-name: shopeeZoomUpIn;
2167
+ animation-play-state: running; }
2168
+
2169
+ .shopee-react-zoom-up-leave.shopee-react-zoom-up-leave-active {
2170
+ animation-name: shopeeZoomUpOut;
2171
+ animation-play-state: running;
2172
+ pointer-events: none; }
2173
+
2174
+ .shopee-react-zoom-up-enter,
2175
+ .shopee-react-zoom-up-appear {
2176
+ transform: scale(0);
2177
+ opacity: 0;
2178
+ animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1); }
2179
+ .shopee-react-zoom-up-enter-prepare,
2180
+ .shopee-react-zoom-up-appear-prepare {
2181
+ transform: none; }
2182
+
2183
+ .shopee-react-zoom-up-leave {
2184
+ animation-timing-function: cubic-bezier(0.78, 0.14, 0.15, 0.86); }
2185
+
2186
+ .shopee-react-zoom-down-enter,
2187
+ .shopee-react-zoom-down-appear {
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
+ .shopee-react-zoom-down-leave {
2194
+ animation-duration: 0.2s;
2195
+ animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
2196
+ animation-fill-mode: both;
2197
+ animation-play-state: paused; }
2198
+
2199
+ .shopee-react-zoom-down-enter.shopee-react-zoom-down-enter-active,
2200
+ .shopee-react-zoom-down-appear.shopee-react-zoom-down-appear-active {
2201
+ animation-name: shopeeZoomDownIn;
2202
+ animation-play-state: running; }
2203
+
2204
+ .shopee-react-zoom-down-leave.shopee-react-zoom-down-leave-active {
2205
+ animation-name: shopeeZoomDownOut;
2206
+ animation-play-state: running;
2207
+ pointer-events: none; }
2208
+
2209
+ .shopee-react-zoom-down-enter,
2210
+ .shopee-react-zoom-down-appear {
2211
+ transform: scale(0);
2212
+ opacity: 0;
2213
+ animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1); }
2214
+ .shopee-react-zoom-down-enter-prepare,
2215
+ .shopee-react-zoom-down-appear-prepare {
2216
+ transform: none; }
2217
+
2218
+ .shopee-react-zoom-down-leave {
2219
+ animation-timing-function: cubic-bezier(0.78, 0.14, 0.15, 0.86); }
2220
+
2221
+ .shopee-react-zoom-left-enter,
2222
+ .shopee-react-zoom-left-appear {
2223
+ animation-duration: 0.2s;
2224
+ animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
2225
+ animation-fill-mode: both;
2226
+ animation-play-state: paused; }
2227
+
2228
+ .shopee-react-zoom-left-leave {
2229
+ animation-duration: 0.2s;
2230
+ animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
2231
+ animation-fill-mode: both;
2232
+ animation-play-state: paused; }
2233
+
2234
+ .shopee-react-zoom-left-enter.shopee-react-zoom-left-enter-active,
2235
+ .shopee-react-zoom-left-appear.shopee-react-zoom-left-appear-active {
2236
+ animation-name: shopeeZoomLeftIn;
2237
+ animation-play-state: running; }
2238
+
2239
+ .shopee-react-zoom-left-leave.shopee-react-zoom-left-leave-active {
2240
+ animation-name: shopeeZoomLeftOut;
2241
+ animation-play-state: running;
2242
+ pointer-events: none; }
2243
+
2244
+ .shopee-react-zoom-left-enter,
2245
+ .shopee-react-zoom-left-appear {
2246
+ transform: scale(0);
2247
+ opacity: 0;
2248
+ animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1); }
2249
+ .shopee-react-zoom-left-enter-prepare,
2250
+ .shopee-react-zoom-left-appear-prepare {
2251
+ transform: none; }
2252
+
2253
+ .shopee-react-zoom-left-leave {
2254
+ animation-timing-function: cubic-bezier(0.78, 0.14, 0.15, 0.86); }
2255
+
2256
+ .shopee-react-zoom-right-enter,
2257
+ .shopee-react-zoom-right-appear {
2258
+ animation-duration: 0.2s;
2259
+ animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
2260
+ animation-fill-mode: both;
2261
+ animation-play-state: paused; }
2262
+
2263
+ .shopee-react-zoom-right-leave {
2264
+ animation-duration: 0.2s;
2265
+ animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
2266
+ animation-fill-mode: both;
2267
+ animation-play-state: paused; }
2268
+
2269
+ .shopee-react-zoom-right-enter.shopee-react-zoom-right-enter-active,
2270
+ .shopee-react-zoom-right-appear.shopee-react-zoom-right-appear-active {
2271
+ animation-name: shopeeZoomRightIn;
2272
+ animation-play-state: running; }
2273
+
2274
+ .shopee-react-zoom-right-leave.shopee-react-zoom-right-leave-active {
2275
+ animation-name: shopeeZoomRightOut;
2276
+ animation-play-state: running;
2277
+ pointer-events: none; }
2278
+
2279
+ .shopee-react-zoom-right-enter,
2280
+ .shopee-react-zoom-right-appear {
2281
+ transform: scale(0);
2282
+ opacity: 0;
2283
+ animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1); }
2284
+ .shopee-react-zoom-right-enter-prepare,
2285
+ .shopee-react-zoom-right-appear-prepare {
2286
+ transform: none; }
2287
+
2288
+ .shopee-react-zoom-right-leave {
2289
+ animation-timing-function: cubic-bezier(0.78, 0.14, 0.15, 0.86); }
2290
+
2291
+ @keyframes shopeeZoomIn {
2292
+ 0% {
2293
+ transform: scale(0.2);
2294
+ opacity: 0; }
2295
+ 100% {
2296
+ transform: scale(1);
2297
+ opacity: 1; } }
2298
+
2299
+ @keyframes shopeeZoomOut {
2300
+ 0% {
2301
+ transform: scale(1); }
2302
+ 100% {
2303
+ transform: scale(0.2);
2304
+ opacity: 0; } }
2305
+
2306
+ @keyframes shopeeZoomBigIn {
2307
+ 0% {
2308
+ transform: scale(0.8);
2309
+ opacity: 0; }
2310
+ 100% {
2311
+ transform: scale(1);
2312
+ opacity: 1; } }
2313
+
2314
+ @keyframes shopeeZoomBigOut {
2315
+ 0% {
2316
+ transform: scale(1); }
2317
+ 100% {
2318
+ transform: scale(0.8);
2319
+ opacity: 0; } }
2320
+
2321
+ @keyframes shopeeZoomUpIn {
2322
+ 0% {
2323
+ transform: scale(0.8);
2324
+ transform-origin: 50% 0%;
2325
+ opacity: 0; }
2326
+ 100% {
2327
+ transform: scale(1);
2328
+ transform-origin: 50% 0%; } }
2329
+
2330
+ @keyframes shopeeZoomUpOut {
2331
+ 0% {
2332
+ transform: scale(1);
2333
+ transform-origin: 50% 0%; }
2334
+ 100% {
2335
+ transform: scale(0.8);
2336
+ transform-origin: 50% 0%;
2337
+ opacity: 0; } }
2338
+
2339
+ @keyframes shopeeZoomLeftIn {
2340
+ 0% {
2341
+ transform: scale(0.8);
2342
+ transform-origin: 0% 50%;
2343
+ opacity: 0; }
2344
+ 100% {
2345
+ transform: scale(1);
2346
+ transform-origin: 0% 50%; } }
2347
+
2348
+ @keyframes shopeeZoomLeftOut {
2349
+ 0% {
2350
+ transform: scale(1);
2351
+ transform-origin: 0% 50%; }
2352
+ 100% {
2353
+ transform: scale(0.8);
2354
+ transform-origin: 0% 50%;
2355
+ opacity: 0; } }
2356
+
2357
+ @keyframes shopeeZoomRightIn {
2358
+ 0% {
2359
+ transform: scale(0.8);
2360
+ transform-origin: 100% 50%;
2361
+ opacity: 0; }
2362
+ 100% {
2363
+ transform: scale(1);
2364
+ transform-origin: 100% 50%; } }
2365
+
2366
+ @keyframes shopeeZoomRightOut {
2367
+ 0% {
2368
+ transform: scale(1);
2369
+ transform-origin: 100% 50%; }
2370
+ 100% {
2371
+ transform: scale(0.8);
2372
+ transform-origin: 100% 50%;
2373
+ opacity: 0; } }
2374
+
2375
+ @keyframes shopeeZoomDownIn {
2376
+ 0% {
2377
+ transform: scale(0.8);
2378
+ transform-origin: 50% 100%;
2379
+ opacity: 0; }
2380
+ 100% {
2381
+ transform: scale(1);
2382
+ transform-origin: 50% 100%; } }
2383
+
2384
+ @keyframes shopeeZoomDownOut {
2385
+ 0% {
2386
+ transform: scale(1);
2387
+ transform-origin: 50% 100%; }
2388
+ 100% {
2389
+ transform: scale(0.8);
2390
+ transform-origin: 50% 100%;
2391
+ opacity: 0; } }
2392
+
2393
+ .shopee-react-cascader-panel {
2394
+ position: relative;
2395
+ width: 100%;
2396
+ overflow: hidden;
2397
+ white-space: nowrap;
2398
+ border: 1px solid #e5e5e5;
2399
+ border-radius: 4px; }
2400
+ .shopee-react-cascader-panel .arrow {
2401
+ position: absolute;
2402
+ top: 50%;
2403
+ display: flex;
2404
+ align-items: center;
2405
+ justify-content: center;
2406
+ width: 32px;
2407
+ height: 32px;
2408
+ cursor: pointer;
2409
+ background: rgba(0, 0, 0, 0.5);
2410
+ border-radius: 50%;
2411
+ transform: translateY(-50%); }
2412
+ .shopee-react-cascader-panel .arrow.left {
2413
+ left: 8px; }
2414
+ .shopee-react-cascader-panel .arrow.right {
2415
+ right: 8px; }
2416
+ .shopee-react-cascader-panel .arrow:hover, .shopee-react-cascader-panel .arrow:focus {
2417
+ background: rgba(0, 0, 0, 0.6); }
2418
+ .shopee-react-cascader-panel .arrow .shopee-react-icon {
2419
+ font-size: 24px;
2420
+ color: #fff; }
2421
+
2422
+ /** text **/
2423
+ /** z-index **/
2424
+ /** fill **/
2425
+ /** boder **/
2426
+ .move-up-enter,
2427
+ .move-up-appear {
2428
+ animation-duration: 0.2s;
2429
+ animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
2430
+ animation-fill-mode: both;
2431
+ animation-play-state: paused; }
2432
+
2433
+ .move-up-leave {
2434
+ animation-duration: 0.2s;
2435
+ animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
2436
+ animation-fill-mode: both;
2437
+ animation-play-state: paused; }
2438
+
2439
+ .move-up-enter.move-up-enter-active,
2440
+ .move-up-appear.move-up-appear-active {
2441
+ animation-name: shopeeMoveUpIn;
2442
+ animation-play-state: running; }
2443
+
2444
+ .move-up-leave.move-up-leave-active {
2445
+ animation-name: shopeeMoveUpOut;
2446
+ animation-play-state: running;
2447
+ pointer-events: none; }
2448
+
2449
+ .move-up-enter,
2450
+ .move-up-appear {
2451
+ opacity: 0;
2452
+ animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1); }
2453
+
2454
+ .move-up-leave {
2455
+ animation-timing-function: cubic-bezier(0.6, 0.04, 0.98, 0.34); }
2456
+
2457
+ .move-down-enter,
2458
+ .move-down-appear {
2459
+ animation-duration: 0.2s;
2460
+ animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
2461
+ animation-fill-mode: both;
2462
+ animation-play-state: paused; }
2463
+
2464
+ .move-down-leave {
2465
+ animation-duration: 0.2s;
2466
+ animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
2467
+ animation-fill-mode: both;
2468
+ animation-play-state: paused; }
2469
+
2470
+ .move-down-enter.move-down-enter-active,
2471
+ .move-down-appear.move-down-appear-active {
2472
+ animation-name: shopeeMoveDownIn;
2473
+ animation-play-state: running; }
2474
+
2475
+ .move-down-leave.move-down-leave-active {
2476
+ animation-name: shopeeMoveDownOut;
2477
+ animation-play-state: running;
2478
+ pointer-events: none; }
2479
+
2480
+ .move-down-enter,
2481
+ .move-down-appear {
2482
+ opacity: 0;
2483
+ animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1); }
2484
+
2485
+ .move-down-leave {
2486
+ animation-timing-function: cubic-bezier(0.6, 0.04, 0.98, 0.34); }
2487
+
2488
+ .move-left-enter,
2489
+ .move-left-appear {
2490
+ animation-duration: 0.2s;
2491
+ animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
2492
+ animation-fill-mode: both;
2493
+ animation-play-state: paused; }
2494
+
2495
+ .move-left-leave {
2496
+ animation-duration: 0.2s;
2497
+ animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
2498
+ animation-fill-mode: both;
2499
+ animation-play-state: paused; }
2500
+
2501
+ .move-left-enter.move-left-enter-active,
2502
+ .move-left-appear.move-left-appear-active {
2503
+ animation-name: shopeeMoveLeftIn;
2504
+ animation-play-state: running; }
2505
+
2506
+ .move-left-leave.move-left-leave-active {
2507
+ animation-name: shopeeMoveLeftOut;
2508
+ animation-play-state: running;
2509
+ pointer-events: none; }
2510
+
2511
+ .move-left-enter,
2512
+ .move-left-appear {
2513
+ opacity: 0;
2514
+ animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1); }
2515
+
2516
+ .move-left-leave {
2517
+ animation-timing-function: cubic-bezier(0.6, 0.04, 0.98, 0.34); }
2518
+
2519
+ .move-right-enter,
2520
+ .move-right-appear {
2521
+ animation-duration: 0.2s;
2522
+ animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
2523
+ animation-fill-mode: both;
2524
+ animation-play-state: paused; }
2525
+
2526
+ .move-right-leave {
2527
+ animation-duration: 0.2s;
2528
+ animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
2529
+ animation-fill-mode: both;
2530
+ animation-play-state: paused; }
2531
+
2532
+ .move-right-enter.move-right-enter-active,
2533
+ .move-right-appear.move-right-appear-active {
2534
+ animation-name: shopeeMoveRightIn;
2535
+ animation-play-state: running; }
2536
+
2537
+ .move-right-leave.move-right-leave-active {
2538
+ animation-name: shopeeMoveRightOut;
2539
+ animation-play-state: running;
2540
+ pointer-events: none; }
2541
+
2542
+ .move-right-enter,
2543
+ .move-right-appear {
2544
+ opacity: 0;
2545
+ animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1); }
2546
+
2547
+ .move-right-leave {
2548
+ animation-timing-function: cubic-bezier(0.6, 0.04, 0.98, 0.34); }
2549
+
2550
+ @keyframes shopeeMoveDownIn {
2551
+ 0% {
2552
+ transform: translateY(100%);
2553
+ transform-origin: 0 0;
2554
+ opacity: 0; }
2555
+ 100% {
2556
+ transform: translateY(0%);
2557
+ transform-origin: 0 0;
2558
+ opacity: 1; } }
2559
+
2560
+ @keyframes shopeeMoveDownOut {
2561
+ 0% {
2562
+ transform: translateY(0%);
2563
+ transform-origin: 0 0;
2564
+ opacity: 1; }
2565
+ 100% {
2566
+ transform: translateY(100%);
2567
+ transform-origin: 0 0;
2568
+ opacity: 0; } }
2569
+
2570
+ @keyframes shopeeMoveLeftIn {
2571
+ 0% {
2572
+ transform: translateX(-100%);
2573
+ transform-origin: 0 0;
2574
+ opacity: 0; }
2575
+ 100% {
2576
+ transform: translateX(0%);
2577
+ transform-origin: 0 0;
2578
+ opacity: 1; } }
2579
+
2580
+ @keyframes shopeeMoveLeftOut {
2581
+ 0% {
2582
+ transform: translateX(0%);
2583
+ transform-origin: 0 0;
2584
+ opacity: 1; }
2585
+ 100% {
2586
+ transform: translateX(-100%);
2587
+ transform-origin: 0 0;
2588
+ opacity: 0; } }
2589
+
2590
+ @keyframes shopeeMoveRightIn {
2591
+ 0% {
2592
+ transform: translateX(100%);
2593
+ transform-origin: 0 0;
2594
+ opacity: 0; }
2595
+ 100% {
2596
+ transform: translateX(0%);
2597
+ transform-origin: 0 0;
2598
+ opacity: 1; } }
2599
+
2600
+ @keyframes shopeeMoveRightOut {
2601
+ 0% {
2602
+ transform: translateX(0%);
2603
+ transform-origin: 0 0;
2604
+ opacity: 1; }
2605
+ 100% {
2606
+ transform: translateX(100%);
2607
+ transform-origin: 0 0;
2608
+ opacity: 0; } }
2609
+
2610
+ @keyframes shopeeMoveUpIn {
2611
+ 0% {
2612
+ transform: translateY(-100%);
2613
+ transform-origin: 0 0;
2614
+ opacity: 0; }
2615
+ 100% {
2616
+ transform: translateY(0%);
2617
+ transform-origin: 0 0;
2618
+ opacity: 1; } }
2619
+
2620
+ @keyframes shopeeMoveUpOut {
2621
+ 0% {
2622
+ transform: translateY(0%);
2623
+ transform-origin: 0 0;
2624
+ opacity: 1; }
2625
+ 100% {
2626
+ transform: translateY(-100%);
2627
+ transform-origin: 0 0;
2628
+ opacity: 0; } }
2629
+
2630
+ .shopee-react-zoom-enter,
2631
+ .shopee-react-zoom-appear {
2632
+ animation-duration: 0.2s;
2633
+ animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
2634
+ animation-fill-mode: both;
2635
+ animation-play-state: paused; }
2636
+
2637
+ .shopee-react-zoom-leave {
2638
+ animation-duration: 0.2s;
2639
+ animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
2640
+ animation-fill-mode: both;
2641
+ animation-play-state: paused; }
2642
+
2643
+ .shopee-react-zoom-enter.shopee-react-zoom-enter-active,
2644
+ .shopee-react-zoom-appear.shopee-react-zoom-appear-active {
2645
+ animation-name: shopeeZoomIn;
2646
+ animation-play-state: running; }
2647
+
2648
+ .shopee-react-zoom-leave.shopee-react-zoom-leave-active {
2649
+ animation-name: shopeeZoomOut;
2650
+ animation-play-state: running;
2651
+ pointer-events: none; }
2652
+
2653
+ .shopee-react-zoom-enter,
2654
+ .shopee-react-zoom-appear {
2655
+ transform: scale(0);
2656
+ opacity: 0;
2657
+ animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1); }
2658
+ .shopee-react-zoom-enter-prepare,
2659
+ .shopee-react-zoom-appear-prepare {
2660
+ transform: none; }
2661
+
2662
+ .shopee-react-zoom-leave {
2663
+ animation-timing-function: cubic-bezier(0.78, 0.14, 0.15, 0.86); }
2664
+
2665
+ .shopee-react-zoom-big-enter,
2666
+ .shopee-react-zoom-big-appear {
2667
+ animation-duration: 0.2s;
2668
+ animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
2669
+ animation-fill-mode: both;
2670
+ animation-play-state: paused; }
2671
+
2672
+ .shopee-react-zoom-big-leave {
2673
+ animation-duration: 0.2s;
2674
+ animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
2675
+ animation-fill-mode: both;
2676
+ animation-play-state: paused; }
2677
+
2678
+ .shopee-react-zoom-big-enter.shopee-react-zoom-big-enter-active,
2679
+ .shopee-react-zoom-big-appear.shopee-react-zoom-big-appear-active {
2680
+ animation-name: shopeeZoomBigIn;
2681
+ animation-play-state: running; }
2682
+
2683
+ .shopee-react-zoom-big-leave.shopee-react-zoom-big-leave-active {
2684
+ animation-name: shopeeZoomBigOut;
2685
+ animation-play-state: running;
2686
+ pointer-events: none; }
2687
+
2688
+ .shopee-react-zoom-big-enter,
2689
+ .shopee-react-zoom-big-appear {
2690
+ transform: scale(0);
2691
+ opacity: 0;
2692
+ animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1); }
2693
+ .shopee-react-zoom-big-enter-prepare,
2694
+ .shopee-react-zoom-big-appear-prepare {
2695
+ transform: none; }
2696
+
2697
+ .shopee-react-zoom-big-leave {
2698
+ animation-timing-function: cubic-bezier(0.78, 0.14, 0.15, 0.86); }
2699
+
2700
+ .shopee-react-zoom-big-fast-enter,
2701
+ .shopee-react-zoom-big-fast-appear {
2702
+ animation-duration: 0.1s;
2703
+ animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
2704
+ animation-fill-mode: both;
2705
+ animation-play-state: paused; }
2706
+
2707
+ .shopee-react-zoom-big-fast-leave {
2708
+ animation-duration: 0.1s;
2709
+ animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
2710
+ animation-fill-mode: both;
2711
+ animation-play-state: paused; }
2712
+
2713
+ .shopee-react-zoom-big-fast-enter.shopee-react-zoom-big-fast-enter-active,
2714
+ .shopee-react-zoom-big-fast-appear.shopee-react-zoom-big-fast-appear-active {
2715
+ animation-name: shopeeZoomBigIn;
2716
+ animation-play-state: running; }
2717
+
2718
+ .shopee-react-zoom-big-fast-leave.shopee-react-zoom-big-fast-leave-active {
2719
+ animation-name: shopeeZoomBigOut;
2720
+ animation-play-state: running;
2721
+ pointer-events: none; }
2722
+
2723
+ .shopee-react-zoom-big-fast-enter,
2724
+ .shopee-react-zoom-big-fast-appear {
2725
+ transform: scale(0);
2726
+ opacity: 0;
2727
+ animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1); }
2728
+ .shopee-react-zoom-big-fast-enter-prepare,
2729
+ .shopee-react-zoom-big-fast-appear-prepare {
2730
+ transform: none; }
2731
+
2732
+ .shopee-react-zoom-big-fast-leave {
2733
+ animation-timing-function: cubic-bezier(0.78, 0.14, 0.15, 0.86); }
2734
+
2735
+ .shopee-react-zoom-up-enter,
2736
+ .shopee-react-zoom-up-appear {
2737
+ animation-duration: 0.2s;
2738
+ animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
2739
+ animation-fill-mode: both;
2740
+ animation-play-state: paused; }
2741
+
2742
+ .shopee-react-zoom-up-leave {
2743
+ animation-duration: 0.2s;
2744
+ animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
2745
+ animation-fill-mode: both;
2746
+ animation-play-state: paused; }
2747
+
2748
+ .shopee-react-zoom-up-enter.shopee-react-zoom-up-enter-active,
2749
+ .shopee-react-zoom-up-appear.shopee-react-zoom-up-appear-active {
2750
+ animation-name: shopeeZoomUpIn;
2751
+ animation-play-state: running; }
2752
+
2753
+ .shopee-react-zoom-up-leave.shopee-react-zoom-up-leave-active {
2754
+ animation-name: shopeeZoomUpOut;
2755
+ animation-play-state: running;
2756
+ pointer-events: none; }
2757
+
2758
+ .shopee-react-zoom-up-enter,
2759
+ .shopee-react-zoom-up-appear {
2760
+ transform: scale(0);
2761
+ opacity: 0;
2762
+ animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1); }
2763
+ .shopee-react-zoom-up-enter-prepare,
2764
+ .shopee-react-zoom-up-appear-prepare {
2765
+ transform: none; }
2766
+
2767
+ .shopee-react-zoom-up-leave {
2768
+ animation-timing-function: cubic-bezier(0.78, 0.14, 0.15, 0.86); }
2769
+
2770
+ .shopee-react-zoom-down-enter,
2771
+ .shopee-react-zoom-down-appear {
2772
+ animation-duration: 0.2s;
2773
+ animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
2774
+ animation-fill-mode: both;
2775
+ animation-play-state: paused; }
2776
+
2777
+ .shopee-react-zoom-down-leave {
2778
+ animation-duration: 0.2s;
2779
+ animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
2780
+ animation-fill-mode: both;
2781
+ animation-play-state: paused; }
2782
+
2783
+ .shopee-react-zoom-down-enter.shopee-react-zoom-down-enter-active,
2784
+ .shopee-react-zoom-down-appear.shopee-react-zoom-down-appear-active {
2785
+ animation-name: shopeeZoomDownIn;
2786
+ animation-play-state: running; }
2787
+
2788
+ .shopee-react-zoom-down-leave.shopee-react-zoom-down-leave-active {
2789
+ animation-name: shopeeZoomDownOut;
2790
+ animation-play-state: running;
2791
+ pointer-events: none; }
2792
+
2793
+ .shopee-react-zoom-down-enter,
2794
+ .shopee-react-zoom-down-appear {
2795
+ transform: scale(0);
2796
+ opacity: 0;
2797
+ animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1); }
2798
+ .shopee-react-zoom-down-enter-prepare,
2799
+ .shopee-react-zoom-down-appear-prepare {
2800
+ transform: none; }
2801
+
2802
+ .shopee-react-zoom-down-leave {
2803
+ animation-timing-function: cubic-bezier(0.78, 0.14, 0.15, 0.86); }
2804
+
2805
+ .shopee-react-zoom-left-enter,
2806
+ .shopee-react-zoom-left-appear {
2807
+ animation-duration: 0.2s;
2808
+ animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
2809
+ animation-fill-mode: both;
2810
+ animation-play-state: paused; }
2811
+
2812
+ .shopee-react-zoom-left-leave {
2813
+ animation-duration: 0.2s;
2814
+ animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
2815
+ animation-fill-mode: both;
2816
+ animation-play-state: paused; }
2817
+
2818
+ .shopee-react-zoom-left-enter.shopee-react-zoom-left-enter-active,
2819
+ .shopee-react-zoom-left-appear.shopee-react-zoom-left-appear-active {
2820
+ animation-name: shopeeZoomLeftIn;
2821
+ animation-play-state: running; }
2822
+
2823
+ .shopee-react-zoom-left-leave.shopee-react-zoom-left-leave-active {
2824
+ animation-name: shopeeZoomLeftOut;
2825
+ animation-play-state: running;
2826
+ pointer-events: none; }
2827
+
2828
+ .shopee-react-zoom-left-enter,
2829
+ .shopee-react-zoom-left-appear {
2830
+ transform: scale(0);
2831
+ opacity: 0;
2832
+ animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1); }
2833
+ .shopee-react-zoom-left-enter-prepare,
2834
+ .shopee-react-zoom-left-appear-prepare {
2835
+ transform: none; }
2836
+
2837
+ .shopee-react-zoom-left-leave {
2838
+ animation-timing-function: cubic-bezier(0.78, 0.14, 0.15, 0.86); }
2839
+
2840
+ .shopee-react-zoom-right-enter,
2841
+ .shopee-react-zoom-right-appear {
2842
+ animation-duration: 0.2s;
2843
+ animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
2844
+ animation-fill-mode: both;
2845
+ animation-play-state: paused; }
2846
+
2847
+ .shopee-react-zoom-right-leave {
2848
+ animation-duration: 0.2s;
2849
+ animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
2850
+ animation-fill-mode: both;
2851
+ animation-play-state: paused; }
2852
+
2853
+ .shopee-react-zoom-right-enter.shopee-react-zoom-right-enter-active,
2854
+ .shopee-react-zoom-right-appear.shopee-react-zoom-right-appear-active {
2855
+ animation-name: shopeeZoomRightIn;
2856
+ animation-play-state: running; }
2857
+
2858
+ .shopee-react-zoom-right-leave.shopee-react-zoom-right-leave-active {
2859
+ animation-name: shopeeZoomRightOut;
2860
+ animation-play-state: running;
2861
+ pointer-events: none; }
2862
+
2863
+ .shopee-react-zoom-right-enter,
2864
+ .shopee-react-zoom-right-appear {
2865
+ transform: scale(0);
2866
+ opacity: 0;
2867
+ animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1); }
2868
+ .shopee-react-zoom-right-enter-prepare,
2869
+ .shopee-react-zoom-right-appear-prepare {
2870
+ transform: none; }
2871
+
2872
+ .shopee-react-zoom-right-leave {
2873
+ animation-timing-function: cubic-bezier(0.78, 0.14, 0.15, 0.86); }
2874
+
2875
+ @keyframes shopeeZoomIn {
2876
+ 0% {
2877
+ transform: scale(0.2);
2878
+ opacity: 0; }
2879
+ 100% {
2880
+ transform: scale(1);
2881
+ opacity: 1; } }
2882
+
2883
+ @keyframes shopeeZoomOut {
2884
+ 0% {
2885
+ transform: scale(1); }
2886
+ 100% {
2887
+ transform: scale(0.2);
2888
+ opacity: 0; } }
2889
+
2890
+ @keyframes shopeeZoomBigIn {
2891
+ 0% {
2892
+ transform: scale(0.8);
2893
+ opacity: 0; }
2894
+ 100% {
2895
+ transform: scale(1);
2896
+ opacity: 1; } }
2897
+
2898
+ @keyframes shopeeZoomBigOut {
2899
+ 0% {
2900
+ transform: scale(1); }
2901
+ 100% {
2902
+ transform: scale(0.8);
2903
+ opacity: 0; } }
2904
+
2905
+ @keyframes shopeeZoomUpIn {
2906
+ 0% {
2907
+ transform: scale(0.8);
2908
+ transform-origin: 50% 0%;
2909
+ opacity: 0; }
2910
+ 100% {
2911
+ transform: scale(1);
2912
+ transform-origin: 50% 0%; } }
2913
+
2914
+ @keyframes shopeeZoomUpOut {
2915
+ 0% {
2916
+ transform: scale(1);
2917
+ transform-origin: 50% 0%; }
2918
+ 100% {
2919
+ transform: scale(0.8);
2920
+ transform-origin: 50% 0%;
2921
+ opacity: 0; } }
2922
+
2923
+ @keyframes shopeeZoomLeftIn {
2924
+ 0% {
2925
+ transform: scale(0.8);
2926
+ transform-origin: 0% 50%;
2927
+ opacity: 0; }
2928
+ 100% {
2929
+ transform: scale(1);
2930
+ transform-origin: 0% 50%; } }
2931
+
2932
+ @keyframes shopeeZoomLeftOut {
2933
+ 0% {
2934
+ transform: scale(1);
2935
+ transform-origin: 0% 50%; }
2936
+ 100% {
2937
+ transform: scale(0.8);
2938
+ transform-origin: 0% 50%;
2939
+ opacity: 0; } }
2940
+
2941
+ @keyframes shopeeZoomRightIn {
2942
+ 0% {
2943
+ transform: scale(0.8);
2944
+ transform-origin: 100% 50%;
2945
+ opacity: 0; }
2946
+ 100% {
2947
+ transform: scale(1);
2948
+ transform-origin: 100% 50%; } }
2949
+
2950
+ @keyframes shopeeZoomRightOut {
2951
+ 0% {
2952
+ transform: scale(1);
2953
+ transform-origin: 100% 50%; }
2954
+ 100% {
2955
+ transform: scale(0.8);
2956
+ transform-origin: 100% 50%;
2957
+ opacity: 0; } }
2958
+
2959
+ @keyframes shopeeZoomDownIn {
2960
+ 0% {
2961
+ transform: scale(0.8);
2962
+ transform-origin: 50% 100%;
2963
+ opacity: 0; }
2964
+ 100% {
2965
+ transform: scale(1);
2966
+ transform-origin: 50% 100%; } }
2967
+
2968
+ @keyframes shopeeZoomDownOut {
2969
+ 0% {
2970
+ transform: scale(1);
2971
+ transform-origin: 50% 100%; }
2972
+ 100% {
2973
+ transform: scale(0.8);
2974
+ transform-origin: 50% 100%;
2975
+ opacity: 0; } }
2976
+
2977
+ .shopee-react-cascader-filter-panel {
2978
+ width: 100%;
2979
+ padding: 0 12px;
2980
+ color: #333;
2981
+ font-size: 14px;
2982
+ overflow: auto; }
2983
+ .shopee-react-cascader-filter-panel__item {
2984
+ display: flex;
2985
+ align-items: center;
2986
+ line-height: 18px;
2987
+ padding: 7px 0; }
2988
+ .shopee-react-cascader-filter-panel__item.disabled {
2989
+ cursor: not-allowed;
2990
+ opacity: .5; }
2991
+ .shopee-react-cascader-filter-panel__item-label {
2992
+ margin-left: 8px;
2993
+ cursor: pointer; }
2994
+ .shopee-react-cascader-filter-panel__item-label-selected {
2995
+ color: #ee4d2d; }
2996
+ .shopee-react-cascader-filter-panel__item-label-hitted {
2997
+ color: #ee4d2d; }
2998
+ .shopee-react-cascader-filter-panel__item:hover {
2999
+ color: #333;
3000
+ background-color: rgba(0, 0, 0, 0.04); }
3001
+ .shopee-react-cascader-filter-panel__empty {
3002
+ line-height: 18px;
3003
+ color: #999;
3004
+ text-align: center;
3005
+ padding: 8px 0; }
3006
+
3007
+ /** text **/
3008
+ /** z-index **/
3009
+ /** fill **/
3010
+ /** boder **/
3011
+ .move-up-enter,
3012
+ .move-up-appear {
3013
+ animation-duration: 0.2s;
3014
+ animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
3015
+ animation-fill-mode: both;
3016
+ animation-play-state: paused; }
3017
+
3018
+ .move-up-leave {
3019
+ animation-duration: 0.2s;
3020
+ animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
3021
+ animation-fill-mode: both;
3022
+ animation-play-state: paused; }
3023
+
3024
+ .move-up-enter.move-up-enter-active,
3025
+ .move-up-appear.move-up-appear-active {
3026
+ animation-name: shopeeMoveUpIn;
3027
+ animation-play-state: running; }
3028
+
3029
+ .move-up-leave.move-up-leave-active {
3030
+ animation-name: shopeeMoveUpOut;
3031
+ animation-play-state: running;
3032
+ pointer-events: none; }
3033
+
3034
+ .move-up-enter,
3035
+ .move-up-appear {
3036
+ opacity: 0;
3037
+ animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1); }
3038
+
3039
+ .move-up-leave {
3040
+ animation-timing-function: cubic-bezier(0.6, 0.04, 0.98, 0.34); }
3041
+
3042
+ .move-down-enter,
3043
+ .move-down-appear {
3044
+ animation-duration: 0.2s;
3045
+ animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
3046
+ animation-fill-mode: both;
3047
+ animation-play-state: paused; }
3048
+
3049
+ .move-down-leave {
3050
+ animation-duration: 0.2s;
3051
+ animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
3052
+ animation-fill-mode: both;
3053
+ animation-play-state: paused; }
3054
+
3055
+ .move-down-enter.move-down-enter-active,
3056
+ .move-down-appear.move-down-appear-active {
3057
+ animation-name: shopeeMoveDownIn;
3058
+ animation-play-state: running; }
3059
+
3060
+ .move-down-leave.move-down-leave-active {
3061
+ animation-name: shopeeMoveDownOut;
3062
+ animation-play-state: running;
3063
+ pointer-events: none; }
3064
+
3065
+ .move-down-enter,
3066
+ .move-down-appear {
3067
+ opacity: 0;
3068
+ animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1); }
3069
+
3070
+ .move-down-leave {
3071
+ animation-timing-function: cubic-bezier(0.6, 0.04, 0.98, 0.34); }
3072
+
3073
+ .move-left-enter,
3074
+ .move-left-appear {
3075
+ animation-duration: 0.2s;
3076
+ animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
3077
+ animation-fill-mode: both;
3078
+ animation-play-state: paused; }
3079
+
3080
+ .move-left-leave {
3081
+ animation-duration: 0.2s;
3082
+ animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
3083
+ animation-fill-mode: both;
3084
+ animation-play-state: paused; }
3085
+
3086
+ .move-left-enter.move-left-enter-active,
3087
+ .move-left-appear.move-left-appear-active {
3088
+ animation-name: shopeeMoveLeftIn;
3089
+ animation-play-state: running; }
3090
+
3091
+ .move-left-leave.move-left-leave-active {
3092
+ animation-name: shopeeMoveLeftOut;
3093
+ animation-play-state: running;
3094
+ pointer-events: none; }
3095
+
3096
+ .move-left-enter,
3097
+ .move-left-appear {
3098
+ opacity: 0;
3099
+ animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1); }
3100
+
3101
+ .move-left-leave {
3102
+ animation-timing-function: cubic-bezier(0.6, 0.04, 0.98, 0.34); }
3103
+
3104
+ .move-right-enter,
3105
+ .move-right-appear {
3106
+ animation-duration: 0.2s;
3107
+ animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
3108
+ animation-fill-mode: both;
3109
+ animation-play-state: paused; }
3110
+
3111
+ .move-right-leave {
3112
+ animation-duration: 0.2s;
3113
+ animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
3114
+ animation-fill-mode: both;
3115
+ animation-play-state: paused; }
3116
+
3117
+ .move-right-enter.move-right-enter-active,
3118
+ .move-right-appear.move-right-appear-active {
3119
+ animation-name: shopeeMoveRightIn;
3120
+ animation-play-state: running; }
3121
+
3122
+ .move-right-leave.move-right-leave-active {
3123
+ animation-name: shopeeMoveRightOut;
3124
+ animation-play-state: running;
3125
+ pointer-events: none; }
3126
+
3127
+ .move-right-enter,
3128
+ .move-right-appear {
3129
+ opacity: 0;
3130
+ animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1); }
3131
+
3132
+ .move-right-leave {
3133
+ animation-timing-function: cubic-bezier(0.6, 0.04, 0.98, 0.34); }
3134
+
3135
+ @keyframes shopeeMoveDownIn {
3136
+ 0% {
3137
+ transform: translateY(100%);
3138
+ transform-origin: 0 0;
3139
+ opacity: 0; }
3140
+ 100% {
3141
+ transform: translateY(0%);
3142
+ transform-origin: 0 0;
3143
+ opacity: 1; } }
3144
+
3145
+ @keyframes shopeeMoveDownOut {
3146
+ 0% {
3147
+ transform: translateY(0%);
3148
+ transform-origin: 0 0;
3149
+ opacity: 1; }
3150
+ 100% {
3151
+ transform: translateY(100%);
3152
+ transform-origin: 0 0;
3153
+ opacity: 0; } }
3154
+
3155
+ @keyframes shopeeMoveLeftIn {
3156
+ 0% {
3157
+ transform: translateX(-100%);
3158
+ transform-origin: 0 0;
3159
+ opacity: 0; }
3160
+ 100% {
3161
+ transform: translateX(0%);
3162
+ transform-origin: 0 0;
3163
+ opacity: 1; } }
3164
+
3165
+ @keyframes shopeeMoveLeftOut {
3166
+ 0% {
3167
+ transform: translateX(0%);
3168
+ transform-origin: 0 0;
3169
+ opacity: 1; }
3170
+ 100% {
3171
+ transform: translateX(-100%);
3172
+ transform-origin: 0 0;
3173
+ opacity: 0; } }
3174
+
3175
+ @keyframes shopeeMoveRightIn {
3176
+ 0% {
3177
+ transform: translateX(100%);
3178
+ transform-origin: 0 0;
3179
+ opacity: 0; }
3180
+ 100% {
3181
+ transform: translateX(0%);
3182
+ transform-origin: 0 0;
3183
+ opacity: 1; } }
3184
+
3185
+ @keyframes shopeeMoveRightOut {
3186
+ 0% {
3187
+ transform: translateX(0%);
3188
+ transform-origin: 0 0;
3189
+ opacity: 1; }
3190
+ 100% {
3191
+ transform: translateX(100%);
3192
+ transform-origin: 0 0;
3193
+ opacity: 0; } }
3194
+
3195
+ @keyframes shopeeMoveUpIn {
3196
+ 0% {
3197
+ transform: translateY(-100%);
3198
+ transform-origin: 0 0;
3199
+ opacity: 0; }
3200
+ 100% {
3201
+ transform: translateY(0%);
3202
+ transform-origin: 0 0;
3203
+ opacity: 1; } }
3204
+
3205
+ @keyframes shopeeMoveUpOut {
3206
+ 0% {
3207
+ transform: translateY(0%);
3208
+ transform-origin: 0 0;
3209
+ opacity: 1; }
3210
+ 100% {
3211
+ transform: translateY(-100%);
3212
+ transform-origin: 0 0;
3213
+ opacity: 0; } }
3214
+
3215
+ .shopee-react-zoom-enter,
3216
+ .shopee-react-zoom-appear {
3217
+ animation-duration: 0.2s;
3218
+ animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
3219
+ animation-fill-mode: both;
3220
+ animation-play-state: paused; }
3221
+
3222
+ .shopee-react-zoom-leave {
3223
+ animation-duration: 0.2s;
3224
+ animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
3225
+ animation-fill-mode: both;
3226
+ animation-play-state: paused; }
3227
+
3228
+ .shopee-react-zoom-enter.shopee-react-zoom-enter-active,
3229
+ .shopee-react-zoom-appear.shopee-react-zoom-appear-active {
3230
+ animation-name: shopeeZoomIn;
3231
+ animation-play-state: running; }
3232
+
3233
+ .shopee-react-zoom-leave.shopee-react-zoom-leave-active {
3234
+ animation-name: shopeeZoomOut;
3235
+ animation-play-state: running;
3236
+ pointer-events: none; }
3237
+
3238
+ .shopee-react-zoom-enter,
3239
+ .shopee-react-zoom-appear {
3240
+ transform: scale(0);
3241
+ opacity: 0;
3242
+ animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1); }
3243
+ .shopee-react-zoom-enter-prepare,
3244
+ .shopee-react-zoom-appear-prepare {
3245
+ transform: none; }
3246
+
3247
+ .shopee-react-zoom-leave {
3248
+ animation-timing-function: cubic-bezier(0.78, 0.14, 0.15, 0.86); }
3249
+
3250
+ .shopee-react-zoom-big-enter,
3251
+ .shopee-react-zoom-big-appear {
3252
+ animation-duration: 0.2s;
3253
+ animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
3254
+ animation-fill-mode: both;
3255
+ animation-play-state: paused; }
3256
+
3257
+ .shopee-react-zoom-big-leave {
3258
+ animation-duration: 0.2s;
3259
+ animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
3260
+ animation-fill-mode: both;
3261
+ animation-play-state: paused; }
3262
+
3263
+ .shopee-react-zoom-big-enter.shopee-react-zoom-big-enter-active,
3264
+ .shopee-react-zoom-big-appear.shopee-react-zoom-big-appear-active {
3265
+ animation-name: shopeeZoomBigIn;
3266
+ animation-play-state: running; }
3267
+
3268
+ .shopee-react-zoom-big-leave.shopee-react-zoom-big-leave-active {
3269
+ animation-name: shopeeZoomBigOut;
3270
+ animation-play-state: running;
3271
+ pointer-events: none; }
3272
+
3273
+ .shopee-react-zoom-big-enter,
3274
+ .shopee-react-zoom-big-appear {
3275
+ transform: scale(0);
3276
+ opacity: 0;
3277
+ animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1); }
3278
+ .shopee-react-zoom-big-enter-prepare,
3279
+ .shopee-react-zoom-big-appear-prepare {
3280
+ transform: none; }
3281
+
3282
+ .shopee-react-zoom-big-leave {
3283
+ animation-timing-function: cubic-bezier(0.78, 0.14, 0.15, 0.86); }
3284
+
3285
+ .shopee-react-zoom-big-fast-enter,
3286
+ .shopee-react-zoom-big-fast-appear {
3287
+ animation-duration: 0.1s;
3288
+ animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
3289
+ animation-fill-mode: both;
3290
+ animation-play-state: paused; }
3291
+
3292
+ .shopee-react-zoom-big-fast-leave {
3293
+ animation-duration: 0.1s;
3294
+ animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
3295
+ animation-fill-mode: both;
3296
+ animation-play-state: paused; }
3297
+
3298
+ .shopee-react-zoom-big-fast-enter.shopee-react-zoom-big-fast-enter-active,
3299
+ .shopee-react-zoom-big-fast-appear.shopee-react-zoom-big-fast-appear-active {
3300
+ animation-name: shopeeZoomBigIn;
3301
+ animation-play-state: running; }
3302
+
3303
+ .shopee-react-zoom-big-fast-leave.shopee-react-zoom-big-fast-leave-active {
3304
+ animation-name: shopeeZoomBigOut;
3305
+ animation-play-state: running;
3306
+ pointer-events: none; }
3307
+
3308
+ .shopee-react-zoom-big-fast-enter,
3309
+ .shopee-react-zoom-big-fast-appear {
3310
+ transform: scale(0);
3311
+ opacity: 0;
3312
+ animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1); }
3313
+ .shopee-react-zoom-big-fast-enter-prepare,
3314
+ .shopee-react-zoom-big-fast-appear-prepare {
3315
+ transform: none; }
3316
+
3317
+ .shopee-react-zoom-big-fast-leave {
3318
+ animation-timing-function: cubic-bezier(0.78, 0.14, 0.15, 0.86); }
3319
+
3320
+ .shopee-react-zoom-up-enter,
3321
+ .shopee-react-zoom-up-appear {
3322
+ animation-duration: 0.2s;
3323
+ animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
3324
+ animation-fill-mode: both;
3325
+ animation-play-state: paused; }
3326
+
3327
+ .shopee-react-zoom-up-leave {
3328
+ animation-duration: 0.2s;
3329
+ animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
3330
+ animation-fill-mode: both;
3331
+ animation-play-state: paused; }
3332
+
3333
+ .shopee-react-zoom-up-enter.shopee-react-zoom-up-enter-active,
3334
+ .shopee-react-zoom-up-appear.shopee-react-zoom-up-appear-active {
3335
+ animation-name: shopeeZoomUpIn;
3336
+ animation-play-state: running; }
3337
+
3338
+ .shopee-react-zoom-up-leave.shopee-react-zoom-up-leave-active {
3339
+ animation-name: shopeeZoomUpOut;
3340
+ animation-play-state: running;
3341
+ pointer-events: none; }
3342
+
3343
+ .shopee-react-zoom-up-enter,
3344
+ .shopee-react-zoom-up-appear {
3345
+ transform: scale(0);
3346
+ opacity: 0;
3347
+ animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1); }
3348
+ .shopee-react-zoom-up-enter-prepare,
3349
+ .shopee-react-zoom-up-appear-prepare {
3350
+ transform: none; }
3351
+
3352
+ .shopee-react-zoom-up-leave {
3353
+ animation-timing-function: cubic-bezier(0.78, 0.14, 0.15, 0.86); }
3354
+
3355
+ .shopee-react-zoom-down-enter,
3356
+ .shopee-react-zoom-down-appear {
3357
+ animation-duration: 0.2s;
3358
+ animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
3359
+ animation-fill-mode: both;
3360
+ animation-play-state: paused; }
3361
+
3362
+ .shopee-react-zoom-down-leave {
3363
+ animation-duration: 0.2s;
3364
+ animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
3365
+ animation-fill-mode: both;
3366
+ animation-play-state: paused; }
3367
+
3368
+ .shopee-react-zoom-down-enter.shopee-react-zoom-down-enter-active,
3369
+ .shopee-react-zoom-down-appear.shopee-react-zoom-down-appear-active {
3370
+ animation-name: shopeeZoomDownIn;
3371
+ animation-play-state: running; }
3372
+
3373
+ .shopee-react-zoom-down-leave.shopee-react-zoom-down-leave-active {
3374
+ animation-name: shopeeZoomDownOut;
3375
+ animation-play-state: running;
3376
+ pointer-events: none; }
3377
+
3378
+ .shopee-react-zoom-down-enter,
3379
+ .shopee-react-zoom-down-appear {
3380
+ transform: scale(0);
3381
+ opacity: 0;
3382
+ animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1); }
3383
+ .shopee-react-zoom-down-enter-prepare,
3384
+ .shopee-react-zoom-down-appear-prepare {
3385
+ transform: none; }
3386
+
3387
+ .shopee-react-zoom-down-leave {
3388
+ animation-timing-function: cubic-bezier(0.78, 0.14, 0.15, 0.86); }
3389
+
3390
+ .shopee-react-zoom-left-enter,
3391
+ .shopee-react-zoom-left-appear {
3392
+ animation-duration: 0.2s;
3393
+ animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
3394
+ animation-fill-mode: both;
3395
+ animation-play-state: paused; }
3396
+
3397
+ .shopee-react-zoom-left-leave {
3398
+ animation-duration: 0.2s;
3399
+ animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
3400
+ animation-fill-mode: both;
3401
+ animation-play-state: paused; }
3402
+
3403
+ .shopee-react-zoom-left-enter.shopee-react-zoom-left-enter-active,
3404
+ .shopee-react-zoom-left-appear.shopee-react-zoom-left-appear-active {
3405
+ animation-name: shopeeZoomLeftIn;
3406
+ animation-play-state: running; }
3407
+
3408
+ .shopee-react-zoom-left-leave.shopee-react-zoom-left-leave-active {
3409
+ animation-name: shopeeZoomLeftOut;
3410
+ animation-play-state: running;
3411
+ pointer-events: none; }
3412
+
3413
+ .shopee-react-zoom-left-enter,
3414
+ .shopee-react-zoom-left-appear {
3415
+ transform: scale(0);
3416
+ opacity: 0;
3417
+ animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1); }
3418
+ .shopee-react-zoom-left-enter-prepare,
3419
+ .shopee-react-zoom-left-appear-prepare {
3420
+ transform: none; }
3421
+
3422
+ .shopee-react-zoom-left-leave {
3423
+ animation-timing-function: cubic-bezier(0.78, 0.14, 0.15, 0.86); }
3424
+
3425
+ .shopee-react-zoom-right-enter,
3426
+ .shopee-react-zoom-right-appear {
3427
+ animation-duration: 0.2s;
3428
+ animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
3429
+ animation-fill-mode: both;
3430
+ animation-play-state: paused; }
3431
+
3432
+ .shopee-react-zoom-right-leave {
3433
+ animation-duration: 0.2s;
3434
+ animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
3435
+ animation-fill-mode: both;
3436
+ animation-play-state: paused; }
3437
+
3438
+ .shopee-react-zoom-right-enter.shopee-react-zoom-right-enter-active,
3439
+ .shopee-react-zoom-right-appear.shopee-react-zoom-right-appear-active {
3440
+ animation-name: shopeeZoomRightIn;
3441
+ animation-play-state: running; }
3442
+
3443
+ .shopee-react-zoom-right-leave.shopee-react-zoom-right-leave-active {
3444
+ animation-name: shopeeZoomRightOut;
3445
+ animation-play-state: running;
3446
+ pointer-events: none; }
3447
+
3448
+ .shopee-react-zoom-right-enter,
3449
+ .shopee-react-zoom-right-appear {
3450
+ transform: scale(0);
3451
+ opacity: 0;
3452
+ animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1); }
3453
+ .shopee-react-zoom-right-enter-prepare,
3454
+ .shopee-react-zoom-right-appear-prepare {
3455
+ transform: none; }
3456
+
3457
+ .shopee-react-zoom-right-leave {
3458
+ animation-timing-function: cubic-bezier(0.78, 0.14, 0.15, 0.86); }
3459
+
3460
+ @keyframes shopeeZoomIn {
3461
+ 0% {
3462
+ transform: scale(0.2);
3463
+ opacity: 0; }
3464
+ 100% {
3465
+ transform: scale(1);
3466
+ opacity: 1; } }
3467
+
3468
+ @keyframes shopeeZoomOut {
3469
+ 0% {
3470
+ transform: scale(1); }
3471
+ 100% {
3472
+ transform: scale(0.2);
3473
+ opacity: 0; } }
3474
+
3475
+ @keyframes shopeeZoomBigIn {
3476
+ 0% {
3477
+ transform: scale(0.8);
3478
+ opacity: 0; }
3479
+ 100% {
3480
+ transform: scale(1);
3481
+ opacity: 1; } }
3482
+
3483
+ @keyframes shopeeZoomBigOut {
3484
+ 0% {
3485
+ transform: scale(1); }
3486
+ 100% {
3487
+ transform: scale(0.8);
3488
+ opacity: 0; } }
3489
+
3490
+ @keyframes shopeeZoomUpIn {
3491
+ 0% {
3492
+ transform: scale(0.8);
3493
+ transform-origin: 50% 0%;
3494
+ opacity: 0; }
3495
+ 100% {
3496
+ transform: scale(1);
3497
+ transform-origin: 50% 0%; } }
3498
+
3499
+ @keyframes shopeeZoomUpOut {
3500
+ 0% {
3501
+ transform: scale(1);
3502
+ transform-origin: 50% 0%; }
3503
+ 100% {
3504
+ transform: scale(0.8);
3505
+ transform-origin: 50% 0%;
3506
+ opacity: 0; } }
3507
+
3508
+ @keyframes shopeeZoomLeftIn {
3509
+ 0% {
3510
+ transform: scale(0.8);
3511
+ transform-origin: 0% 50%;
3512
+ opacity: 0; }
3513
+ 100% {
3514
+ transform: scale(1);
3515
+ transform-origin: 0% 50%; } }
3516
+
3517
+ @keyframes shopeeZoomLeftOut {
3518
+ 0% {
3519
+ transform: scale(1);
3520
+ transform-origin: 0% 50%; }
3521
+ 100% {
3522
+ transform: scale(0.8);
3523
+ transform-origin: 0% 50%;
3524
+ opacity: 0; } }
3525
+
3526
+ @keyframes shopeeZoomRightIn {
3527
+ 0% {
3528
+ transform: scale(0.8);
3529
+ transform-origin: 100% 50%;
3530
+ opacity: 0; }
3531
+ 100% {
3532
+ transform: scale(1);
3533
+ transform-origin: 100% 50%; } }
3534
+
3535
+ @keyframes shopeeZoomRightOut {
3536
+ 0% {
3537
+ transform: scale(1);
3538
+ transform-origin: 100% 50%; }
3539
+ 100% {
3540
+ transform: scale(0.8);
3541
+ transform-origin: 100% 50%;
3542
+ opacity: 0; } }
3543
+
3544
+ @keyframes shopeeZoomDownIn {
3545
+ 0% {
3546
+ transform: scale(0.8);
3547
+ transform-origin: 50% 100%;
3548
+ opacity: 0; }
3549
+ 100% {
3550
+ transform: scale(1);
3551
+ transform-origin: 50% 100%; } }
3552
+
3553
+ @keyframes shopeeZoomDownOut {
3554
+ 0% {
3555
+ transform: scale(1);
3556
+ transform-origin: 50% 100%; }
3557
+ 100% {
3558
+ transform: scale(0.8);
3559
+ transform-origin: 50% 100%;
3560
+ opacity: 0; } }
3561
+
3562
+ .shopee-react-icon {
3563
+ display: inline-block;
3564
+ color: inherit;
3565
+ font-style: normal;
3566
+ line-height: 0;
3567
+ text-align: center;
3568
+ text-transform: none;
3569
+ fill: currentColor;
3570
+ vertical-align: -0.125em;
3571
+ text-rendering: optimizeLegibility;
3572
+ -webkit-font-smoothing: antialiased;
3573
+ -moz-osx-font-smoothing: grayscale;
3574
+ outline: none; }
3575
+ .shopee-react-icon > * {
3576
+ line-height: 1; }
3577
+ .shopee-react-icon svg {
3578
+ width: 100%;
3579
+ height: 100%; }
3580
+ .shopee-react-icon .shopee-react-icon-icon {
3581
+ display: block; }
3582
+ .shopee-react-icon[tabindex] {
3583
+ cursor: pointer; }
3584
+ .shopee-react-icon-spin {
3585
+ display: inline-block;
3586
+ animation: shopee-react-icon-spin 1s 0s infinite linear; }
3587
+
3588
+ @keyframes shopee-react-icon-spin {
3589
+ 0% {
3590
+ transform: rotate(0deg); }
3591
+ 100% {
3592
+ transform: rotate(360deg); } }