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,2450 @@
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-checkbox {
557
+ display: inline-block;
558
+ font-size: 0;
559
+ color: #333;
560
+ cursor: pointer;
561
+ user-select: none; }
562
+ .shopee-react-checkbox__input {
563
+ display: none; }
564
+ .shopee-react-checkbox__input:checked + .shopee-react-checkbox__indicator {
565
+ background-color: #ee4d2d;
566
+ border-color: #ee4d2d; }
567
+ .shopee-react-checkbox__input:checked + .shopee-react-checkbox__indicator .shopee-react-icon {
568
+ transform: scale(1); }
569
+ .shopee-react-checkbox__indicator {
570
+ position: relative;
571
+ display: inline-block;
572
+ width: 16px;
573
+ height: 16px;
574
+ margin-right: 8px;
575
+ vertical-align: middle;
576
+ background-color: #fff;
577
+ border: 1px solid #e5e5e5;
578
+ border-radius: 2px;
579
+ box-sizing: border-box;
580
+ transition: all 0.2s cubic-bezier(0.42, 0, 0.58, 1); }
581
+ @media (hover: hover) {
582
+ .shopee-react-checkbox__indicator:hover {
583
+ border-color: #ee4d2d; } }
584
+ .shopee-react-checkbox__indicator .shopee-react-icon {
585
+ position: absolute;
586
+ top: -1px;
587
+ left: -1px;
588
+ width: 16px;
589
+ line-height: 16px;
590
+ transform: scale(0);
591
+ transition: transform 0.2s;
592
+ fill: #fff; }
593
+ .shopee-react-checkbox__indicator .shopee-seller-iconfont {
594
+ color: white; }
595
+ .shopee-react-checkbox.indeterminate .shopee-react-checkbox__indicator {
596
+ background-color: #ee4d2d;
597
+ border-color: #ee4d2d; }
598
+ .shopee-react-checkbox.indeterminate .shopee-react-checkbox__indicator .shopee-react-icon {
599
+ transform: scale(1); }
600
+ .shopee-react-checkbox__label {
601
+ display: inline-block;
602
+ font-size: 14px;
603
+ line-height: 16px;
604
+ vertical-align: middle; }
605
+ .shopee-react-checkbox.disabled {
606
+ color: #b7b7b7;
607
+ cursor: not-allowed; }
608
+ .shopee-react-checkbox.disabled .shopee-react-checkbox__indicator {
609
+ background-color: #eee;
610
+ border-color: #d8d8d8; }
611
+ .shopee-react-checkbox.disabled .shopee-react-checkbox__indicator + .shopee-react-checkbox__label {
612
+ color: #333; }
613
+ .shopee-react-checkbox.disabled.indeterminate .shopee-react-checkbox__indicator {
614
+ background-color: #ee4d2d;
615
+ border-color: #ee4d2d;
616
+ opacity: .5; }
617
+ .shopee-react-checkbox.disabled .shopee-react-checkbox__input:checked + .shopee-react-checkbox__indicator {
618
+ background-color: #ee4d2d;
619
+ border-color: #ee4d2d;
620
+ opacity: .5; }
621
+ .shopee-react-checkbox--outline.disabled .shopee-react-checkbox__input:checked + .shopee-react-checkbox__indicator {
622
+ background-color: #f6f6f6;
623
+ border-color: #e5e5e5; }
624
+ .shopee-react-checkbox--outline.disabled .shopee-react-checkbox__input:checked + .shopee-react-checkbox__indicator .shopee-react-icon {
625
+ fill: #e5e5e5; }
626
+ .shopee-react-checkbox--outline .shopee-react-checkbox__input:checked + .shopee-react-checkbox__indicator {
627
+ background-color: #fff; }
628
+ .shopee-react-checkbox--outline .shopee-react-checkbox__indicator .shopee-react-icon {
629
+ fill: #ee4d2d; }
630
+ @media (hover: hover) {
631
+ .shopee-react-checkbox:not(.disabled):hover .shopee-react-checkbox__indicator {
632
+ border-color: #ee4d2d; } }
633
+
634
+ /** text **/
635
+ /** z-index **/
636
+ /** fill **/
637
+ /** boder **/
638
+ .move-up-enter,
639
+ .move-up-appear {
640
+ animation-duration: 0.2s;
641
+ animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
642
+ animation-fill-mode: both;
643
+ animation-play-state: paused; }
644
+
645
+ .move-up-leave {
646
+ animation-duration: 0.2s;
647
+ animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
648
+ animation-fill-mode: both;
649
+ animation-play-state: paused; }
650
+
651
+ .move-up-enter.move-up-enter-active,
652
+ .move-up-appear.move-up-appear-active {
653
+ animation-name: shopeeMoveUpIn;
654
+ animation-play-state: running; }
655
+
656
+ .move-up-leave.move-up-leave-active {
657
+ animation-name: shopeeMoveUpOut;
658
+ animation-play-state: running;
659
+ pointer-events: none; }
660
+
661
+ .move-up-enter,
662
+ .move-up-appear {
663
+ opacity: 0;
664
+ animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1); }
665
+
666
+ .move-up-leave {
667
+ animation-timing-function: cubic-bezier(0.6, 0.04, 0.98, 0.34); }
668
+
669
+ .move-down-enter,
670
+ .move-down-appear {
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-down-leave {
677
+ animation-duration: 0.2s;
678
+ animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
679
+ animation-fill-mode: both;
680
+ animation-play-state: paused; }
681
+
682
+ .move-down-enter.move-down-enter-active,
683
+ .move-down-appear.move-down-appear-active {
684
+ animation-name: shopeeMoveDownIn;
685
+ animation-play-state: running; }
686
+
687
+ .move-down-leave.move-down-leave-active {
688
+ animation-name: shopeeMoveDownOut;
689
+ animation-play-state: running;
690
+ pointer-events: none; }
691
+
692
+ .move-down-enter,
693
+ .move-down-appear {
694
+ opacity: 0;
695
+ animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1); }
696
+
697
+ .move-down-leave {
698
+ animation-timing-function: cubic-bezier(0.6, 0.04, 0.98, 0.34); }
699
+
700
+ .move-left-enter,
701
+ .move-left-appear {
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-left-leave {
708
+ animation-duration: 0.2s;
709
+ animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
710
+ animation-fill-mode: both;
711
+ animation-play-state: paused; }
712
+
713
+ .move-left-enter.move-left-enter-active,
714
+ .move-left-appear.move-left-appear-active {
715
+ animation-name: shopeeMoveLeftIn;
716
+ animation-play-state: running; }
717
+
718
+ .move-left-leave.move-left-leave-active {
719
+ animation-name: shopeeMoveLeftOut;
720
+ animation-play-state: running;
721
+ pointer-events: none; }
722
+
723
+ .move-left-enter,
724
+ .move-left-appear {
725
+ opacity: 0;
726
+ animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1); }
727
+
728
+ .move-left-leave {
729
+ animation-timing-function: cubic-bezier(0.6, 0.04, 0.98, 0.34); }
730
+
731
+ .move-right-enter,
732
+ .move-right-appear {
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-right-leave {
739
+ animation-duration: 0.2s;
740
+ animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
741
+ animation-fill-mode: both;
742
+ animation-play-state: paused; }
743
+
744
+ .move-right-enter.move-right-enter-active,
745
+ .move-right-appear.move-right-appear-active {
746
+ animation-name: shopeeMoveRightIn;
747
+ animation-play-state: running; }
748
+
749
+ .move-right-leave.move-right-leave-active {
750
+ animation-name: shopeeMoveRightOut;
751
+ animation-play-state: running;
752
+ pointer-events: none; }
753
+
754
+ .move-right-enter,
755
+ .move-right-appear {
756
+ opacity: 0;
757
+ animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1); }
758
+
759
+ .move-right-leave {
760
+ animation-timing-function: cubic-bezier(0.6, 0.04, 0.98, 0.34); }
761
+
762
+ @keyframes shopeeMoveDownIn {
763
+ 0% {
764
+ transform: translateY(100%);
765
+ transform-origin: 0 0;
766
+ opacity: 0; }
767
+ 100% {
768
+ transform: translateY(0%);
769
+ transform-origin: 0 0;
770
+ opacity: 1; } }
771
+
772
+ @keyframes shopeeMoveDownOut {
773
+ 0% {
774
+ transform: translateY(0%);
775
+ transform-origin: 0 0;
776
+ opacity: 1; }
777
+ 100% {
778
+ transform: translateY(100%);
779
+ transform-origin: 0 0;
780
+ opacity: 0; } }
781
+
782
+ @keyframes shopeeMoveLeftIn {
783
+ 0% {
784
+ transform: translateX(-100%);
785
+ transform-origin: 0 0;
786
+ opacity: 0; }
787
+ 100% {
788
+ transform: translateX(0%);
789
+ transform-origin: 0 0;
790
+ opacity: 1; } }
791
+
792
+ @keyframes shopeeMoveLeftOut {
793
+ 0% {
794
+ transform: translateX(0%);
795
+ transform-origin: 0 0;
796
+ opacity: 1; }
797
+ 100% {
798
+ transform: translateX(-100%);
799
+ transform-origin: 0 0;
800
+ opacity: 0; } }
801
+
802
+ @keyframes shopeeMoveRightIn {
803
+ 0% {
804
+ transform: translateX(100%);
805
+ transform-origin: 0 0;
806
+ opacity: 0; }
807
+ 100% {
808
+ transform: translateX(0%);
809
+ transform-origin: 0 0;
810
+ opacity: 1; } }
811
+
812
+ @keyframes shopeeMoveRightOut {
813
+ 0% {
814
+ transform: translateX(0%);
815
+ transform-origin: 0 0;
816
+ opacity: 1; }
817
+ 100% {
818
+ transform: translateX(100%);
819
+ transform-origin: 0 0;
820
+ opacity: 0; } }
821
+
822
+ @keyframes shopeeMoveUpIn {
823
+ 0% {
824
+ transform: translateY(-100%);
825
+ transform-origin: 0 0;
826
+ opacity: 0; }
827
+ 100% {
828
+ transform: translateY(0%);
829
+ transform-origin: 0 0;
830
+ opacity: 1; } }
831
+
832
+ @keyframes shopeeMoveUpOut {
833
+ 0% {
834
+ transform: translateY(0%);
835
+ transform-origin: 0 0;
836
+ opacity: 1; }
837
+ 100% {
838
+ transform: translateY(-100%);
839
+ transform-origin: 0 0;
840
+ opacity: 0; } }
841
+
842
+ .shopee-react-zoom-enter,
843
+ .shopee-react-zoom-appear {
844
+ animation-duration: 0.2s;
845
+ animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
846
+ animation-fill-mode: both;
847
+ animation-play-state: paused; }
848
+
849
+ .shopee-react-zoom-leave {
850
+ animation-duration: 0.2s;
851
+ animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
852
+ animation-fill-mode: both;
853
+ animation-play-state: paused; }
854
+
855
+ .shopee-react-zoom-enter.shopee-react-zoom-enter-active,
856
+ .shopee-react-zoom-appear.shopee-react-zoom-appear-active {
857
+ animation-name: shopeeZoomIn;
858
+ animation-play-state: running; }
859
+
860
+ .shopee-react-zoom-leave.shopee-react-zoom-leave-active {
861
+ animation-name: shopeeZoomOut;
862
+ animation-play-state: running;
863
+ pointer-events: none; }
864
+
865
+ .shopee-react-zoom-enter,
866
+ .shopee-react-zoom-appear {
867
+ transform: scale(0);
868
+ opacity: 0;
869
+ animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1); }
870
+ .shopee-react-zoom-enter-prepare,
871
+ .shopee-react-zoom-appear-prepare {
872
+ transform: none; }
873
+
874
+ .shopee-react-zoom-leave {
875
+ animation-timing-function: cubic-bezier(0.78, 0.14, 0.15, 0.86); }
876
+
877
+ .shopee-react-zoom-big-enter,
878
+ .shopee-react-zoom-big-appear {
879
+ animation-duration: 0.2s;
880
+ animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
881
+ animation-fill-mode: both;
882
+ animation-play-state: paused; }
883
+
884
+ .shopee-react-zoom-big-leave {
885
+ animation-duration: 0.2s;
886
+ animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
887
+ animation-fill-mode: both;
888
+ animation-play-state: paused; }
889
+
890
+ .shopee-react-zoom-big-enter.shopee-react-zoom-big-enter-active,
891
+ .shopee-react-zoom-big-appear.shopee-react-zoom-big-appear-active {
892
+ animation-name: shopeeZoomBigIn;
893
+ animation-play-state: running; }
894
+
895
+ .shopee-react-zoom-big-leave.shopee-react-zoom-big-leave-active {
896
+ animation-name: shopeeZoomBigOut;
897
+ animation-play-state: running;
898
+ pointer-events: none; }
899
+
900
+ .shopee-react-zoom-big-enter,
901
+ .shopee-react-zoom-big-appear {
902
+ transform: scale(0);
903
+ opacity: 0;
904
+ animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1); }
905
+ .shopee-react-zoom-big-enter-prepare,
906
+ .shopee-react-zoom-big-appear-prepare {
907
+ transform: none; }
908
+
909
+ .shopee-react-zoom-big-leave {
910
+ animation-timing-function: cubic-bezier(0.78, 0.14, 0.15, 0.86); }
911
+
912
+ .shopee-react-zoom-big-fast-enter,
913
+ .shopee-react-zoom-big-fast-appear {
914
+ animation-duration: 0.1s;
915
+ animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
916
+ animation-fill-mode: both;
917
+ animation-play-state: paused; }
918
+
919
+ .shopee-react-zoom-big-fast-leave {
920
+ animation-duration: 0.1s;
921
+ animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
922
+ animation-fill-mode: both;
923
+ animation-play-state: paused; }
924
+
925
+ .shopee-react-zoom-big-fast-enter.shopee-react-zoom-big-fast-enter-active,
926
+ .shopee-react-zoom-big-fast-appear.shopee-react-zoom-big-fast-appear-active {
927
+ animation-name: shopeeZoomBigIn;
928
+ animation-play-state: running; }
929
+
930
+ .shopee-react-zoom-big-fast-leave.shopee-react-zoom-big-fast-leave-active {
931
+ animation-name: shopeeZoomBigOut;
932
+ animation-play-state: running;
933
+ pointer-events: none; }
934
+
935
+ .shopee-react-zoom-big-fast-enter,
936
+ .shopee-react-zoom-big-fast-appear {
937
+ transform: scale(0);
938
+ opacity: 0;
939
+ animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1); }
940
+ .shopee-react-zoom-big-fast-enter-prepare,
941
+ .shopee-react-zoom-big-fast-appear-prepare {
942
+ transform: none; }
943
+
944
+ .shopee-react-zoom-big-fast-leave {
945
+ animation-timing-function: cubic-bezier(0.78, 0.14, 0.15, 0.86); }
946
+
947
+ .shopee-react-zoom-up-enter,
948
+ .shopee-react-zoom-up-appear {
949
+ animation-duration: 0.2s;
950
+ animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
951
+ animation-fill-mode: both;
952
+ animation-play-state: paused; }
953
+
954
+ .shopee-react-zoom-up-leave {
955
+ animation-duration: 0.2s;
956
+ animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
957
+ animation-fill-mode: both;
958
+ animation-play-state: paused; }
959
+
960
+ .shopee-react-zoom-up-enter.shopee-react-zoom-up-enter-active,
961
+ .shopee-react-zoom-up-appear.shopee-react-zoom-up-appear-active {
962
+ animation-name: shopeeZoomUpIn;
963
+ animation-play-state: running; }
964
+
965
+ .shopee-react-zoom-up-leave.shopee-react-zoom-up-leave-active {
966
+ animation-name: shopeeZoomUpOut;
967
+ animation-play-state: running;
968
+ pointer-events: none; }
969
+
970
+ .shopee-react-zoom-up-enter,
971
+ .shopee-react-zoom-up-appear {
972
+ transform: scale(0);
973
+ opacity: 0;
974
+ animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1); }
975
+ .shopee-react-zoom-up-enter-prepare,
976
+ .shopee-react-zoom-up-appear-prepare {
977
+ transform: none; }
978
+
979
+ .shopee-react-zoom-up-leave {
980
+ animation-timing-function: cubic-bezier(0.78, 0.14, 0.15, 0.86); }
981
+
982
+ .shopee-react-zoom-down-enter,
983
+ .shopee-react-zoom-down-appear {
984
+ animation-duration: 0.2s;
985
+ animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
986
+ animation-fill-mode: both;
987
+ animation-play-state: paused; }
988
+
989
+ .shopee-react-zoom-down-leave {
990
+ animation-duration: 0.2s;
991
+ animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
992
+ animation-fill-mode: both;
993
+ animation-play-state: paused; }
994
+
995
+ .shopee-react-zoom-down-enter.shopee-react-zoom-down-enter-active,
996
+ .shopee-react-zoom-down-appear.shopee-react-zoom-down-appear-active {
997
+ animation-name: shopeeZoomDownIn;
998
+ animation-play-state: running; }
999
+
1000
+ .shopee-react-zoom-down-leave.shopee-react-zoom-down-leave-active {
1001
+ animation-name: shopeeZoomDownOut;
1002
+ animation-play-state: running;
1003
+ pointer-events: none; }
1004
+
1005
+ .shopee-react-zoom-down-enter,
1006
+ .shopee-react-zoom-down-appear {
1007
+ transform: scale(0);
1008
+ opacity: 0;
1009
+ animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1); }
1010
+ .shopee-react-zoom-down-enter-prepare,
1011
+ .shopee-react-zoom-down-appear-prepare {
1012
+ transform: none; }
1013
+
1014
+ .shopee-react-zoom-down-leave {
1015
+ animation-timing-function: cubic-bezier(0.78, 0.14, 0.15, 0.86); }
1016
+
1017
+ .shopee-react-zoom-left-enter,
1018
+ .shopee-react-zoom-left-appear {
1019
+ animation-duration: 0.2s;
1020
+ animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
1021
+ animation-fill-mode: both;
1022
+ animation-play-state: paused; }
1023
+
1024
+ .shopee-react-zoom-left-leave {
1025
+ animation-duration: 0.2s;
1026
+ animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
1027
+ animation-fill-mode: both;
1028
+ animation-play-state: paused; }
1029
+
1030
+ .shopee-react-zoom-left-enter.shopee-react-zoom-left-enter-active,
1031
+ .shopee-react-zoom-left-appear.shopee-react-zoom-left-appear-active {
1032
+ animation-name: shopeeZoomLeftIn;
1033
+ animation-play-state: running; }
1034
+
1035
+ .shopee-react-zoom-left-leave.shopee-react-zoom-left-leave-active {
1036
+ animation-name: shopeeZoomLeftOut;
1037
+ animation-play-state: running;
1038
+ pointer-events: none; }
1039
+
1040
+ .shopee-react-zoom-left-enter,
1041
+ .shopee-react-zoom-left-appear {
1042
+ transform: scale(0);
1043
+ opacity: 0;
1044
+ animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1); }
1045
+ .shopee-react-zoom-left-enter-prepare,
1046
+ .shopee-react-zoom-left-appear-prepare {
1047
+ transform: none; }
1048
+
1049
+ .shopee-react-zoom-left-leave {
1050
+ animation-timing-function: cubic-bezier(0.78, 0.14, 0.15, 0.86); }
1051
+
1052
+ .shopee-react-zoom-right-enter,
1053
+ .shopee-react-zoom-right-appear {
1054
+ animation-duration: 0.2s;
1055
+ animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
1056
+ animation-fill-mode: both;
1057
+ animation-play-state: paused; }
1058
+
1059
+ .shopee-react-zoom-right-leave {
1060
+ animation-duration: 0.2s;
1061
+ animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
1062
+ animation-fill-mode: both;
1063
+ animation-play-state: paused; }
1064
+
1065
+ .shopee-react-zoom-right-enter.shopee-react-zoom-right-enter-active,
1066
+ .shopee-react-zoom-right-appear.shopee-react-zoom-right-appear-active {
1067
+ animation-name: shopeeZoomRightIn;
1068
+ animation-play-state: running; }
1069
+
1070
+ .shopee-react-zoom-right-leave.shopee-react-zoom-right-leave-active {
1071
+ animation-name: shopeeZoomRightOut;
1072
+ animation-play-state: running;
1073
+ pointer-events: none; }
1074
+
1075
+ .shopee-react-zoom-right-enter,
1076
+ .shopee-react-zoom-right-appear {
1077
+ transform: scale(0);
1078
+ opacity: 0;
1079
+ animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1); }
1080
+ .shopee-react-zoom-right-enter-prepare,
1081
+ .shopee-react-zoom-right-appear-prepare {
1082
+ transform: none; }
1083
+
1084
+ .shopee-react-zoom-right-leave {
1085
+ animation-timing-function: cubic-bezier(0.78, 0.14, 0.15, 0.86); }
1086
+
1087
+ @keyframes shopeeZoomIn {
1088
+ 0% {
1089
+ transform: scale(0.2);
1090
+ opacity: 0; }
1091
+ 100% {
1092
+ transform: scale(1);
1093
+ opacity: 1; } }
1094
+
1095
+ @keyframes shopeeZoomOut {
1096
+ 0% {
1097
+ transform: scale(1); }
1098
+ 100% {
1099
+ transform: scale(0.2);
1100
+ opacity: 0; } }
1101
+
1102
+ @keyframes shopeeZoomBigIn {
1103
+ 0% {
1104
+ transform: scale(0.8);
1105
+ opacity: 0; }
1106
+ 100% {
1107
+ transform: scale(1);
1108
+ opacity: 1; } }
1109
+
1110
+ @keyframes shopeeZoomBigOut {
1111
+ 0% {
1112
+ transform: scale(1); }
1113
+ 100% {
1114
+ transform: scale(0.8);
1115
+ opacity: 0; } }
1116
+
1117
+ @keyframes shopeeZoomUpIn {
1118
+ 0% {
1119
+ transform: scale(0.8);
1120
+ transform-origin: 50% 0%;
1121
+ opacity: 0; }
1122
+ 100% {
1123
+ transform: scale(1);
1124
+ transform-origin: 50% 0%; } }
1125
+
1126
+ @keyframes shopeeZoomUpOut {
1127
+ 0% {
1128
+ transform: scale(1);
1129
+ transform-origin: 50% 0%; }
1130
+ 100% {
1131
+ transform: scale(0.8);
1132
+ transform-origin: 50% 0%;
1133
+ opacity: 0; } }
1134
+
1135
+ @keyframes shopeeZoomLeftIn {
1136
+ 0% {
1137
+ transform: scale(0.8);
1138
+ transform-origin: 0% 50%;
1139
+ opacity: 0; }
1140
+ 100% {
1141
+ transform: scale(1);
1142
+ transform-origin: 0% 50%; } }
1143
+
1144
+ @keyframes shopeeZoomLeftOut {
1145
+ 0% {
1146
+ transform: scale(1);
1147
+ transform-origin: 0% 50%; }
1148
+ 100% {
1149
+ transform: scale(0.8);
1150
+ transform-origin: 0% 50%;
1151
+ opacity: 0; } }
1152
+
1153
+ @keyframes shopeeZoomRightIn {
1154
+ 0% {
1155
+ transform: scale(0.8);
1156
+ transform-origin: 100% 50%;
1157
+ opacity: 0; }
1158
+ 100% {
1159
+ transform: scale(1);
1160
+ transform-origin: 100% 50%; } }
1161
+
1162
+ @keyframes shopeeZoomRightOut {
1163
+ 0% {
1164
+ transform: scale(1);
1165
+ transform-origin: 100% 50%; }
1166
+ 100% {
1167
+ transform: scale(0.8);
1168
+ transform-origin: 100% 50%;
1169
+ opacity: 0; } }
1170
+
1171
+ @keyframes shopeeZoomDownIn {
1172
+ 0% {
1173
+ transform: scale(0.8);
1174
+ transform-origin: 50% 100%;
1175
+ opacity: 0; }
1176
+ 100% {
1177
+ transform: scale(1);
1178
+ transform-origin: 50% 100%; } }
1179
+
1180
+ @keyframes shopeeZoomDownOut {
1181
+ 0% {
1182
+ transform: scale(1);
1183
+ transform-origin: 50% 100%; }
1184
+ 100% {
1185
+ transform: scale(0.8);
1186
+ transform-origin: 50% 100%;
1187
+ opacity: 0; } }
1188
+
1189
+ .shopee-react-checkbox-button {
1190
+ position: relative;
1191
+ display: inline-block;
1192
+ height: 32px;
1193
+ padding: 0 16px;
1194
+ font-size: 13px;
1195
+ line-height: 32px;
1196
+ color: #333;
1197
+ text-align: center;
1198
+ cursor: pointer;
1199
+ background-color: #fff;
1200
+ border: 1px solid #e5e5e5;
1201
+ box-sizing: border-box;
1202
+ transition: all 0.2s cubic-bezier(0.42, 0, 0.58, 1); }
1203
+ .shopee-react-checkbox-button__indicator {
1204
+ position: absolute;
1205
+ right: 0;
1206
+ bottom: 0;
1207
+ width: 16px;
1208
+ height: 16px; }
1209
+ .shopee-react-checkbox-button__indicator .shopee-react-icon {
1210
+ position: absolute;
1211
+ right: -1px;
1212
+ bottom: -1px;
1213
+ width: 12px;
1214
+ line-height: 12px;
1215
+ opacity: 0;
1216
+ transition: opacity 0.2s cubic-bezier(0.42, 0, 0.58, 1);
1217
+ fill: #fff; }
1218
+ .shopee-react-checkbox-button__indicator::before {
1219
+ position: absolute;
1220
+ top: 0;
1221
+ left: 0;
1222
+ width: 0;
1223
+ height: 0;
1224
+ border: 8px solid transparent;
1225
+ content: '';
1226
+ transition: border-color 0.2s cubic-bezier(0.42, 0, 0.58, 1); }
1227
+ .shopee-react-checkbox-button:hover {
1228
+ color: #ee4d2d;
1229
+ border-color: #ee4d2d; }
1230
+ .shopee-react-checkbox-button.checked {
1231
+ color: #ee4d2d;
1232
+ border-color: #ee4d2d; }
1233
+ .shopee-react-checkbox-button.checked .shopee-react-checkbox-button__indicator::before {
1234
+ border-right-color: #ee4d2d;
1235
+ border-bottom-color: #ee4d2d; }
1236
+ .shopee-react-checkbox-button.checked .shopee-react-checkbox-button__indicator .shopee-react-icon {
1237
+ opacity: 1; }
1238
+ .shopee-react-checkbox-button.checked.disabled .shopee-react-checkbox-button__indicator::before, .shopee-react-checkbox-button.checked.disabled:hover .shopee-react-checkbox-button__indicator::before {
1239
+ border-right-color: #e5e5e5;
1240
+ border-bottom-color: #e5e5e5; }
1241
+ .shopee-react-checkbox-button.disabled, .shopee-react-checkbox-button.disabled:hover {
1242
+ color: #b7b7b7;
1243
+ cursor: not-allowed;
1244
+ background-color: #f6f6f6;
1245
+ border-color: #e5e5e5; }
1246
+ .shopee-react-checkbox-button__input {
1247
+ display: none; }
1248
+ .shopee-react-checkbox-button__label {
1249
+ display: inline-block; }
1250
+
1251
+ /** text **/
1252
+ /** z-index **/
1253
+ /** fill **/
1254
+ /** boder **/
1255
+ .move-up-enter,
1256
+ .move-up-appear {
1257
+ animation-duration: 0.2s;
1258
+ animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
1259
+ animation-fill-mode: both;
1260
+ animation-play-state: paused; }
1261
+
1262
+ .move-up-leave {
1263
+ animation-duration: 0.2s;
1264
+ animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
1265
+ animation-fill-mode: both;
1266
+ animation-play-state: paused; }
1267
+
1268
+ .move-up-enter.move-up-enter-active,
1269
+ .move-up-appear.move-up-appear-active {
1270
+ animation-name: shopeeMoveUpIn;
1271
+ animation-play-state: running; }
1272
+
1273
+ .move-up-leave.move-up-leave-active {
1274
+ animation-name: shopeeMoveUpOut;
1275
+ animation-play-state: running;
1276
+ pointer-events: none; }
1277
+
1278
+ .move-up-enter,
1279
+ .move-up-appear {
1280
+ opacity: 0;
1281
+ animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1); }
1282
+
1283
+ .move-up-leave {
1284
+ animation-timing-function: cubic-bezier(0.6, 0.04, 0.98, 0.34); }
1285
+
1286
+ .move-down-enter,
1287
+ .move-down-appear {
1288
+ animation-duration: 0.2s;
1289
+ animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
1290
+ animation-fill-mode: both;
1291
+ animation-play-state: paused; }
1292
+
1293
+ .move-down-leave {
1294
+ animation-duration: 0.2s;
1295
+ animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
1296
+ animation-fill-mode: both;
1297
+ animation-play-state: paused; }
1298
+
1299
+ .move-down-enter.move-down-enter-active,
1300
+ .move-down-appear.move-down-appear-active {
1301
+ animation-name: shopeeMoveDownIn;
1302
+ animation-play-state: running; }
1303
+
1304
+ .move-down-leave.move-down-leave-active {
1305
+ animation-name: shopeeMoveDownOut;
1306
+ animation-play-state: running;
1307
+ pointer-events: none; }
1308
+
1309
+ .move-down-enter,
1310
+ .move-down-appear {
1311
+ opacity: 0;
1312
+ animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1); }
1313
+
1314
+ .move-down-leave {
1315
+ animation-timing-function: cubic-bezier(0.6, 0.04, 0.98, 0.34); }
1316
+
1317
+ .move-left-enter,
1318
+ .move-left-appear {
1319
+ animation-duration: 0.2s;
1320
+ animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
1321
+ animation-fill-mode: both;
1322
+ animation-play-state: paused; }
1323
+
1324
+ .move-left-leave {
1325
+ animation-duration: 0.2s;
1326
+ animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
1327
+ animation-fill-mode: both;
1328
+ animation-play-state: paused; }
1329
+
1330
+ .move-left-enter.move-left-enter-active,
1331
+ .move-left-appear.move-left-appear-active {
1332
+ animation-name: shopeeMoveLeftIn;
1333
+ animation-play-state: running; }
1334
+
1335
+ .move-left-leave.move-left-leave-active {
1336
+ animation-name: shopeeMoveLeftOut;
1337
+ animation-play-state: running;
1338
+ pointer-events: none; }
1339
+
1340
+ .move-left-enter,
1341
+ .move-left-appear {
1342
+ opacity: 0;
1343
+ animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1); }
1344
+
1345
+ .move-left-leave {
1346
+ animation-timing-function: cubic-bezier(0.6, 0.04, 0.98, 0.34); }
1347
+
1348
+ .move-right-enter,
1349
+ .move-right-appear {
1350
+ animation-duration: 0.2s;
1351
+ animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
1352
+ animation-fill-mode: both;
1353
+ animation-play-state: paused; }
1354
+
1355
+ .move-right-leave {
1356
+ animation-duration: 0.2s;
1357
+ animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
1358
+ animation-fill-mode: both;
1359
+ animation-play-state: paused; }
1360
+
1361
+ .move-right-enter.move-right-enter-active,
1362
+ .move-right-appear.move-right-appear-active {
1363
+ animation-name: shopeeMoveRightIn;
1364
+ animation-play-state: running; }
1365
+
1366
+ .move-right-leave.move-right-leave-active {
1367
+ animation-name: shopeeMoveRightOut;
1368
+ animation-play-state: running;
1369
+ pointer-events: none; }
1370
+
1371
+ .move-right-enter,
1372
+ .move-right-appear {
1373
+ opacity: 0;
1374
+ animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1); }
1375
+
1376
+ .move-right-leave {
1377
+ animation-timing-function: cubic-bezier(0.6, 0.04, 0.98, 0.34); }
1378
+
1379
+ @keyframes shopeeMoveDownIn {
1380
+ 0% {
1381
+ transform: translateY(100%);
1382
+ transform-origin: 0 0;
1383
+ opacity: 0; }
1384
+ 100% {
1385
+ transform: translateY(0%);
1386
+ transform-origin: 0 0;
1387
+ opacity: 1; } }
1388
+
1389
+ @keyframes shopeeMoveDownOut {
1390
+ 0% {
1391
+ transform: translateY(0%);
1392
+ transform-origin: 0 0;
1393
+ opacity: 1; }
1394
+ 100% {
1395
+ transform: translateY(100%);
1396
+ transform-origin: 0 0;
1397
+ opacity: 0; } }
1398
+
1399
+ @keyframes shopeeMoveLeftIn {
1400
+ 0% {
1401
+ transform: translateX(-100%);
1402
+ transform-origin: 0 0;
1403
+ opacity: 0; }
1404
+ 100% {
1405
+ transform: translateX(0%);
1406
+ transform-origin: 0 0;
1407
+ opacity: 1; } }
1408
+
1409
+ @keyframes shopeeMoveLeftOut {
1410
+ 0% {
1411
+ transform: translateX(0%);
1412
+ transform-origin: 0 0;
1413
+ opacity: 1; }
1414
+ 100% {
1415
+ transform: translateX(-100%);
1416
+ transform-origin: 0 0;
1417
+ opacity: 0; } }
1418
+
1419
+ @keyframes shopeeMoveRightIn {
1420
+ 0% {
1421
+ transform: translateX(100%);
1422
+ transform-origin: 0 0;
1423
+ opacity: 0; }
1424
+ 100% {
1425
+ transform: translateX(0%);
1426
+ transform-origin: 0 0;
1427
+ opacity: 1; } }
1428
+
1429
+ @keyframes shopeeMoveRightOut {
1430
+ 0% {
1431
+ transform: translateX(0%);
1432
+ transform-origin: 0 0;
1433
+ opacity: 1; }
1434
+ 100% {
1435
+ transform: translateX(100%);
1436
+ transform-origin: 0 0;
1437
+ opacity: 0; } }
1438
+
1439
+ @keyframes shopeeMoveUpIn {
1440
+ 0% {
1441
+ transform: translateY(-100%);
1442
+ transform-origin: 0 0;
1443
+ opacity: 0; }
1444
+ 100% {
1445
+ transform: translateY(0%);
1446
+ transform-origin: 0 0;
1447
+ opacity: 1; } }
1448
+
1449
+ @keyframes shopeeMoveUpOut {
1450
+ 0% {
1451
+ transform: translateY(0%);
1452
+ transform-origin: 0 0;
1453
+ opacity: 1; }
1454
+ 100% {
1455
+ transform: translateY(-100%);
1456
+ transform-origin: 0 0;
1457
+ opacity: 0; } }
1458
+
1459
+ .shopee-react-zoom-enter,
1460
+ .shopee-react-zoom-appear {
1461
+ animation-duration: 0.2s;
1462
+ animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
1463
+ animation-fill-mode: both;
1464
+ animation-play-state: paused; }
1465
+
1466
+ .shopee-react-zoom-leave {
1467
+ animation-duration: 0.2s;
1468
+ animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
1469
+ animation-fill-mode: both;
1470
+ animation-play-state: paused; }
1471
+
1472
+ .shopee-react-zoom-enter.shopee-react-zoom-enter-active,
1473
+ .shopee-react-zoom-appear.shopee-react-zoom-appear-active {
1474
+ animation-name: shopeeZoomIn;
1475
+ animation-play-state: running; }
1476
+
1477
+ .shopee-react-zoom-leave.shopee-react-zoom-leave-active {
1478
+ animation-name: shopeeZoomOut;
1479
+ animation-play-state: running;
1480
+ pointer-events: none; }
1481
+
1482
+ .shopee-react-zoom-enter,
1483
+ .shopee-react-zoom-appear {
1484
+ transform: scale(0);
1485
+ opacity: 0;
1486
+ animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1); }
1487
+ .shopee-react-zoom-enter-prepare,
1488
+ .shopee-react-zoom-appear-prepare {
1489
+ transform: none; }
1490
+
1491
+ .shopee-react-zoom-leave {
1492
+ animation-timing-function: cubic-bezier(0.78, 0.14, 0.15, 0.86); }
1493
+
1494
+ .shopee-react-zoom-big-enter,
1495
+ .shopee-react-zoom-big-appear {
1496
+ animation-duration: 0.2s;
1497
+ animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
1498
+ animation-fill-mode: both;
1499
+ animation-play-state: paused; }
1500
+
1501
+ .shopee-react-zoom-big-leave {
1502
+ animation-duration: 0.2s;
1503
+ animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
1504
+ animation-fill-mode: both;
1505
+ animation-play-state: paused; }
1506
+
1507
+ .shopee-react-zoom-big-enter.shopee-react-zoom-big-enter-active,
1508
+ .shopee-react-zoom-big-appear.shopee-react-zoom-big-appear-active {
1509
+ animation-name: shopeeZoomBigIn;
1510
+ animation-play-state: running; }
1511
+
1512
+ .shopee-react-zoom-big-leave.shopee-react-zoom-big-leave-active {
1513
+ animation-name: shopeeZoomBigOut;
1514
+ animation-play-state: running;
1515
+ pointer-events: none; }
1516
+
1517
+ .shopee-react-zoom-big-enter,
1518
+ .shopee-react-zoom-big-appear {
1519
+ transform: scale(0);
1520
+ opacity: 0;
1521
+ animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1); }
1522
+ .shopee-react-zoom-big-enter-prepare,
1523
+ .shopee-react-zoom-big-appear-prepare {
1524
+ transform: none; }
1525
+
1526
+ .shopee-react-zoom-big-leave {
1527
+ animation-timing-function: cubic-bezier(0.78, 0.14, 0.15, 0.86); }
1528
+
1529
+ .shopee-react-zoom-big-fast-enter,
1530
+ .shopee-react-zoom-big-fast-appear {
1531
+ animation-duration: 0.1s;
1532
+ animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
1533
+ animation-fill-mode: both;
1534
+ animation-play-state: paused; }
1535
+
1536
+ .shopee-react-zoom-big-fast-leave {
1537
+ animation-duration: 0.1s;
1538
+ animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
1539
+ animation-fill-mode: both;
1540
+ animation-play-state: paused; }
1541
+
1542
+ .shopee-react-zoom-big-fast-enter.shopee-react-zoom-big-fast-enter-active,
1543
+ .shopee-react-zoom-big-fast-appear.shopee-react-zoom-big-fast-appear-active {
1544
+ animation-name: shopeeZoomBigIn;
1545
+ animation-play-state: running; }
1546
+
1547
+ .shopee-react-zoom-big-fast-leave.shopee-react-zoom-big-fast-leave-active {
1548
+ animation-name: shopeeZoomBigOut;
1549
+ animation-play-state: running;
1550
+ pointer-events: none; }
1551
+
1552
+ .shopee-react-zoom-big-fast-enter,
1553
+ .shopee-react-zoom-big-fast-appear {
1554
+ transform: scale(0);
1555
+ opacity: 0;
1556
+ animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1); }
1557
+ .shopee-react-zoom-big-fast-enter-prepare,
1558
+ .shopee-react-zoom-big-fast-appear-prepare {
1559
+ transform: none; }
1560
+
1561
+ .shopee-react-zoom-big-fast-leave {
1562
+ animation-timing-function: cubic-bezier(0.78, 0.14, 0.15, 0.86); }
1563
+
1564
+ .shopee-react-zoom-up-enter,
1565
+ .shopee-react-zoom-up-appear {
1566
+ animation-duration: 0.2s;
1567
+ animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
1568
+ animation-fill-mode: both;
1569
+ animation-play-state: paused; }
1570
+
1571
+ .shopee-react-zoom-up-leave {
1572
+ animation-duration: 0.2s;
1573
+ animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
1574
+ animation-fill-mode: both;
1575
+ animation-play-state: paused; }
1576
+
1577
+ .shopee-react-zoom-up-enter.shopee-react-zoom-up-enter-active,
1578
+ .shopee-react-zoom-up-appear.shopee-react-zoom-up-appear-active {
1579
+ animation-name: shopeeZoomUpIn;
1580
+ animation-play-state: running; }
1581
+
1582
+ .shopee-react-zoom-up-leave.shopee-react-zoom-up-leave-active {
1583
+ animation-name: shopeeZoomUpOut;
1584
+ animation-play-state: running;
1585
+ pointer-events: none; }
1586
+
1587
+ .shopee-react-zoom-up-enter,
1588
+ .shopee-react-zoom-up-appear {
1589
+ transform: scale(0);
1590
+ opacity: 0;
1591
+ animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1); }
1592
+ .shopee-react-zoom-up-enter-prepare,
1593
+ .shopee-react-zoom-up-appear-prepare {
1594
+ transform: none; }
1595
+
1596
+ .shopee-react-zoom-up-leave {
1597
+ animation-timing-function: cubic-bezier(0.78, 0.14, 0.15, 0.86); }
1598
+
1599
+ .shopee-react-zoom-down-enter,
1600
+ .shopee-react-zoom-down-appear {
1601
+ animation-duration: 0.2s;
1602
+ animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
1603
+ animation-fill-mode: both;
1604
+ animation-play-state: paused; }
1605
+
1606
+ .shopee-react-zoom-down-leave {
1607
+ animation-duration: 0.2s;
1608
+ animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
1609
+ animation-fill-mode: both;
1610
+ animation-play-state: paused; }
1611
+
1612
+ .shopee-react-zoom-down-enter.shopee-react-zoom-down-enter-active,
1613
+ .shopee-react-zoom-down-appear.shopee-react-zoom-down-appear-active {
1614
+ animation-name: shopeeZoomDownIn;
1615
+ animation-play-state: running; }
1616
+
1617
+ .shopee-react-zoom-down-leave.shopee-react-zoom-down-leave-active {
1618
+ animation-name: shopeeZoomDownOut;
1619
+ animation-play-state: running;
1620
+ pointer-events: none; }
1621
+
1622
+ .shopee-react-zoom-down-enter,
1623
+ .shopee-react-zoom-down-appear {
1624
+ transform: scale(0);
1625
+ opacity: 0;
1626
+ animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1); }
1627
+ .shopee-react-zoom-down-enter-prepare,
1628
+ .shopee-react-zoom-down-appear-prepare {
1629
+ transform: none; }
1630
+
1631
+ .shopee-react-zoom-down-leave {
1632
+ animation-timing-function: cubic-bezier(0.78, 0.14, 0.15, 0.86); }
1633
+
1634
+ .shopee-react-zoom-left-enter,
1635
+ .shopee-react-zoom-left-appear {
1636
+ animation-duration: 0.2s;
1637
+ animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
1638
+ animation-fill-mode: both;
1639
+ animation-play-state: paused; }
1640
+
1641
+ .shopee-react-zoom-left-leave {
1642
+ animation-duration: 0.2s;
1643
+ animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
1644
+ animation-fill-mode: both;
1645
+ animation-play-state: paused; }
1646
+
1647
+ .shopee-react-zoom-left-enter.shopee-react-zoom-left-enter-active,
1648
+ .shopee-react-zoom-left-appear.shopee-react-zoom-left-appear-active {
1649
+ animation-name: shopeeZoomLeftIn;
1650
+ animation-play-state: running; }
1651
+
1652
+ .shopee-react-zoom-left-leave.shopee-react-zoom-left-leave-active {
1653
+ animation-name: shopeeZoomLeftOut;
1654
+ animation-play-state: running;
1655
+ pointer-events: none; }
1656
+
1657
+ .shopee-react-zoom-left-enter,
1658
+ .shopee-react-zoom-left-appear {
1659
+ transform: scale(0);
1660
+ opacity: 0;
1661
+ animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1); }
1662
+ .shopee-react-zoom-left-enter-prepare,
1663
+ .shopee-react-zoom-left-appear-prepare {
1664
+ transform: none; }
1665
+
1666
+ .shopee-react-zoom-left-leave {
1667
+ animation-timing-function: cubic-bezier(0.78, 0.14, 0.15, 0.86); }
1668
+
1669
+ .shopee-react-zoom-right-enter,
1670
+ .shopee-react-zoom-right-appear {
1671
+ animation-duration: 0.2s;
1672
+ animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
1673
+ animation-fill-mode: both;
1674
+ animation-play-state: paused; }
1675
+
1676
+ .shopee-react-zoom-right-leave {
1677
+ animation-duration: 0.2s;
1678
+ animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
1679
+ animation-fill-mode: both;
1680
+ animation-play-state: paused; }
1681
+
1682
+ .shopee-react-zoom-right-enter.shopee-react-zoom-right-enter-active,
1683
+ .shopee-react-zoom-right-appear.shopee-react-zoom-right-appear-active {
1684
+ animation-name: shopeeZoomRightIn;
1685
+ animation-play-state: running; }
1686
+
1687
+ .shopee-react-zoom-right-leave.shopee-react-zoom-right-leave-active {
1688
+ animation-name: shopeeZoomRightOut;
1689
+ animation-play-state: running;
1690
+ pointer-events: none; }
1691
+
1692
+ .shopee-react-zoom-right-enter,
1693
+ .shopee-react-zoom-right-appear {
1694
+ transform: scale(0);
1695
+ opacity: 0;
1696
+ animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1); }
1697
+ .shopee-react-zoom-right-enter-prepare,
1698
+ .shopee-react-zoom-right-appear-prepare {
1699
+ transform: none; }
1700
+
1701
+ .shopee-react-zoom-right-leave {
1702
+ animation-timing-function: cubic-bezier(0.78, 0.14, 0.15, 0.86); }
1703
+
1704
+ @keyframes shopeeZoomIn {
1705
+ 0% {
1706
+ transform: scale(0.2);
1707
+ opacity: 0; }
1708
+ 100% {
1709
+ transform: scale(1);
1710
+ opacity: 1; } }
1711
+
1712
+ @keyframes shopeeZoomOut {
1713
+ 0% {
1714
+ transform: scale(1); }
1715
+ 100% {
1716
+ transform: scale(0.2);
1717
+ opacity: 0; } }
1718
+
1719
+ @keyframes shopeeZoomBigIn {
1720
+ 0% {
1721
+ transform: scale(0.8);
1722
+ opacity: 0; }
1723
+ 100% {
1724
+ transform: scale(1);
1725
+ opacity: 1; } }
1726
+
1727
+ @keyframes shopeeZoomBigOut {
1728
+ 0% {
1729
+ transform: scale(1); }
1730
+ 100% {
1731
+ transform: scale(0.8);
1732
+ opacity: 0; } }
1733
+
1734
+ @keyframes shopeeZoomUpIn {
1735
+ 0% {
1736
+ transform: scale(0.8);
1737
+ transform-origin: 50% 0%;
1738
+ opacity: 0; }
1739
+ 100% {
1740
+ transform: scale(1);
1741
+ transform-origin: 50% 0%; } }
1742
+
1743
+ @keyframes shopeeZoomUpOut {
1744
+ 0% {
1745
+ transform: scale(1);
1746
+ transform-origin: 50% 0%; }
1747
+ 100% {
1748
+ transform: scale(0.8);
1749
+ transform-origin: 50% 0%;
1750
+ opacity: 0; } }
1751
+
1752
+ @keyframes shopeeZoomLeftIn {
1753
+ 0% {
1754
+ transform: scale(0.8);
1755
+ transform-origin: 0% 50%;
1756
+ opacity: 0; }
1757
+ 100% {
1758
+ transform: scale(1);
1759
+ transform-origin: 0% 50%; } }
1760
+
1761
+ @keyframes shopeeZoomLeftOut {
1762
+ 0% {
1763
+ transform: scale(1);
1764
+ transform-origin: 0% 50%; }
1765
+ 100% {
1766
+ transform: scale(0.8);
1767
+ transform-origin: 0% 50%;
1768
+ opacity: 0; } }
1769
+
1770
+ @keyframes shopeeZoomRightIn {
1771
+ 0% {
1772
+ transform: scale(0.8);
1773
+ transform-origin: 100% 50%;
1774
+ opacity: 0; }
1775
+ 100% {
1776
+ transform: scale(1);
1777
+ transform-origin: 100% 50%; } }
1778
+
1779
+ @keyframes shopeeZoomRightOut {
1780
+ 0% {
1781
+ transform: scale(1);
1782
+ transform-origin: 100% 50%; }
1783
+ 100% {
1784
+ transform: scale(0.8);
1785
+ transform-origin: 100% 50%;
1786
+ opacity: 0; } }
1787
+
1788
+ @keyframes shopeeZoomDownIn {
1789
+ 0% {
1790
+ transform: scale(0.8);
1791
+ transform-origin: 50% 100%;
1792
+ opacity: 0; }
1793
+ 100% {
1794
+ transform: scale(1);
1795
+ transform-origin: 50% 100%; } }
1796
+
1797
+ @keyframes shopeeZoomDownOut {
1798
+ 0% {
1799
+ transform: scale(1);
1800
+ transform-origin: 50% 100%; }
1801
+ 100% {
1802
+ transform: scale(0.8);
1803
+ transform-origin: 50% 100%;
1804
+ opacity: 0; } }
1805
+
1806
+ .shopee-react-checkbox-group {
1807
+ display: inline-block;
1808
+ font-size: 0; }
1809
+ .shopee-react-checkbox-group .shopee-react-checkbox:not(:last-of-type) {
1810
+ margin-right: 24px; }
1811
+ .shopee-react-checkbox-group.vertical {
1812
+ vertical-align: middle; }
1813
+ .shopee-react-checkbox-group.vertical .shopee-react-checkbox {
1814
+ display: block;
1815
+ width: 100%;
1816
+ margin-right: 0; }
1817
+ .shopee-react-checkbox-group.vertical .shopee-react-checkbox:not(:last-of-type) {
1818
+ margin-bottom: 16px; }
1819
+ .shopee-react-checkbox-group.vertical .shopee-react-checkbox-button:not(:last-of-type) {
1820
+ margin-bottom: 8px; }
1821
+ .shopee-react-checkbox-group .shopee-react-checkbox-button {
1822
+ float: left; }
1823
+ .shopee-react-checkbox-group .shopee-react-checkbox-button:not(:last-of-type) {
1824
+ margin-right: 8px; }
1825
+ .shopee-react-checkbox-group--x-large .shopee-react-checkbox-button {
1826
+ height: 48px;
1827
+ padding: 0 28px;
1828
+ font-size: 16px;
1829
+ line-height: 48px; }
1830
+ .shopee-react-checkbox-group--x-large .shopee-react-checkbox-button__indicator {
1831
+ width: 24px;
1832
+ height: 24px; }
1833
+ .shopee-react-checkbox-group--x-large .shopee-react-checkbox-button__indicator::before {
1834
+ border-width: 12px; }
1835
+ .shopee-react-checkbox-group--x-large .shopee-react-checkbox-button__indicator .shopee-react-icon {
1836
+ width: 16px;
1837
+ line-height: 16px; }
1838
+ .shopee-react-checkbox-group--large .shopee-react-checkbox-button {
1839
+ height: 40px;
1840
+ padding: 0 24px;
1841
+ font-size: 14px;
1842
+ line-height: 40px; }
1843
+ .shopee-react-checkbox-group--large .shopee-react-checkbox-button__indicator {
1844
+ width: 20px;
1845
+ height: 20px; }
1846
+ .shopee-react-checkbox-group--large .shopee-react-checkbox-button__indicator::before {
1847
+ border-width: 10px; }
1848
+ .shopee-react-checkbox-group--large .shopee-react-checkbox-button__indicator .shopee-react-icon {
1849
+ width: 14px;
1850
+ line-height: 14px; }
1851
+ .shopee-react-checkbox-group--small .shopee-react-checkbox-button {
1852
+ height: 24px;
1853
+ padding: 0 8px;
1854
+ font-size: 12px;
1855
+ line-height: 24px; }
1856
+ .shopee-react-checkbox-group--small .shopee-react-checkbox-button__indicator {
1857
+ width: 12px;
1858
+ height: 12px; }
1859
+ .shopee-react-checkbox-group--small .shopee-react-checkbox-button__indicator::before {
1860
+ border-width: 6px; }
1861
+ .shopee-react-checkbox-group--small .shopee-react-checkbox-button__indicator .shopee-react-icon {
1862
+ width: 10px;
1863
+ line-height: 10px; }
1864
+
1865
+ /** text **/
1866
+ /** z-index **/
1867
+ /** fill **/
1868
+ /** boder **/
1869
+ .move-up-enter,
1870
+ .move-up-appear {
1871
+ animation-duration: 0.2s;
1872
+ animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
1873
+ animation-fill-mode: both;
1874
+ animation-play-state: paused; }
1875
+
1876
+ .move-up-leave {
1877
+ animation-duration: 0.2s;
1878
+ animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
1879
+ animation-fill-mode: both;
1880
+ animation-play-state: paused; }
1881
+
1882
+ .move-up-enter.move-up-enter-active,
1883
+ .move-up-appear.move-up-appear-active {
1884
+ animation-name: shopeeMoveUpIn;
1885
+ animation-play-state: running; }
1886
+
1887
+ .move-up-leave.move-up-leave-active {
1888
+ animation-name: shopeeMoveUpOut;
1889
+ animation-play-state: running;
1890
+ pointer-events: none; }
1891
+
1892
+ .move-up-enter,
1893
+ .move-up-appear {
1894
+ opacity: 0;
1895
+ animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1); }
1896
+
1897
+ .move-up-leave {
1898
+ animation-timing-function: cubic-bezier(0.6, 0.04, 0.98, 0.34); }
1899
+
1900
+ .move-down-enter,
1901
+ .move-down-appear {
1902
+ animation-duration: 0.2s;
1903
+ animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
1904
+ animation-fill-mode: both;
1905
+ animation-play-state: paused; }
1906
+
1907
+ .move-down-leave {
1908
+ animation-duration: 0.2s;
1909
+ animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
1910
+ animation-fill-mode: both;
1911
+ animation-play-state: paused; }
1912
+
1913
+ .move-down-enter.move-down-enter-active,
1914
+ .move-down-appear.move-down-appear-active {
1915
+ animation-name: shopeeMoveDownIn;
1916
+ animation-play-state: running; }
1917
+
1918
+ .move-down-leave.move-down-leave-active {
1919
+ animation-name: shopeeMoveDownOut;
1920
+ animation-play-state: running;
1921
+ pointer-events: none; }
1922
+
1923
+ .move-down-enter,
1924
+ .move-down-appear {
1925
+ opacity: 0;
1926
+ animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1); }
1927
+
1928
+ .move-down-leave {
1929
+ animation-timing-function: cubic-bezier(0.6, 0.04, 0.98, 0.34); }
1930
+
1931
+ .move-left-enter,
1932
+ .move-left-appear {
1933
+ animation-duration: 0.2s;
1934
+ animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
1935
+ animation-fill-mode: both;
1936
+ animation-play-state: paused; }
1937
+
1938
+ .move-left-leave {
1939
+ animation-duration: 0.2s;
1940
+ animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
1941
+ animation-fill-mode: both;
1942
+ animation-play-state: paused; }
1943
+
1944
+ .move-left-enter.move-left-enter-active,
1945
+ .move-left-appear.move-left-appear-active {
1946
+ animation-name: shopeeMoveLeftIn;
1947
+ animation-play-state: running; }
1948
+
1949
+ .move-left-leave.move-left-leave-active {
1950
+ animation-name: shopeeMoveLeftOut;
1951
+ animation-play-state: running;
1952
+ pointer-events: none; }
1953
+
1954
+ .move-left-enter,
1955
+ .move-left-appear {
1956
+ opacity: 0;
1957
+ animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1); }
1958
+
1959
+ .move-left-leave {
1960
+ animation-timing-function: cubic-bezier(0.6, 0.04, 0.98, 0.34); }
1961
+
1962
+ .move-right-enter,
1963
+ .move-right-appear {
1964
+ animation-duration: 0.2s;
1965
+ animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
1966
+ animation-fill-mode: both;
1967
+ animation-play-state: paused; }
1968
+
1969
+ .move-right-leave {
1970
+ animation-duration: 0.2s;
1971
+ animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
1972
+ animation-fill-mode: both;
1973
+ animation-play-state: paused; }
1974
+
1975
+ .move-right-enter.move-right-enter-active,
1976
+ .move-right-appear.move-right-appear-active {
1977
+ animation-name: shopeeMoveRightIn;
1978
+ animation-play-state: running; }
1979
+
1980
+ .move-right-leave.move-right-leave-active {
1981
+ animation-name: shopeeMoveRightOut;
1982
+ animation-play-state: running;
1983
+ pointer-events: none; }
1984
+
1985
+ .move-right-enter,
1986
+ .move-right-appear {
1987
+ opacity: 0;
1988
+ animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1); }
1989
+
1990
+ .move-right-leave {
1991
+ animation-timing-function: cubic-bezier(0.6, 0.04, 0.98, 0.34); }
1992
+
1993
+ @keyframes shopeeMoveDownIn {
1994
+ 0% {
1995
+ transform: translateY(100%);
1996
+ transform-origin: 0 0;
1997
+ opacity: 0; }
1998
+ 100% {
1999
+ transform: translateY(0%);
2000
+ transform-origin: 0 0;
2001
+ opacity: 1; } }
2002
+
2003
+ @keyframes shopeeMoveDownOut {
2004
+ 0% {
2005
+ transform: translateY(0%);
2006
+ transform-origin: 0 0;
2007
+ opacity: 1; }
2008
+ 100% {
2009
+ transform: translateY(100%);
2010
+ transform-origin: 0 0;
2011
+ opacity: 0; } }
2012
+
2013
+ @keyframes shopeeMoveLeftIn {
2014
+ 0% {
2015
+ transform: translateX(-100%);
2016
+ transform-origin: 0 0;
2017
+ opacity: 0; }
2018
+ 100% {
2019
+ transform: translateX(0%);
2020
+ transform-origin: 0 0;
2021
+ opacity: 1; } }
2022
+
2023
+ @keyframes shopeeMoveLeftOut {
2024
+ 0% {
2025
+ transform: translateX(0%);
2026
+ transform-origin: 0 0;
2027
+ opacity: 1; }
2028
+ 100% {
2029
+ transform: translateX(-100%);
2030
+ transform-origin: 0 0;
2031
+ opacity: 0; } }
2032
+
2033
+ @keyframes shopeeMoveRightIn {
2034
+ 0% {
2035
+ transform: translateX(100%);
2036
+ transform-origin: 0 0;
2037
+ opacity: 0; }
2038
+ 100% {
2039
+ transform: translateX(0%);
2040
+ transform-origin: 0 0;
2041
+ opacity: 1; } }
2042
+
2043
+ @keyframes shopeeMoveRightOut {
2044
+ 0% {
2045
+ transform: translateX(0%);
2046
+ transform-origin: 0 0;
2047
+ opacity: 1; }
2048
+ 100% {
2049
+ transform: translateX(100%);
2050
+ transform-origin: 0 0;
2051
+ opacity: 0; } }
2052
+
2053
+ @keyframes shopeeMoveUpIn {
2054
+ 0% {
2055
+ transform: translateY(-100%);
2056
+ transform-origin: 0 0;
2057
+ opacity: 0; }
2058
+ 100% {
2059
+ transform: translateY(0%);
2060
+ transform-origin: 0 0;
2061
+ opacity: 1; } }
2062
+
2063
+ @keyframes shopeeMoveUpOut {
2064
+ 0% {
2065
+ transform: translateY(0%);
2066
+ transform-origin: 0 0;
2067
+ opacity: 1; }
2068
+ 100% {
2069
+ transform: translateY(-100%);
2070
+ transform-origin: 0 0;
2071
+ opacity: 0; } }
2072
+
2073
+ .shopee-react-zoom-enter,
2074
+ .shopee-react-zoom-appear {
2075
+ animation-duration: 0.2s;
2076
+ animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
2077
+ animation-fill-mode: both;
2078
+ animation-play-state: paused; }
2079
+
2080
+ .shopee-react-zoom-leave {
2081
+ animation-duration: 0.2s;
2082
+ animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
2083
+ animation-fill-mode: both;
2084
+ animation-play-state: paused; }
2085
+
2086
+ .shopee-react-zoom-enter.shopee-react-zoom-enter-active,
2087
+ .shopee-react-zoom-appear.shopee-react-zoom-appear-active {
2088
+ animation-name: shopeeZoomIn;
2089
+ animation-play-state: running; }
2090
+
2091
+ .shopee-react-zoom-leave.shopee-react-zoom-leave-active {
2092
+ animation-name: shopeeZoomOut;
2093
+ animation-play-state: running;
2094
+ pointer-events: none; }
2095
+
2096
+ .shopee-react-zoom-enter,
2097
+ .shopee-react-zoom-appear {
2098
+ transform: scale(0);
2099
+ opacity: 0;
2100
+ animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1); }
2101
+ .shopee-react-zoom-enter-prepare,
2102
+ .shopee-react-zoom-appear-prepare {
2103
+ transform: none; }
2104
+
2105
+ .shopee-react-zoom-leave {
2106
+ animation-timing-function: cubic-bezier(0.78, 0.14, 0.15, 0.86); }
2107
+
2108
+ .shopee-react-zoom-big-enter,
2109
+ .shopee-react-zoom-big-appear {
2110
+ animation-duration: 0.2s;
2111
+ animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
2112
+ animation-fill-mode: both;
2113
+ animation-play-state: paused; }
2114
+
2115
+ .shopee-react-zoom-big-leave {
2116
+ animation-duration: 0.2s;
2117
+ animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
2118
+ animation-fill-mode: both;
2119
+ animation-play-state: paused; }
2120
+
2121
+ .shopee-react-zoom-big-enter.shopee-react-zoom-big-enter-active,
2122
+ .shopee-react-zoom-big-appear.shopee-react-zoom-big-appear-active {
2123
+ animation-name: shopeeZoomBigIn;
2124
+ animation-play-state: running; }
2125
+
2126
+ .shopee-react-zoom-big-leave.shopee-react-zoom-big-leave-active {
2127
+ animation-name: shopeeZoomBigOut;
2128
+ animation-play-state: running;
2129
+ pointer-events: none; }
2130
+
2131
+ .shopee-react-zoom-big-enter,
2132
+ .shopee-react-zoom-big-appear {
2133
+ transform: scale(0);
2134
+ opacity: 0;
2135
+ animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1); }
2136
+ .shopee-react-zoom-big-enter-prepare,
2137
+ .shopee-react-zoom-big-appear-prepare {
2138
+ transform: none; }
2139
+
2140
+ .shopee-react-zoom-big-leave {
2141
+ animation-timing-function: cubic-bezier(0.78, 0.14, 0.15, 0.86); }
2142
+
2143
+ .shopee-react-zoom-big-fast-enter,
2144
+ .shopee-react-zoom-big-fast-appear {
2145
+ animation-duration: 0.1s;
2146
+ animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
2147
+ animation-fill-mode: both;
2148
+ animation-play-state: paused; }
2149
+
2150
+ .shopee-react-zoom-big-fast-leave {
2151
+ animation-duration: 0.1s;
2152
+ animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
2153
+ animation-fill-mode: both;
2154
+ animation-play-state: paused; }
2155
+
2156
+ .shopee-react-zoom-big-fast-enter.shopee-react-zoom-big-fast-enter-active,
2157
+ .shopee-react-zoom-big-fast-appear.shopee-react-zoom-big-fast-appear-active {
2158
+ animation-name: shopeeZoomBigIn;
2159
+ animation-play-state: running; }
2160
+
2161
+ .shopee-react-zoom-big-fast-leave.shopee-react-zoom-big-fast-leave-active {
2162
+ animation-name: shopeeZoomBigOut;
2163
+ animation-play-state: running;
2164
+ pointer-events: none; }
2165
+
2166
+ .shopee-react-zoom-big-fast-enter,
2167
+ .shopee-react-zoom-big-fast-appear {
2168
+ transform: scale(0);
2169
+ opacity: 0;
2170
+ animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1); }
2171
+ .shopee-react-zoom-big-fast-enter-prepare,
2172
+ .shopee-react-zoom-big-fast-appear-prepare {
2173
+ transform: none; }
2174
+
2175
+ .shopee-react-zoom-big-fast-leave {
2176
+ animation-timing-function: cubic-bezier(0.78, 0.14, 0.15, 0.86); }
2177
+
2178
+ .shopee-react-zoom-up-enter,
2179
+ .shopee-react-zoom-up-appear {
2180
+ animation-duration: 0.2s;
2181
+ animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
2182
+ animation-fill-mode: both;
2183
+ animation-play-state: paused; }
2184
+
2185
+ .shopee-react-zoom-up-leave {
2186
+ animation-duration: 0.2s;
2187
+ animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
2188
+ animation-fill-mode: both;
2189
+ animation-play-state: paused; }
2190
+
2191
+ .shopee-react-zoom-up-enter.shopee-react-zoom-up-enter-active,
2192
+ .shopee-react-zoom-up-appear.shopee-react-zoom-up-appear-active {
2193
+ animation-name: shopeeZoomUpIn;
2194
+ animation-play-state: running; }
2195
+
2196
+ .shopee-react-zoom-up-leave.shopee-react-zoom-up-leave-active {
2197
+ animation-name: shopeeZoomUpOut;
2198
+ animation-play-state: running;
2199
+ pointer-events: none; }
2200
+
2201
+ .shopee-react-zoom-up-enter,
2202
+ .shopee-react-zoom-up-appear {
2203
+ transform: scale(0);
2204
+ opacity: 0;
2205
+ animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1); }
2206
+ .shopee-react-zoom-up-enter-prepare,
2207
+ .shopee-react-zoom-up-appear-prepare {
2208
+ transform: none; }
2209
+
2210
+ .shopee-react-zoom-up-leave {
2211
+ animation-timing-function: cubic-bezier(0.78, 0.14, 0.15, 0.86); }
2212
+
2213
+ .shopee-react-zoom-down-enter,
2214
+ .shopee-react-zoom-down-appear {
2215
+ animation-duration: 0.2s;
2216
+ animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
2217
+ animation-fill-mode: both;
2218
+ animation-play-state: paused; }
2219
+
2220
+ .shopee-react-zoom-down-leave {
2221
+ animation-duration: 0.2s;
2222
+ animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
2223
+ animation-fill-mode: both;
2224
+ animation-play-state: paused; }
2225
+
2226
+ .shopee-react-zoom-down-enter.shopee-react-zoom-down-enter-active,
2227
+ .shopee-react-zoom-down-appear.shopee-react-zoom-down-appear-active {
2228
+ animation-name: shopeeZoomDownIn;
2229
+ animation-play-state: running; }
2230
+
2231
+ .shopee-react-zoom-down-leave.shopee-react-zoom-down-leave-active {
2232
+ animation-name: shopeeZoomDownOut;
2233
+ animation-play-state: running;
2234
+ pointer-events: none; }
2235
+
2236
+ .shopee-react-zoom-down-enter,
2237
+ .shopee-react-zoom-down-appear {
2238
+ transform: scale(0);
2239
+ opacity: 0;
2240
+ animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1); }
2241
+ .shopee-react-zoom-down-enter-prepare,
2242
+ .shopee-react-zoom-down-appear-prepare {
2243
+ transform: none; }
2244
+
2245
+ .shopee-react-zoom-down-leave {
2246
+ animation-timing-function: cubic-bezier(0.78, 0.14, 0.15, 0.86); }
2247
+
2248
+ .shopee-react-zoom-left-enter,
2249
+ .shopee-react-zoom-left-appear {
2250
+ animation-duration: 0.2s;
2251
+ animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
2252
+ animation-fill-mode: both;
2253
+ animation-play-state: paused; }
2254
+
2255
+ .shopee-react-zoom-left-leave {
2256
+ animation-duration: 0.2s;
2257
+ animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
2258
+ animation-fill-mode: both;
2259
+ animation-play-state: paused; }
2260
+
2261
+ .shopee-react-zoom-left-enter.shopee-react-zoom-left-enter-active,
2262
+ .shopee-react-zoom-left-appear.shopee-react-zoom-left-appear-active {
2263
+ animation-name: shopeeZoomLeftIn;
2264
+ animation-play-state: running; }
2265
+
2266
+ .shopee-react-zoom-left-leave.shopee-react-zoom-left-leave-active {
2267
+ animation-name: shopeeZoomLeftOut;
2268
+ animation-play-state: running;
2269
+ pointer-events: none; }
2270
+
2271
+ .shopee-react-zoom-left-enter,
2272
+ .shopee-react-zoom-left-appear {
2273
+ transform: scale(0);
2274
+ opacity: 0;
2275
+ animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1); }
2276
+ .shopee-react-zoom-left-enter-prepare,
2277
+ .shopee-react-zoom-left-appear-prepare {
2278
+ transform: none; }
2279
+
2280
+ .shopee-react-zoom-left-leave {
2281
+ animation-timing-function: cubic-bezier(0.78, 0.14, 0.15, 0.86); }
2282
+
2283
+ .shopee-react-zoom-right-enter,
2284
+ .shopee-react-zoom-right-appear {
2285
+ animation-duration: 0.2s;
2286
+ animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
2287
+ animation-fill-mode: both;
2288
+ animation-play-state: paused; }
2289
+
2290
+ .shopee-react-zoom-right-leave {
2291
+ animation-duration: 0.2s;
2292
+ animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
2293
+ animation-fill-mode: both;
2294
+ animation-play-state: paused; }
2295
+
2296
+ .shopee-react-zoom-right-enter.shopee-react-zoom-right-enter-active,
2297
+ .shopee-react-zoom-right-appear.shopee-react-zoom-right-appear-active {
2298
+ animation-name: shopeeZoomRightIn;
2299
+ animation-play-state: running; }
2300
+
2301
+ .shopee-react-zoom-right-leave.shopee-react-zoom-right-leave-active {
2302
+ animation-name: shopeeZoomRightOut;
2303
+ animation-play-state: running;
2304
+ pointer-events: none; }
2305
+
2306
+ .shopee-react-zoom-right-enter,
2307
+ .shopee-react-zoom-right-appear {
2308
+ transform: scale(0);
2309
+ opacity: 0;
2310
+ animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1); }
2311
+ .shopee-react-zoom-right-enter-prepare,
2312
+ .shopee-react-zoom-right-appear-prepare {
2313
+ transform: none; }
2314
+
2315
+ .shopee-react-zoom-right-leave {
2316
+ animation-timing-function: cubic-bezier(0.78, 0.14, 0.15, 0.86); }
2317
+
2318
+ @keyframes shopeeZoomIn {
2319
+ 0% {
2320
+ transform: scale(0.2);
2321
+ opacity: 0; }
2322
+ 100% {
2323
+ transform: scale(1);
2324
+ opacity: 1; } }
2325
+
2326
+ @keyframes shopeeZoomOut {
2327
+ 0% {
2328
+ transform: scale(1); }
2329
+ 100% {
2330
+ transform: scale(0.2);
2331
+ opacity: 0; } }
2332
+
2333
+ @keyframes shopeeZoomBigIn {
2334
+ 0% {
2335
+ transform: scale(0.8);
2336
+ opacity: 0; }
2337
+ 100% {
2338
+ transform: scale(1);
2339
+ opacity: 1; } }
2340
+
2341
+ @keyframes shopeeZoomBigOut {
2342
+ 0% {
2343
+ transform: scale(1); }
2344
+ 100% {
2345
+ transform: scale(0.8);
2346
+ opacity: 0; } }
2347
+
2348
+ @keyframes shopeeZoomUpIn {
2349
+ 0% {
2350
+ transform: scale(0.8);
2351
+ transform-origin: 50% 0%;
2352
+ opacity: 0; }
2353
+ 100% {
2354
+ transform: scale(1);
2355
+ transform-origin: 50% 0%; } }
2356
+
2357
+ @keyframes shopeeZoomUpOut {
2358
+ 0% {
2359
+ transform: scale(1);
2360
+ transform-origin: 50% 0%; }
2361
+ 100% {
2362
+ transform: scale(0.8);
2363
+ transform-origin: 50% 0%;
2364
+ opacity: 0; } }
2365
+
2366
+ @keyframes shopeeZoomLeftIn {
2367
+ 0% {
2368
+ transform: scale(0.8);
2369
+ transform-origin: 0% 50%;
2370
+ opacity: 0; }
2371
+ 100% {
2372
+ transform: scale(1);
2373
+ transform-origin: 0% 50%; } }
2374
+
2375
+ @keyframes shopeeZoomLeftOut {
2376
+ 0% {
2377
+ transform: scale(1);
2378
+ transform-origin: 0% 50%; }
2379
+ 100% {
2380
+ transform: scale(0.8);
2381
+ transform-origin: 0% 50%;
2382
+ opacity: 0; } }
2383
+
2384
+ @keyframes shopeeZoomRightIn {
2385
+ 0% {
2386
+ transform: scale(0.8);
2387
+ transform-origin: 100% 50%;
2388
+ opacity: 0; }
2389
+ 100% {
2390
+ transform: scale(1);
2391
+ transform-origin: 100% 50%; } }
2392
+
2393
+ @keyframes shopeeZoomRightOut {
2394
+ 0% {
2395
+ transform: scale(1);
2396
+ transform-origin: 100% 50%; }
2397
+ 100% {
2398
+ transform: scale(0.8);
2399
+ transform-origin: 100% 50%;
2400
+ opacity: 0; } }
2401
+
2402
+ @keyframes shopeeZoomDownIn {
2403
+ 0% {
2404
+ transform: scale(0.8);
2405
+ transform-origin: 50% 100%;
2406
+ opacity: 0; }
2407
+ 100% {
2408
+ transform: scale(1);
2409
+ transform-origin: 50% 100%; } }
2410
+
2411
+ @keyframes shopeeZoomDownOut {
2412
+ 0% {
2413
+ transform: scale(1);
2414
+ transform-origin: 50% 100%; }
2415
+ 100% {
2416
+ transform: scale(0.8);
2417
+ transform-origin: 50% 100%;
2418
+ opacity: 0; } }
2419
+
2420
+ .shopee-react-icon {
2421
+ display: inline-block;
2422
+ color: inherit;
2423
+ font-style: normal;
2424
+ line-height: 0;
2425
+ text-align: center;
2426
+ text-transform: none;
2427
+ fill: currentColor;
2428
+ vertical-align: -0.125em;
2429
+ text-rendering: optimizeLegibility;
2430
+ -webkit-font-smoothing: antialiased;
2431
+ -moz-osx-font-smoothing: grayscale;
2432
+ outline: none; }
2433
+ .shopee-react-icon > * {
2434
+ line-height: 1; }
2435
+ .shopee-react-icon svg {
2436
+ width: 100%;
2437
+ height: 100%; }
2438
+ .shopee-react-icon .shopee-react-icon-icon {
2439
+ display: block; }
2440
+ .shopee-react-icon[tabindex] {
2441
+ cursor: pointer; }
2442
+ .shopee-react-icon-spin {
2443
+ display: inline-block;
2444
+ animation: shopee-react-icon-spin 1s 0s infinite linear; }
2445
+
2446
+ @keyframes shopee-react-icon-spin {
2447
+ 0% {
2448
+ transform: rotate(0deg); }
2449
+ 100% {
2450
+ transform: rotate(360deg); } }