@ucloud-fe/react-components 1.5.17 → 1.5.18

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (781) hide show
  1. package/CHANGELOG.md +1935 -0
  2. package/dist/assets/ucicon.eot +0 -0
  3. package/dist/assets/ucicon.svg +1569 -0
  4. package/dist/assets/ucicon.ttf +0 -0
  5. package/dist/assets/ucicon.woff +0 -0
  6. package/dist/icon.min.css +1 -0
  7. package/dist/icon.min.js +1 -0
  8. package/dist/main.min.js +19 -0
  9. package/lib/__index.js +228 -0
  10. package/lib/components/ActionList/ActionList.d.ts +40 -0
  11. package/lib/components/ActionList/ActionList.js +349 -0
  12. package/lib/components/ActionList/index.d.ts +10 -0
  13. package/lib/components/ActionList/index.js +23 -0
  14. package/lib/components/ActionList/style/index.d.ts +3 -0
  15. package/lib/components/ActionList/style/index.js +45 -0
  16. package/lib/components/AutoComplete/AutoComplete.d.ts +40 -0
  17. package/lib/components/AutoComplete/AutoComplete.js +181 -0
  18. package/lib/components/AutoComplete/Popup.d.ts +19 -0
  19. package/lib/components/AutoComplete/Popup.js +123 -0
  20. package/lib/components/AutoComplete/index.d.ts +2 -0
  21. package/lib/components/AutoComplete/index.js +13 -0
  22. package/lib/components/AutoComplete/style/index.d.ts +17 -0
  23. package/lib/components/AutoComplete/style/index.js +55 -0
  24. package/lib/components/Badge/Badge.d.ts +43 -0
  25. package/lib/components/Badge/Badge.js +175 -0
  26. package/lib/components/Badge/Bubble.d.ts +47 -0
  27. package/lib/components/Badge/Bubble.js +152 -0
  28. package/lib/components/Badge/index.d.ts +7 -0
  29. package/lib/components/Badge/index.js +20 -0
  30. package/lib/components/Badge/placements.d.ts +35 -0
  31. package/lib/components/Badge/placements.js +43 -0
  32. package/lib/components/Badge/style/index.d.ts +54 -0
  33. package/lib/components/Badge/style/index.js +143 -0
  34. package/lib/components/Box/Box.d.ts +47 -0
  35. package/lib/components/Box/Box.js +135 -0
  36. package/lib/components/Box/index.d.ts +2 -0
  37. package/lib/components/Box/index.js +13 -0
  38. package/lib/components/Box/style/index.d.ts +1 -0
  39. package/lib/components/Box/style/index.js +136 -0
  40. package/lib/components/Breadcrumb/BackButton.d.ts +4 -0
  41. package/lib/components/Breadcrumb/BackButton.js +24 -0
  42. package/lib/components/Breadcrumb/Breadcrumb.d.ts +10 -0
  43. package/lib/components/Breadcrumb/Breadcrumb.js +60 -0
  44. package/lib/components/Breadcrumb/Item.d.ts +16 -0
  45. package/lib/components/Breadcrumb/Item.js +62 -0
  46. package/lib/components/Breadcrumb/index.d.ts +11 -0
  47. package/lib/components/Breadcrumb/index.js +27 -0
  48. package/lib/components/Breadcrumb/interface.d.ts +2 -0
  49. package/lib/components/Breadcrumb/interface.js +11 -0
  50. package/lib/components/Breadcrumb/style/index.d.ts +20 -0
  51. package/lib/components/Breadcrumb/style/index.js +104 -0
  52. package/lib/components/Button/.recodo/interaction.js +64 -0
  53. package/lib/components/Button/Button.d.ts +54 -0
  54. package/lib/components/Button/Button.js +132 -0
  55. package/lib/components/Button/index.d.ts +2 -0
  56. package/lib/components/Button/index.js +13 -0
  57. package/lib/components/Button/shared.d.ts +3 -0
  58. package/lib/components/Button/shared.js +15 -0
  59. package/lib/components/Button/style/index.d.ts +22 -0
  60. package/lib/components/Button/style/index.js +240 -0
  61. package/lib/components/Calendar/Calendar.d.ts +37 -0
  62. package/lib/components/Calendar/Calendar.js +113 -0
  63. package/lib/components/Calendar/Cell.d.ts +8 -0
  64. package/lib/components/Calendar/Cell.js +55 -0
  65. package/lib/components/Calendar/HeaderButton.d.ts +8 -0
  66. package/lib/components/Calendar/HeaderButton.js +75 -0
  67. package/lib/components/Calendar/HeaderSwitcher.d.ts +17 -0
  68. package/lib/components/Calendar/HeaderSwitcher.js +64 -0
  69. package/lib/components/Calendar/Month.d.ts +5 -0
  70. package/lib/components/Calendar/Month.js +93 -0
  71. package/lib/components/Calendar/TwoSide.d.ts +4 -0
  72. package/lib/components/Calendar/TwoSide.js +155 -0
  73. package/lib/components/Calendar/index.d.ts +10 -0
  74. package/lib/components/Calendar/index.js +26 -0
  75. package/lib/components/Calendar/locale/en_US.js +30 -0
  76. package/lib/components/Calendar/locale/zh_CN.d.ts +11 -0
  77. package/lib/components/Calendar/locale/zh_CN.js +27 -0
  78. package/lib/components/Calendar/style/index.d.ts +25 -0
  79. package/lib/components/Calendar/style/index.js +82 -0
  80. package/lib/components/Calendar/utils.d.ts +16 -0
  81. package/lib/components/Calendar/utils.js +162 -0
  82. package/lib/components/Card/Action.js +27 -0
  83. package/lib/components/Card/Card.js +109 -0
  84. package/lib/components/Card/Content.js +28 -0
  85. package/lib/components/Card/Footer.js +28 -0
  86. package/lib/components/Card/Header.js +40 -0
  87. package/lib/components/Card/SubArea.js +43 -0
  88. package/lib/components/Card/index.js +30 -0
  89. package/lib/components/Card/style/index.js +131 -0
  90. package/lib/components/Cascader/Cascade.d.ts +24 -0
  91. package/lib/components/Cascader/Cascade.js +280 -0
  92. package/lib/components/Cascader/CascadeContext.d.ts +7 -0
  93. package/lib/components/Cascader/CascadeContext.js +20 -0
  94. package/lib/components/Cascader/Cascader.d.ts +41 -0
  95. package/lib/components/Cascader/Cascader.js +359 -0
  96. package/lib/components/Cascader/Item.d.ts +14 -0
  97. package/lib/components/Cascader/Item.js +97 -0
  98. package/lib/components/Cascader/Items.d.ts +11 -0
  99. package/lib/components/Cascader/Items.js +175 -0
  100. package/lib/components/Cascader/index.d.ts +2 -0
  101. package/lib/components/Cascader/index.js +13 -0
  102. package/lib/components/Cascader/interface.d.ts +12 -0
  103. package/lib/components/Cascader/interface.js +5 -0
  104. package/lib/components/Cascader/locale/en_US.js +11 -0
  105. package/lib/components/Cascader/locale/zh_CN.d.ts +5 -0
  106. package/lib/components/Cascader/locale/zh_CN.js +11 -0
  107. package/lib/components/Cascader/style/cascade.d.ts +15 -0
  108. package/lib/components/Cascader/style/cascade.js +55 -0
  109. package/lib/components/Cascader/style/index.d.ts +11 -0
  110. package/lib/components/Cascader/style/index.js +49 -0
  111. package/lib/components/Checkbox/.recodo/interaction.js +100 -0
  112. package/lib/components/Checkbox/Checkbox.d.ts +29 -0
  113. package/lib/components/Checkbox/Checkbox.js +177 -0
  114. package/lib/components/Checkbox/CheckboxContext.d.ts +8 -0
  115. package/lib/components/Checkbox/CheckboxContext.js +21 -0
  116. package/lib/components/Checkbox/CheckboxIcon.d.ts +7 -0
  117. package/lib/components/Checkbox/CheckboxIcon.js +42 -0
  118. package/lib/components/Checkbox/Group.d.ts +26 -0
  119. package/lib/components/Checkbox/Group.js +108 -0
  120. package/lib/components/Checkbox/index.d.ts +13 -0
  121. package/lib/components/Checkbox/index.js +28 -0
  122. package/lib/components/Checkbox/interface.d.ts +8 -0
  123. package/lib/components/Checkbox/interface.js +17 -0
  124. package/lib/components/Checkbox/style/index.d.ts +31 -0
  125. package/lib/components/Checkbox/style/index.js +81 -0
  126. package/lib/components/Col/index.js +14 -0
  127. package/lib/components/Collapse/Collapse.d.ts +19 -0
  128. package/lib/components/Collapse/Collapse.js +63 -0
  129. package/lib/components/Collapse/CollapseContext.d.ts +4 -0
  130. package/lib/components/Collapse/CollapseContext.js +17 -0
  131. package/lib/components/Collapse/Panel.d.ts +29 -0
  132. package/lib/components/Collapse/Panel.js +98 -0
  133. package/lib/components/Collapse/hooks.d.ts +29 -0
  134. package/lib/components/Collapse/hooks.js +103 -0
  135. package/lib/components/Collapse/index.d.ts +9 -0
  136. package/lib/components/Collapse/index.js +26 -0
  137. package/lib/components/Collapse/style/index.d.ts +6 -0
  138. package/lib/components/Collapse/style/index.js +39 -0
  139. package/lib/components/Combine/Combine.d.ts +19 -0
  140. package/lib/components/Combine/Combine.js +80 -0
  141. package/lib/components/Combine/index.d.ts +3 -0
  142. package/lib/components/Combine/index.js +13 -0
  143. package/lib/components/Combine/style/index.d.ts +6 -0
  144. package/lib/components/Combine/style/index.js +60 -0
  145. package/lib/components/Compact/Compact.js +108 -0
  146. package/lib/components/Compact/index.js +13 -0
  147. package/lib/components/Compact/style/index.js +16 -0
  148. package/lib/components/ConfigProvider/ConfigContext.d.ts +9 -0
  149. package/lib/components/ConfigProvider/ConfigContext.js +24 -0
  150. package/lib/components/ConfigProvider/ConfigProvider.d.ts +40 -0
  151. package/lib/components/ConfigProvider/ConfigProvider.js +75 -0
  152. package/lib/components/ConfigProvider/index.d.ts +4 -0
  153. package/lib/components/ConfigProvider/index.js +20 -0
  154. package/lib/components/DatePicker/DatePicker.d.ts +73 -0
  155. package/lib/components/DatePicker/DatePicker.js +168 -0
  156. package/lib/components/DatePicker/Footer.d.ts +23 -0
  157. package/lib/components/DatePicker/Footer.js +96 -0
  158. package/lib/components/DatePicker/Month.d.ts +5 -0
  159. package/lib/components/DatePicker/Month.js +88 -0
  160. package/lib/components/DatePicker/Range.d.ts +101 -0
  161. package/lib/components/DatePicker/Range.js +549 -0
  162. package/lib/components/DatePicker/index.d.ts +11 -0
  163. package/lib/components/DatePicker/index.js +23 -0
  164. package/lib/components/DatePicker/locale/en_US.js +26 -0
  165. package/lib/components/DatePicker/locale/zh_CN.d.ts +20 -0
  166. package/lib/components/DatePicker/locale/zh_CN.js +26 -0
  167. package/lib/components/DatePicker/style/index.d.ts +62 -0
  168. package/lib/components/DatePicker/style/index.js +193 -0
  169. package/lib/components/DatePicker/usePicker.d.ts +11 -0
  170. package/lib/components/DatePicker/usePicker.js +424 -0
  171. package/lib/components/DatePicker/useRangePicker.d.ts +18 -0
  172. package/lib/components/DatePicker/useRangePicker.js +111 -0
  173. package/lib/components/DatePicker/utils.d.ts +18 -0
  174. package/lib/components/DatePicker/utils.js +143 -0
  175. package/lib/components/Drawer/Drawer.js +252 -0
  176. package/lib/components/Drawer/index.js +13 -0
  177. package/lib/components/Drawer/style/index.js +82 -0
  178. package/lib/components/EditableList/EditableList.js +277 -0
  179. package/lib/components/EditableList/index.js +13 -0
  180. package/lib/components/EditableList/locale/en_US.js +10 -0
  181. package/lib/components/EditableList/locale/zh_CN.js +10 -0
  182. package/lib/components/EditableList/style/index.js +28 -0
  183. package/lib/components/EditableTable/EditableTable.js +227 -0
  184. package/lib/components/EditableTable/index.js +13 -0
  185. package/lib/components/EditableTable/style/index.js +60 -0
  186. package/lib/components/Form/ControllerContext.d.ts +5 -0
  187. package/lib/components/Form/ControllerContext.js +15 -0
  188. package/lib/components/Form/Form.js +95 -0
  189. package/lib/components/Form/Group.js +89 -0
  190. package/lib/components/Form/Item.d.ts +37 -0
  191. package/lib/components/Form/Item.js +243 -0
  192. package/lib/components/Form/ItemContext.d.ts +3 -0
  193. package/lib/components/Form/ItemContext.js +15 -0
  194. package/lib/components/Form/ItemPropsWrap.js +44 -0
  195. package/lib/components/Form/SubArea.js +48 -0
  196. package/lib/components/Form/index.js +22 -0
  197. package/lib/components/Form/style/index.d.ts +59 -0
  198. package/lib/components/Form/style/index.js +229 -0
  199. package/lib/components/Grid/Col.d.ts +16 -0
  200. package/lib/components/Grid/Col.js +51 -0
  201. package/lib/components/Grid/Row.d.ts +17 -0
  202. package/lib/components/Grid/Row.js +68 -0
  203. package/lib/components/Grid/index.d.ts +8 -0
  204. package/lib/components/Grid/index.js +30 -0
  205. package/lib/components/Grid/style/index.d.ts +2 -0
  206. package/lib/components/Grid/style/index.js +143 -0
  207. package/lib/components/Icon/Icon.d.ts +11 -0
  208. package/lib/components/Icon/Icon.js +65 -0
  209. package/lib/components/Icon/index.d.ts +2 -0
  210. package/lib/components/Icon/index.js +13 -0
  211. package/lib/components/Icon/style/index.d.ts +7 -0
  212. package/lib/components/Icon/style/index.js +34 -0
  213. package/lib/components/Input/.recodo/interaction.js +96 -0
  214. package/lib/components/Input/Input.d.ts +45 -0
  215. package/lib/components/Input/Input.js +173 -0
  216. package/lib/components/Input/Search.d.ts +8 -0
  217. package/lib/components/Input/Search.js +82 -0
  218. package/lib/components/Input/index.d.ts +12 -0
  219. package/lib/components/Input/index.js +37 -0
  220. package/lib/components/Input/style/index.d.ts +34 -0
  221. package/lib/components/Input/style/index.js +169 -0
  222. package/lib/components/Link/Button.d.ts +24 -0
  223. package/lib/components/Link/Button.js +114 -0
  224. package/lib/components/Link/Link.d.ts +9 -0
  225. package/lib/components/Link/Link.js +30 -0
  226. package/lib/components/Link/index.d.ts +9 -0
  227. package/lib/components/Link/index.js +20 -0
  228. package/lib/components/Link/style/index.d.ts +3 -0
  229. package/lib/components/Link/style/index.js +35 -0
  230. package/lib/components/Loading/Loading.d.ts +27 -0
  231. package/lib/components/Loading/Loading.js +108 -0
  232. package/lib/components/Loading/index.d.ts +2 -0
  233. package/lib/components/Loading/index.js +13 -0
  234. package/lib/components/Loading/style/index.d.ts +8 -0
  235. package/lib/components/Loading/style/index.js +89 -0
  236. package/lib/components/LocaleProvider/LocaleContext.d.ts +9 -0
  237. package/lib/components/LocaleProvider/LocaleContext.js +15 -0
  238. package/lib/components/LocaleProvider/LocaleProvider.d.ts +7 -0
  239. package/lib/components/LocaleProvider/LocaleProvider.js +44 -0
  240. package/lib/components/LocaleProvider/index.d.ts +12 -0
  241. package/lib/components/LocaleProvider/index.js +20 -0
  242. package/lib/components/LocaleProvider/locale/en_US.js +55 -0
  243. package/lib/components/LocaleProvider/locale/zh_CN.js +55 -0
  244. package/lib/components/LocaleProvider/localeConsumerDecorator.d.ts +11 -0
  245. package/lib/components/LocaleProvider/localeConsumerDecorator.js +78 -0
  246. package/lib/components/LocaleProvider/runtime.d.ts +4 -0
  247. package/lib/components/LocaleProvider/runtime.js +28 -0
  248. package/lib/components/LocaleProvider/useLocale.d.ts +6 -0
  249. package/lib/components/LocaleProvider/useLocale.js +44 -0
  250. package/lib/components/Menu/Item.d.ts +20 -0
  251. package/lib/components/Menu/Item.js +107 -0
  252. package/lib/components/Menu/Menu.d.ts +59 -0
  253. package/lib/components/Menu/Menu.js +386 -0
  254. package/lib/components/Menu/MenuContext.d.ts +8 -0
  255. package/lib/components/Menu/MenuContext.js +27 -0
  256. package/lib/components/Menu/SubMenu.d.ts +20 -0
  257. package/lib/components/Menu/SubMenu.js +128 -0
  258. package/lib/components/Menu/index.d.ts +19 -0
  259. package/lib/components/Menu/index.js +35 -0
  260. package/lib/components/Menu/locale/en_US.js +10 -0
  261. package/lib/components/Menu/locale/zh_CN.d.ts +4 -0
  262. package/lib/components/Menu/locale/zh_CN.js +10 -0
  263. package/lib/components/Menu/style/index.d.ts +36 -0
  264. package/lib/components/Menu/style/index.js +117 -0
  265. package/lib/components/Message/Message.js +158 -0
  266. package/lib/components/Message/MessageContainer.js +145 -0
  267. package/lib/components/Message/index.js +22 -0
  268. package/lib/components/Message/method.js +232 -0
  269. package/lib/components/Message/style/index.js +141 -0
  270. package/lib/components/Modal/Content.js +57 -0
  271. package/lib/components/Modal/Modal.js +287 -0
  272. package/lib/components/Modal/index.js +25 -0
  273. package/lib/components/Modal/locale/en_US.js +11 -0
  274. package/lib/components/Modal/locale/zh_CN.js +11 -0
  275. package/lib/components/Modal/method.js +436 -0
  276. package/lib/components/Modal/style/index.js +137 -0
  277. package/lib/components/Notice/Notice.d.ts +16 -0
  278. package/lib/components/Notice/Notice.js +126 -0
  279. package/lib/components/Notice/index.d.ts +16 -0
  280. package/lib/components/Notice/index.js +23 -0
  281. package/lib/components/Notice/style/index.d.ts +12 -0
  282. package/lib/components/Notice/style/index.js +90 -0
  283. package/lib/components/NumberInput/NumberInput.d.ts +149 -0
  284. package/lib/components/NumberInput/NumberInput.js +936 -0
  285. package/lib/components/NumberInput/index.d.ts +2 -0
  286. package/lib/components/NumberInput/index.js +13 -0
  287. package/lib/components/NumberInput/style/index.d.ts +9 -0
  288. package/lib/components/NumberInput/style/index.js +92 -0
  289. package/lib/components/Pagination/Options.js +205 -0
  290. package/lib/components/Pagination/Pager.js +65 -0
  291. package/lib/components/Pagination/Pagination.js +664 -0
  292. package/lib/components/Pagination/index.js +13 -0
  293. package/lib/components/Pagination/locale/en_US.js +23 -0
  294. package/lib/components/Pagination/locale/zh_CN.js +23 -0
  295. package/lib/components/Pagination/style/index.js +40 -0
  296. package/lib/components/PopConfirm/PopConfirm.d.ts +11 -0
  297. package/lib/components/PopConfirm/PopConfirm.js +119 -0
  298. package/lib/components/PopConfirm/index.d.ts +2 -0
  299. package/lib/components/PopConfirm/index.js +13 -0
  300. package/lib/components/PopConfirm/locale/en_US.js +11 -0
  301. package/lib/components/PopConfirm/locale/zh_CN.d.ts +5 -0
  302. package/lib/components/PopConfirm/locale/zh_CN.js +11 -0
  303. package/lib/components/PopConfirm/style/index.d.ts +10 -0
  304. package/lib/components/PopConfirm/style/index.js +70 -0
  305. package/lib/components/Popover/ContainerContext.d.ts +8 -0
  306. package/lib/components/Popover/ContainerContext.js +52 -0
  307. package/lib/components/Popover/Popover.d.ts +187 -0
  308. package/lib/components/Popover/Popover.js +380 -0
  309. package/lib/components/Popover/index.d.ts +3 -0
  310. package/lib/components/Popover/index.js +51 -0
  311. package/lib/components/Popover/placements.d.ts +183 -0
  312. package/lib/components/Popover/placements.js +96 -0
  313. package/lib/components/Popover/style/index.d.ts +17 -0
  314. package/lib/components/Popover/style/index.js +96 -0
  315. package/lib/components/Progress/Progress.js +95 -0
  316. package/lib/components/Progress/index.js +13 -0
  317. package/lib/components/Progress/style/index.js +75 -0
  318. package/lib/components/Radio/Button.js +30 -0
  319. package/lib/components/Radio/Card.d.ts +12 -0
  320. package/lib/components/Radio/Card.js +58 -0
  321. package/lib/components/Radio/Group.js +181 -0
  322. package/lib/components/Radio/Radio.js +380 -0
  323. package/lib/components/Radio/RadioIcon.d.ts +6 -0
  324. package/lib/components/Radio/RadioIcon.js +37 -0
  325. package/lib/components/Radio/Tag.js +30 -0
  326. package/lib/components/Radio/index.js +22 -0
  327. package/lib/components/Radio/style/index.d.ts +26 -0
  328. package/lib/components/Radio/style/index.js +260 -0
  329. package/lib/components/Row/index.js +14 -0
  330. package/lib/components/Select/Extra.d.ts +11 -0
  331. package/lib/components/Select/Extra.js +56 -0
  332. package/lib/components/Select/Group.d.ts +20 -0
  333. package/lib/components/Select/Group.js +46 -0
  334. package/lib/components/Select/Option.d.ts +24 -0
  335. package/lib/components/Select/Option.js +64 -0
  336. package/lib/components/Select/Overflow.d.ts +19 -0
  337. package/lib/components/Select/Overflow.js +114 -0
  338. package/lib/components/Select/Select.d.ts +126 -0
  339. package/lib/components/Select/Select.js +1452 -0
  340. package/lib/components/Select/SelectContext.d.ts +8 -0
  341. package/lib/components/Select/SelectContext.js +33 -0
  342. package/lib/components/Select/index.d.ts +21 -0
  343. package/lib/components/Select/index.js +27 -0
  344. package/lib/components/Select/locale/en_US.js +14 -0
  345. package/lib/components/Select/locale/zh_CN.d.ts +8 -0
  346. package/lib/components/Select/locale/zh_CN.js +14 -0
  347. package/lib/components/Select/style/index.d.ts +85 -0
  348. package/lib/components/Select/style/index.js +254 -0
  349. package/lib/components/Skeleton/Skeleton.d.ts +11 -0
  350. package/lib/components/Skeleton/Skeleton.js +64 -0
  351. package/lib/components/Skeleton/index.d.ts +2 -0
  352. package/lib/components/Skeleton/index.js +13 -0
  353. package/lib/components/Skeleton/style/index.d.ts +9 -0
  354. package/lib/components/Skeleton/style/index.js +41 -0
  355. package/lib/components/Slider/Slider.js +781 -0
  356. package/lib/components/Slider/index.js +13 -0
  357. package/lib/components/Slider/locale/en_US.js +19 -0
  358. package/lib/components/Slider/locale/zh_CN.js +19 -0
  359. package/lib/components/Slider/style/index.js +45 -0
  360. package/lib/components/Spin/Spin.js +29 -0
  361. package/lib/components/Spin/index.js +13 -0
  362. package/lib/components/Spin/style/index.js +18 -0
  363. package/lib/components/Steps/Link.js +71 -0
  364. package/lib/components/Steps/Step.js +80 -0
  365. package/lib/components/Steps/StepIcon.js +115 -0
  366. package/lib/components/Steps/Steps.js +147 -0
  367. package/lib/components/Steps/index.js +13 -0
  368. package/lib/components/Steps/style/index.js +141 -0
  369. package/lib/components/SvgIcon/SvgIcon.d.ts +29 -0
  370. package/lib/components/SvgIcon/SvgIcon.js +248 -0
  371. package/lib/components/SvgIcon/SvgIconWrap.d.ts +21 -0
  372. package/lib/components/SvgIcon/SvgIconWrap.js +83 -0
  373. package/lib/components/SvgIcon/icons/ArrowDown.d.ts +3 -0
  374. package/lib/components/SvgIcon/icons/ArrowDown.js +24 -0
  375. package/lib/components/SvgIcon/icons/ArrowLeft.d.ts +3 -0
  376. package/lib/components/SvgIcon/icons/ArrowLeft.js +25 -0
  377. package/lib/components/SvgIcon/icons/ArrowRight.d.ts +3 -0
  378. package/lib/components/SvgIcon/icons/ArrowRight.js +24 -0
  379. package/lib/components/SvgIcon/icons/ArrowUp.d.ts +3 -0
  380. package/lib/components/SvgIcon/icons/ArrowUp.js +24 -0
  381. package/lib/components/SvgIcon/icons/Calendar.d.ts +3 -0
  382. package/lib/components/SvgIcon/icons/Calendar.js +23 -0
  383. package/lib/components/SvgIcon/icons/Circle.d.ts +3 -0
  384. package/lib/components/SvgIcon/icons/Circle.js +25 -0
  385. package/lib/components/SvgIcon/icons/CircleCrossFill.d.ts +3 -0
  386. package/lib/components/SvgIcon/icons/CircleCrossFill.js +23 -0
  387. package/lib/components/SvgIcon/icons/CircleMarkFill.d.ts +3 -0
  388. package/lib/components/SvgIcon/icons/CircleMarkFill.js +23 -0
  389. package/lib/components/SvgIcon/icons/CircleYesMdFill.d.ts +3 -0
  390. package/lib/components/SvgIcon/icons/CircleYesMdFill.js +23 -0
  391. package/lib/components/SvgIcon/icons/Clock.d.ts +3 -0
  392. package/lib/components/SvgIcon/icons/Clock.js +23 -0
  393. package/lib/components/SvgIcon/icons/Cog.d.ts +3 -0
  394. package/lib/components/SvgIcon/icons/Cog.js +24 -0
  395. package/lib/components/SvgIcon/icons/Cross.d.ts +3 -0
  396. package/lib/components/SvgIcon/icons/Cross.js +23 -0
  397. package/lib/components/SvgIcon/icons/CrossBold.d.ts +3 -0
  398. package/lib/components/SvgIcon/icons/CrossBold.js +23 -0
  399. package/lib/components/SvgIcon/icons/CrossCircle.d.ts +3 -0
  400. package/lib/components/SvgIcon/icons/CrossCircle.js +23 -0
  401. package/lib/components/SvgIcon/icons/CrossCircleFilled.d.ts +3 -0
  402. package/lib/components/SvgIcon/icons/CrossCircleFilled.js +23 -0
  403. package/lib/components/SvgIcon/icons/DottedLineArrowRight.d.ts +3 -0
  404. package/lib/components/SvgIcon/icons/DottedLineArrowRight.js +23 -0
  405. package/lib/components/SvgIcon/icons/DoubleArrowLeft.d.ts +3 -0
  406. package/lib/components/SvgIcon/icons/DoubleArrowLeft.js +24 -0
  407. package/lib/components/SvgIcon/icons/DoubleArrowRight.d.ts +3 -0
  408. package/lib/components/SvgIcon/icons/DoubleArrowRight.js +24 -0
  409. package/lib/components/SvgIcon/icons/Dragger.d.ts +3 -0
  410. package/lib/components/SvgIcon/icons/Dragger.js +23 -0
  411. package/lib/components/SvgIcon/icons/Ellipsis.d.ts +3 -0
  412. package/lib/components/SvgIcon/icons/Ellipsis.js +23 -0
  413. package/lib/components/SvgIcon/icons/ExclamationCircleFilled.d.ts +3 -0
  414. package/lib/components/SvgIcon/icons/ExclamationCircleFilled.js +24 -0
  415. package/lib/components/SvgIcon/icons/Eye.d.ts +3 -0
  416. package/lib/components/SvgIcon/icons/Eye.js +23 -0
  417. package/lib/components/SvgIcon/icons/Filter.d.ts +3 -0
  418. package/lib/components/SvgIcon/icons/Filter.js +23 -0
  419. package/lib/components/SvgIcon/icons/Horz.d.ts +3 -0
  420. package/lib/components/SvgIcon/icons/Horz.js +27 -0
  421. package/lib/components/SvgIcon/icons/InfoCircleFilled.d.ts +3 -0
  422. package/lib/components/SvgIcon/icons/InfoCircleFilled.js +24 -0
  423. package/lib/components/SvgIcon/icons/LineArrowDown.d.ts +3 -0
  424. package/lib/components/SvgIcon/icons/LineArrowDown.js +23 -0
  425. package/lib/components/SvgIcon/icons/LineArrowUp.d.ts +3 -0
  426. package/lib/components/SvgIcon/icons/LineArrowUp.js +23 -0
  427. package/lib/components/SvgIcon/icons/LoadingLIne.js +24 -0
  428. package/lib/components/SvgIcon/icons/LoadingLine.d.ts +3 -0
  429. package/lib/components/SvgIcon/icons/LoadingLine.js +24 -0
  430. package/lib/components/SvgIcon/icons/Minus.d.ts +3 -0
  431. package/lib/components/SvgIcon/icons/Minus.js +24 -0
  432. package/lib/components/SvgIcon/icons/Plus.d.ts +3 -0
  433. package/lib/components/SvgIcon/icons/Plus.js +23 -0
  434. package/lib/components/SvgIcon/icons/QuestionCircle.d.ts +3 -0
  435. package/lib/components/SvgIcon/icons/QuestionCircle.js +24 -0
  436. package/lib/components/SvgIcon/icons/Refresh.d.ts +3 -0
  437. package/lib/components/SvgIcon/icons/Refresh.js +23 -0
  438. package/lib/components/SvgIcon/icons/RingLoading.d.ts +3 -0
  439. package/lib/components/SvgIcon/icons/RingLoading.js +23 -0
  440. package/lib/components/SvgIcon/icons/Search.d.ts +3 -0
  441. package/lib/components/SvgIcon/icons/Search.js +23 -0
  442. package/lib/components/SvgIcon/icons/Sort.d.ts +3 -0
  443. package/lib/components/SvgIcon/icons/Sort.js +23 -0
  444. package/lib/components/SvgIcon/icons/Tick.d.ts +3 -0
  445. package/lib/components/SvgIcon/icons/Tick.js +23 -0
  446. package/lib/components/SvgIcon/icons/TickCircleFilled.d.ts +3 -0
  447. package/lib/components/SvgIcon/icons/TickCircleFilled.js +23 -0
  448. package/lib/components/SvgIcon/icons/TickSmall.d.ts +3 -0
  449. package/lib/components/SvgIcon/icons/TickSmall.js +23 -0
  450. package/lib/components/SvgIcon/icons/Trash.d.ts +3 -0
  451. package/lib/components/SvgIcon/icons/Trash.js +23 -0
  452. package/lib/components/SvgIcon/icons/TriangleDown.d.ts +3 -0
  453. package/lib/components/SvgIcon/icons/TriangleDown.js +23 -0
  454. package/lib/components/SvgIcon/icons/TriangleLeft.d.ts +3 -0
  455. package/lib/components/SvgIcon/icons/TriangleLeft.js +24 -0
  456. package/lib/components/SvgIcon/icons/TriangleRight.d.ts +3 -0
  457. package/lib/components/SvgIcon/icons/TriangleRight.js +23 -0
  458. package/lib/components/SvgIcon/icons/TriangleUp.d.ts +3 -0
  459. package/lib/components/SvgIcon/icons/TriangleUp.js +23 -0
  460. package/lib/components/SvgIcon/index.d.ts +2 -0
  461. package/lib/components/SvgIcon/index.js +13 -0
  462. package/lib/components/SvgIcon/style/index.d.ts +1 -0
  463. package/lib/components/SvgIcon/style/index.js +35 -0
  464. package/lib/components/Switch/Switch.d.ts +19 -0
  465. package/lib/components/Switch/Switch.js +93 -0
  466. package/lib/components/Switch/index.d.ts +3 -0
  467. package/lib/components/Switch/index.js +15 -0
  468. package/lib/components/Switch/style/index.d.ts +16 -0
  469. package/lib/components/Switch/style/index.js +77 -0
  470. package/lib/components/Table/ActionList.js +14 -0
  471. package/lib/components/Table/ColumnConfigButton.js +267 -0
  472. package/lib/components/Table/DragWrap.d.ts +42 -0
  473. package/lib/components/Table/DragWrap.js +64 -0
  474. package/lib/components/Table/ExpandedRowContent.js +55 -0
  475. package/lib/components/Table/HoverDisplayArea.js +69 -0
  476. package/lib/components/Table/ResizableTH.js +214 -0
  477. package/lib/components/Table/SearchInput.js +69 -0
  478. package/lib/components/Table/Table.js +1808 -0
  479. package/lib/components/Table/TableRow.d.ts +9 -0
  480. package/lib/components/Table/TableRow.js +98 -0
  481. package/lib/components/Table/index.js +37 -0
  482. package/lib/components/Table/locale/en_US.js +23 -0
  483. package/lib/components/Table/locale/zh_CN.js +23 -0
  484. package/lib/components/Table/style/index.js +200 -0
  485. package/lib/components/Table/utils.js +53 -0
  486. package/lib/components/Tabs/Pane.d.ts +30 -0
  487. package/lib/components/Tabs/Pane.js +75 -0
  488. package/lib/components/Tabs/RefContext.d.ts +8 -0
  489. package/lib/components/Tabs/RefContext.js +33 -0
  490. package/lib/components/Tabs/TabBar.d.ts +13 -0
  491. package/lib/components/Tabs/TabBar.js +663 -0
  492. package/lib/components/Tabs/TabContent.d.ts +12 -0
  493. package/lib/components/Tabs/TabContent.js +77 -0
  494. package/lib/components/Tabs/Tabs.d.ts +27 -0
  495. package/lib/components/Tabs/Tabs.js +238 -0
  496. package/lib/components/Tabs/index.d.ts +23 -0
  497. package/lib/components/Tabs/index.js +28 -0
  498. package/lib/components/Tabs/shared.d.ts +12 -0
  499. package/lib/components/Tabs/shared.js +19 -0
  500. package/lib/components/Tabs/style/index.d.ts +6 -0
  501. package/lib/components/Tabs/style/index.js +67 -0
  502. package/lib/components/Tabs/utils.d.ts +5 -0
  503. package/lib/components/Tabs/utils.js +36 -0
  504. package/lib/components/Tag/Group.d.ts +16 -0
  505. package/lib/components/Tag/Group.js +68 -0
  506. package/lib/components/Tag/Icon.d.ts +33 -0
  507. package/lib/components/Tag/Icon.js +102 -0
  508. package/lib/components/Tag/Tag.d.ts +52 -0
  509. package/lib/components/Tag/Tag.js +132 -0
  510. package/lib/components/Tag/index.d.ts +8 -0
  511. package/lib/components/Tag/index.js +23 -0
  512. package/lib/components/Tag/style/index.d.ts +110 -0
  513. package/lib/components/Tag/style/index.js +241 -0
  514. package/lib/components/Textarea/Textarea.d.ts +12 -0
  515. package/lib/components/Textarea/Textarea.js +64 -0
  516. package/lib/components/Textarea/index.d.ts +2 -0
  517. package/lib/components/Textarea/index.js +13 -0
  518. package/lib/components/Textarea/style/index.d.ts +1 -0
  519. package/lib/components/Textarea/style/index.js +32 -0
  520. package/lib/components/ThemeProvider/ThemeProvider.d.ts +21 -0
  521. package/lib/components/ThemeProvider/ThemeProvider.js +145 -0
  522. package/lib/components/ThemeProvider/dark.js +15 -0
  523. package/lib/components/ThemeProvider/designTokens.d.ts +269 -0
  524. package/lib/components/ThemeProvider/designTokens.js +543 -0
  525. package/lib/components/ThemeProvider/designTokensDark.d.ts +269 -0
  526. package/lib/components/ThemeProvider/designTokensDark.js +543 -0
  527. package/lib/components/ThemeProvider/green.js +9 -0
  528. package/lib/components/ThemeProvider/index.d.ts +2 -0
  529. package/lib/components/ThemeProvider/index.js +16 -0
  530. package/lib/components/ThemeProvider/material.js +20 -0
  531. package/lib/components/ThemeProvider/ocean.js +9 -0
  532. package/lib/components/ThemeProvider/runtime.d.ts +2 -0
  533. package/lib/components/ThemeProvider/runtime.js +30 -0
  534. package/lib/components/ThemeProvider/theme.d.ts +6 -0
  535. package/lib/components/ThemeProvider/theme.js +115 -0
  536. package/lib/components/ThemeProvider/useDesignTokens.d.ts +2 -0
  537. package/lib/components/ThemeProvider/useDesignTokens.js +26 -0
  538. package/lib/components/TimePicker/Time.d.ts +11 -0
  539. package/lib/components/TimePicker/Time.js +39 -0
  540. package/lib/components/TimePicker/TimePicker.d.ts +27 -0
  541. package/lib/components/TimePicker/TimePicker.js +282 -0
  542. package/lib/components/TimePicker/index.d.ts +2 -0
  543. package/lib/components/TimePicker/index.js +13 -0
  544. package/lib/components/TimePicker/locale/en_US.js +10 -0
  545. package/lib/components/TimePicker/locale/zh_CN.d.ts +4 -0
  546. package/lib/components/TimePicker/locale/zh_CN.js +10 -0
  547. package/lib/components/TimePicker/style/index.d.ts +14 -0
  548. package/lib/components/TimePicker/style/index.js +81 -0
  549. package/lib/components/TimePicker/util.d.ts +1 -0
  550. package/lib/components/TimePicker/util.js +49 -0
  551. package/lib/components/Tooltip/Tooltip.d.ts +13 -0
  552. package/lib/components/Tooltip/Tooltip.js +96 -0
  553. package/lib/components/Tooltip/index.d.ts +2 -0
  554. package/lib/components/Tooltip/index.js +13 -0
  555. package/lib/components/Tooltip/style/index.d.ts +19 -0
  556. package/lib/components/Tooltip/style/index.js +103 -0
  557. package/lib/components/Transfer/Transfer.js +578 -0
  558. package/lib/components/Transfer/index.js +13 -0
  559. package/lib/components/Transfer/locale/en_US.js +15 -0
  560. package/lib/components/Transfer/locale/zh_CN.js +15 -0
  561. package/lib/components/Transfer/style/index.js +55 -0
  562. package/lib/components/TransferMenu/TransferMenu.js +115 -0
  563. package/lib/components/TransferMenu/index.js +13 -0
  564. package/lib/components/TransferMenu/style/index.js +23 -0
  565. package/lib/components/TransferTable/TransferTable.js +148 -0
  566. package/lib/components/TransferTable/index.js +13 -0
  567. package/lib/components/TransferTable/style/index.js +38 -0
  568. package/lib/components/Tree/Item.d.ts +27 -0
  569. package/lib/components/Tree/Item.js +305 -0
  570. package/lib/components/Tree/Items.d.ts +14 -0
  571. package/lib/components/Tree/Items.js +105 -0
  572. package/lib/components/Tree/Tree.d.ts +49 -0
  573. package/lib/components/Tree/Tree.js +580 -0
  574. package/lib/components/Tree/TreeContext.d.ts +7 -0
  575. package/lib/components/Tree/TreeContext.js +18 -0
  576. package/lib/components/Tree/index.d.ts +4 -0
  577. package/lib/components/Tree/index.js +14 -0
  578. package/lib/components/Tree/interface.d.ts +19 -0
  579. package/lib/components/Tree/interface.js +5 -0
  580. package/lib/components/Tree/style/index.d.ts +22 -0
  581. package/lib/components/Tree/style/index.js +63 -0
  582. package/lib/components/Tree/util.d.ts +2 -0
  583. package/lib/components/Tree/util.js +44 -0
  584. package/lib/components/Upload/CardItem.js +214 -0
  585. package/lib/components/Upload/Dropzone.js +187 -0
  586. package/lib/components/Upload/Item.js +209 -0
  587. package/lib/components/Upload/List.js +200 -0
  588. package/lib/components/Upload/Progress.js +115 -0
  589. package/lib/components/Upload/Selector.js +152 -0
  590. package/lib/components/Upload/Thumbnail.js +110 -0
  591. package/lib/components/Upload/Upload.js +556 -0
  592. package/lib/components/Upload/icons/Archive.js +18 -0
  593. package/lib/components/Upload/icons/Docs.js +18 -0
  594. package/lib/components/Upload/icons/Dropzone.js +18 -0
  595. package/lib/components/Upload/icons/Image.js +18 -0
  596. package/lib/components/Upload/icons/PDF.js +18 -0
  597. package/lib/components/Upload/icons/Text.js +18 -0
  598. package/lib/components/Upload/icons/Unknown.js +18 -0
  599. package/lib/components/Upload/icons/Upload.js +18 -0
  600. package/lib/components/Upload/index.js +16 -0
  601. package/lib/components/Upload/locale/en_US.js +22 -0
  602. package/lib/components/Upload/locale/zh_CN.js +22 -0
  603. package/lib/components/Upload/style/index.js +177 -0
  604. package/lib/components/Upload/utils.js +143 -0
  605. package/lib/components/ZForm/ZForm.js +79 -0
  606. package/lib/components/ZForm/controllerDecorator.js +90 -0
  607. package/lib/components/ZForm/index.js +16 -0
  608. package/lib/config.d.ts +6 -0
  609. package/lib/config.js +28 -0
  610. package/lib/decorators/selectableWithStore/item.js +170 -0
  611. package/lib/decorators/selectableWithStore/store.js +424 -0
  612. package/lib/decorators/uncontrolled.d.ts +7 -0
  613. package/lib/decorators/uncontrolled.js +122 -0
  614. package/lib/hooks/group.d.ts +42 -0
  615. package/lib/hooks/group.js +403 -0
  616. package/lib/hooks/selectable.d.ts +22 -0
  617. package/lib/hooks/selectable.js +127 -0
  618. package/lib/hooks/useConfig.d.ts +2 -0
  619. package/lib/hooks/useConfig.js +30 -0
  620. package/lib/hooks/useConstructor.d.ts +2 -0
  621. package/lib/hooks/useConstructor.js +31 -0
  622. package/lib/hooks/useDidMount.d.ts +2 -0
  623. package/lib/hooks/useDidMount.js +34 -0
  624. package/lib/hooks/useInitial.d.ts +2 -0
  625. package/lib/hooks/useInitial.js +23 -0
  626. package/lib/hooks/useIsInitial.d.ts +2 -0
  627. package/lib/hooks/useIsInitial.js +40 -0
  628. package/lib/hooks/useOverflow.d.ts +24 -0
  629. package/lib/hooks/useOverflow.js +159 -0
  630. package/lib/hooks/usePopoverConfig.d.ts +27 -0
  631. package/lib/hooks/usePopoverConfig.js +78 -0
  632. package/lib/hooks/useSearch.d.ts +23 -0
  633. package/lib/hooks/useSearch.js +387 -0
  634. package/lib/hooks/useSimpleVirtualList.d.ts +6 -0
  635. package/lib/hooks/useSimpleVirtualList.js +128 -0
  636. package/lib/hooks/useUncontrolled.d.ts +4 -0
  637. package/lib/hooks/useUncontrolled.js +85 -0
  638. package/lib/hooks/useVirtualList.d.ts +6 -0
  639. package/lib/hooks/useVirtualList.js +196 -0
  640. package/lib/index.js +241 -0
  641. package/lib/interfaces/Color.js +9 -0
  642. package/lib/interfaces/Size.js +8 -0
  643. package/lib/libs/dom-align/adjustForViewport.js +55 -0
  644. package/lib/libs/dom-align/align/align.js +244 -0
  645. package/lib/libs/dom-align/align/alignElement.js +34 -0
  646. package/lib/libs/dom-align/align/alignPoint.js +67 -0
  647. package/lib/libs/dom-align/getAlignOffset.js +38 -0
  648. package/lib/libs/dom-align/getElFuturePos.js +23 -0
  649. package/lib/libs/dom-align/getOffsetParent.js +63 -0
  650. package/lib/libs/dom-align/getRegion.js +38 -0
  651. package/lib/libs/dom-align/getVisibleRectForElement.js +118 -0
  652. package/lib/libs/dom-align/index.js +27 -0
  653. package/lib/libs/dom-align/isAncestorFixed.js +34 -0
  654. package/lib/libs/dom-align/propertyUtils.js +138 -0
  655. package/lib/libs/dom-align/utils.js +657 -0
  656. package/lib/libs/rc-align/index.d.ts +42 -0
  657. package/lib/libs/rc-align/index.js +275 -0
  658. package/lib/libs/rc-align/util.d.ts +8 -0
  659. package/lib/libs/rc-align/util.js +67 -0
  660. package/lib/libs/rc-drawer/Drawer.js +831 -0
  661. package/lib/libs/rc-drawer/index.js +14 -0
  662. package/lib/libs/rc-drawer/utils.js +87 -0
  663. package/lib/libs/rc-table/BaseTable.d.ts +2 -0
  664. package/lib/libs/rc-table/BaseTable.js +221 -0
  665. package/lib/libs/rc-table/BodyTable.d.ts +18 -0
  666. package/lib/libs/rc-table/BodyTable.js +82 -0
  667. package/lib/libs/rc-table/ColGroup.d.ts +10 -0
  668. package/lib/libs/rc-table/ColGroup.js +47 -0
  669. package/lib/libs/rc-table/ColumnManager.d.ts +10 -0
  670. package/lib/libs/rc-table/ColumnManager.js +206 -0
  671. package/lib/libs/rc-table/ExpandIcon.d.ts +11 -0
  672. package/lib/libs/rc-table/ExpandIcon.js +65 -0
  673. package/lib/libs/rc-table/ExpandableRow.d.ts +2 -0
  674. package/lib/libs/rc-table/ExpandableRow.js +191 -0
  675. package/lib/libs/rc-table/ExpandableTable.d.ts +2 -0
  676. package/lib/libs/rc-table/ExpandableTable.js +304 -0
  677. package/lib/libs/rc-table/HeadTable.d.ts +18 -0
  678. package/lib/libs/rc-table/HeadTable.js +76 -0
  679. package/lib/libs/rc-table/Table.d.ts +81 -0
  680. package/lib/libs/rc-table/Table.js +452 -0
  681. package/lib/libs/rc-table/TableCell.d.ts +17 -0
  682. package/lib/libs/rc-table/TableCell.js +168 -0
  683. package/lib/libs/rc-table/TableHeader.d.ts +16 -0
  684. package/lib/libs/rc-table/TableHeader.js +109 -0
  685. package/lib/libs/rc-table/TableHeaderRow.d.ts +2 -0
  686. package/lib/libs/rc-table/TableHeaderRow.js +146 -0
  687. package/lib/libs/rc-table/TableRow.d.ts +2 -0
  688. package/lib/libs/rc-table/TableRow.js +301 -0
  689. package/lib/libs/rc-table/index.d.ts +2 -0
  690. package/lib/libs/rc-table/index.js +13 -0
  691. package/lib/libs/rc-table/utils.d.ts +7 -0
  692. package/lib/libs/rc-table/utils.js +117 -0
  693. package/lib/libs/rc-trigger/index.js +14 -0
  694. package/lib/libs/rc-trigger/src/LazyRenderBox.js +82 -0
  695. package/lib/libs/rc-trigger/src/Popup.js +383 -0
  696. package/lib/libs/rc-trigger/src/PopupInner.js +85 -0
  697. package/lib/libs/rc-trigger/src/index.js +867 -0
  698. package/lib/libs/rc-trigger/src/mock.js +33 -0
  699. package/lib/libs/rc-trigger/src/utils.js +48 -0
  700. package/lib/sharedComponents/InputWrap.d.ts +16 -0
  701. package/lib/sharedComponents/InputWrap.js +66 -0
  702. package/lib/sharedComponents/Search/Highlight.d.ts +5 -0
  703. package/lib/sharedComponents/Search/Highlight.js +20 -0
  704. package/lib/sharedComponents/Search/Search.d.ts +19 -0
  705. package/lib/sharedComponents/Search/Search.js +72 -0
  706. package/lib/sharedComponents/Search/SearchInput.d.ts +4 -0
  707. package/lib/sharedComponents/Search/SearchInput.js +51 -0
  708. package/lib/sharedComponents/Search/index.d.ts +5 -0
  709. package/lib/sharedComponents/Search/index.js +29 -0
  710. package/lib/sharedComponents/Search/locale/en_US.js +11 -0
  711. package/lib/sharedComponents/Search/locale/zh_CN.d.ts +5 -0
  712. package/lib/sharedComponents/Search/locale/zh_CN.js +11 -0
  713. package/lib/sharedComponents/Search/style.d.ts +14 -0
  714. package/lib/sharedComponents/Search/style.js +56 -0
  715. package/lib/sharedComponents/VirtualScrollList.d.ts +7 -0
  716. package/lib/sharedComponents/VirtualScrollList.js +68 -0
  717. package/lib/stores/SimpleStore.js +73 -0
  718. package/lib/style/animation.d.ts +17 -0
  719. package/lib/style/animation.js +49 -0
  720. package/lib/style/globalAnimation.d.ts +1 -0
  721. package/lib/style/globalAnimation.js +20 -0
  722. package/lib/style/index.d.ts +10 -0
  723. package/lib/style/index.js +114 -0
  724. package/lib/style/interface.d.ts +8 -0
  725. package/lib/style/interface.js +13 -0
  726. package/lib/style/sWrap.d.ts +18 -0
  727. package/lib/style/sWrap.js +110 -0
  728. package/lib/style/utils.d.ts +14 -0
  729. package/lib/style/utils.js +171 -0
  730. package/lib/type.d.ts +9 -0
  731. package/lib/type.js +118 -0
  732. package/lib/utils/KeyCode.d.ts +15 -0
  733. package/lib/utils/KeyCode.js +21 -0
  734. package/lib/utils/attrs.d.ts +5 -0
  735. package/lib/utils/attrs.js +39 -0
  736. package/lib/utils/checkStickySupport.d.ts +2 -0
  737. package/lib/utils/checkStickySupport.js +38 -0
  738. package/lib/utils/deprecatedLog.d.ts +2 -0
  739. package/lib/utils/deprecatedLog.js +27 -0
  740. package/lib/utils/each.d.ts +1 -0
  741. package/lib/utils/each.js +15 -0
  742. package/lib/utils/generateError.js +27 -0
  743. package/lib/utils/hoistStatics.d.ts +1 -0
  744. package/lib/utils/hoistStatics.js +14 -0
  745. package/lib/utils/isArray.d.ts +2 -0
  746. package/lib/utils/isArray.js +19 -0
  747. package/lib/utils/isEmpty.d.ts +2 -0
  748. package/lib/utils/isEmpty.js +26 -0
  749. package/lib/utils/isFirefox.d.ts +2 -0
  750. package/lib/utils/isFirefox.js +12 -0
  751. package/lib/utils/isFunction.d.ts +2 -0
  752. package/lib/utils/isFunction.js +20 -0
  753. package/lib/utils/isIE.d.ts +2 -0
  754. package/lib/utils/isIE.js +12 -0
  755. package/lib/utils/isNumber.d.ts +2 -0
  756. package/lib/utils/isNumber.js +19 -0
  757. package/lib/utils/isObject.d.ts +2 -0
  758. package/lib/utils/isObject.js +19 -0
  759. package/lib/utils/isSafari.d.ts +2 -0
  760. package/lib/utils/isSafari.js +10 -0
  761. package/lib/utils/memo.d.ts +2 -0
  762. package/lib/utils/memo.js +32 -0
  763. package/lib/utils/noop.d.ts +2 -0
  764. package/lib/utils/noop.js +20 -0
  765. package/lib/utils/once.d.ts +2 -0
  766. package/lib/utils/once.js +29 -0
  767. package/lib/utils/pick.d.ts +2 -0
  768. package/lib/utils/pick.js +29 -0
  769. package/lib/utils/string.d.ts +1 -0
  770. package/lib/utils/string.js +24 -0
  771. package/lib/utils/styledWrap.d.ts +22 -0
  772. package/lib/utils/styledWrap.js +98 -0
  773. package/lib/utils/typeMemo.d.ts +2 -0
  774. package/lib/utils/typeMemo.js +18 -0
  775. package/lib/utils/wait.d.ts +2 -0
  776. package/lib/utils/wait.js +23 -0
  777. package/lib/utils/warning.d.ts +4 -0
  778. package/lib/utils/warning.js +34 -0
  779. package/lib/utils/withProps.d.ts +3 -0
  780. package/lib/utils/withProps.js +86 -0
  781. package/package.json +1 -1
package/CHANGELOG.md ADDED
@@ -0,0 +1,1935 @@
1
+ # Changelog
2
+
3
+ All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
4
+
5
+ ### [1.5.18](https://github.com/UCloud-FE/react-components/compare/v1.5.17...v1.5.18) (2022-11-03)
6
+
7
+ ### [1.5.17](https://github.com/UCloud-FE/react-components/compare/v1.5.16...v1.5.17) (2022-11-03)
8
+
9
+ ### Bug Fixes
10
+
11
+ - **Badge:** fixed font-size ([9eb6797](https://github.com/UCloud-FE/react-components/commit/9eb6797eb6fccf4236357ceab5eac2b703dda490))
12
+ - **Select:** fix clear input value when clear Selector items ([22c2118](https://github.com/UCloud-FE/react-components/commit/22c2118cb6e22baeafb3c8c61dae585a436ffc95))
13
+
14
+ ### [1.5.16](https://github.com/UCloud-FE/react-components/compare/v1.5.15...v1.5.16) (2022-09-15)
15
+
16
+ ### Bug Fixes
17
+
18
+ - **Select:** fix get key from value ([fb6964a](https://github.com/UCloud-FE/react-components/commit/fb6964a70ad8a1f9d600458f0f85d2d21473b682))
19
+
20
+ ### [1.5.15](https://github.com/UCloud-FE/react-components/compare/v1.5.14...v1.5.15) (2022-09-07)
21
+
22
+ ### Bug Fixes
23
+
24
+ - **Message:** reset title h3 margin ([cad95c9](https://github.com/UCloud-FE/react-components/commit/cad95c95025a52ed5c871b508fc744c774a2a325))
25
+
26
+ ### [1.5.14](https://github.com/UCloud-FE/react-components/compare/v1.5.13...v1.5.14) (2022-09-07)
27
+
28
+ ### Bug Fixes
29
+
30
+ - **Icon:** fix svg icon name typo ([60c6695](https://github.com/UCloud-FE/react-components/commit/60c669509776d6f4663a0f49d767868c8ec7399d))
31
+
32
+ ### [1.5.13](https://github.com/UCloud-FE/react-components/compare/v1.5.12...v1.5.13) (2022-09-07)
33
+
34
+ ### Features
35
+
36
+ - **Message:** update styles、icons、demos ([1aee9ac](https://github.com/UCloud-FE/react-components/commit/1aee9acb366566515841a7eb3051ac2c74d58636))
37
+
38
+ ### [1.5.12](https://github.com/UCloud-FE/react-components/compare/v1.5.11...v1.5.12) (2022-09-01)
39
+
40
+ ### Bug Fixes
41
+
42
+ - **DatePicker:** update @ucloud-fe/calendar to fix date change bug ([f602e5f](https://github.com/UCloud-FE/react-components/commit/f602e5fc3a20352476a48cf93eadb1720090b284))
43
+
44
+ ### [1.5.11](https://github.com/UCloud-FE/react-components/compare/v1.5.10...v1.5.11) (2022-08-19)
45
+
46
+ ### Bug Fixes
47
+
48
+ - **DatePicker:** fix missing seprator ([3d6c1b4](https://github.com/UCloud-FE/react-components/commit/3d6c1b4741b4d95ecf9366a376ba17c0d29e080e))
49
+
50
+ ### [1.5.10](https://github.com/UCloud-FE/react-components/compare/v1.5.9...v1.5.10) (2022-08-16)
51
+
52
+ ### [1.5.9](https://github.com/UCloud-FE/react-components/compare/v1.5.8...v1.5.9) (2022-08-09)
53
+
54
+ ### [1.5.8](https://github.com/UCloud-FE/react-components/compare/v1.5.7...v1.5.8) (2022-08-08)
55
+
56
+ ### [1.5.7](https://github.com/UCloud-FE/react-components/compare/v1.5.6...v1.5.7) (2022-07-28)
57
+
58
+ ### Features
59
+
60
+ - **Select:** clear search when select ([93b48d0](https://github.com/UCloud-FE/react-components/commit/93b48d09bf1fa37eafda30033164b176cc12514f))
61
+ - **Select:** hide popup when click clear ([36aa14a](https://github.com/UCloud-FE/react-components/commit/36aa14aa9c780031ebf06af4f63ed88e70bddf71))
62
+ - **Select:** remove search icon ([69b2361](https://github.com/UCloud-FE/react-components/commit/69b2361df397234a4fdb376ee04712754320c8d8))
63
+
64
+ ### Bug Fixes
65
+
66
+ - **Select:** fix multiple list overflow ([1bd5755](https://github.com/UCloud-FE/react-components/commit/1bd57554f1026f6ea95f47d9e8ea5e4c0be5438f))
67
+
68
+ ### [1.5.6](https://github.com/UCloud-FE/react-components/compare/v1.5.5...v1.5.6) (2022-07-13)
69
+
70
+ ### Features
71
+
72
+ - **Skeleton:** rename animation to animated ([b87c613](https://github.com/UCloud-FE/react-components/commit/b87c613b114ebfbeadc9aae1843c46614169dee1))
73
+
74
+ ### [1.5.5](https://github.com/UCloud-FE/react-components/compare/v1.5.4...v1.5.5) (2022-07-13)
75
+
76
+ ### Features
77
+
78
+ - **Skeleton:** add skeleton ([d33d214](https://github.com/UCloud-FE/react-components/commit/d33d214f4f5b2c9a98842e410c32ab4189e1abee))
79
+
80
+ ### [1.5.4](https://github.com/UCloud-FE/react-components/compare/v1.5.3...v1.5.4) (2022-07-08)
81
+
82
+ ### Bug Fixes
83
+
84
+ - **useOverflow:** add lock to start for avoid initial bug ([8d26376](https://github.com/UCloud-FE/react-components/commit/8d26376550b88dcd6de8194e68e035b8ddedbc3b))
85
+
86
+ ### [1.5.3](https://github.com/UCloud-FE/react-components/compare/v1.5.2...v1.5.3) (2022-07-08)
87
+
88
+ ### Bug Fixes
89
+
90
+ - **Select:** rewrite Select overflow with useOverflow for fix ([be0ec97](https://github.com/UCloud-FE/react-components/commit/be0ec973217045c48d3eecdb440c34015b2c047a))
91
+ - **TimePicker:** fix clear interaction ([28bcfdd](https://github.com/UCloud-FE/react-components/commit/28bcfddad9227b664d83b7494590c433b3890a0f))
92
+
93
+ ### [1.5.2](https://github.com/UCloud-FE/react-components/compare/v1.5.1...v1.5.2) (2022-07-07)
94
+
95
+ ### Features
96
+
97
+ - **ActionList:** add autoAdjustment ([ac501da](https://github.com/UCloud-FE/react-components/commit/ac501da2a334107694b36a0b6334d4d70bce4633))
98
+ - **ConfigProvider:** add setConfig ([6528b08](https://github.com/UCloud-FE/react-components/commit/6528b08b4e515ac1282d77eea50377bd55022a0e))
99
+ - **ConfigProvider:** add support of actionListAutoAdjustment ([0ea857c](https://github.com/UCloud-FE/react-components/commit/0ea857c5d0b5b7826256b0e2f683527b2fd955a1))
100
+
101
+ ### Bug Fixes
102
+
103
+ - **Select:** fix fallback version option search bug ([9047197](https://github.com/UCloud-FE/react-components/commit/9047197ade53fb2140d2987552afc4c564604d04))
104
+
105
+ ### [1.5.1](https://github.com/UCloud-FE/react-components/compare/v1.5.0...v1.5.1) (2022-07-06)
106
+
107
+ ### Bug Fixes
108
+
109
+ - **Select:** fix search input for old version ([ac59a18](https://github.com/UCloud-FE/react-components/commit/ac59a18ee139b9cf78af449bd86a5512083c0ac1))
110
+
111
+ ## [1.5.0](https://github.com/UCloud-FE/react-components/compare/v1.4.6...v1.5.0) (2022-07-06)
112
+
113
+ ### Features
114
+
115
+ - **Select:** change search icon ([9d3e79c](https://github.com/UCloud-FE/react-components/commit/9d3e79cfc735e0b2afd08beb54105ce7ab8d748e))
116
+ - **Select:** update select ([a751680](https://github.com/UCloud-FE/react-components/commit/a7516803e5c91087e08287cf5842bc91166f9687)), closes [#360](https://github.com/UCloud-FE/react-components/issues/360)
117
+ - **SvgIcon:** update icons ([7e3b7ce](https://github.com/UCloud-FE/react-components/commit/7e3b7ced1d2c73bc8fd365ab1072b70d87ef8570))
118
+
119
+ ### Bug Fixes
120
+
121
+ - **Select:** fix placeholder & display text style ([8627ce9](https://github.com/UCloud-FE/react-components/commit/8627ce9f3cb0c7d5d7b9b99aac30dcdea73c995c))
122
+ - **Table:** fix sticky style when resize ([66dd364](https://github.com/UCloud-FE/react-components/commit/66dd364146977922135b10e34548a24bfad26f3f)), closes [#361](https://github.com/UCloud-FE/react-components/issues/361)
123
+ - **TimePicker:** upgrade calendar to fix click current stepper ([836342f](https://github.com/UCloud-FE/react-components/commit/836342fa322ce59b61947e5504c191063fa26efd))
124
+
125
+ ### [1.4.6](https://github.com/UCloud-FE/react-components/compare/v1.4.5...v1.4.6) (2022-06-07)
126
+
127
+ ### Bug Fixes
128
+
129
+ - **DatePicker:** fix range picker precision ([2a5153a](https://github.com/UCloud-FE/react-components/commit/2a5153a660f77a68f0c3e091e5fc80a383b044f2))
130
+
131
+ ### [1.4.5](https://github.com/UCloud-FE/react-components/compare/v1.4.4...v1.4.5) (2022-06-06)
132
+
133
+ ### Features
134
+
135
+ - **DatePicker:** confirm change when clear ([e364b17](https://github.com/UCloud-FE/react-components/commit/e364b1740a163cc97d66eeb755459fa918189328))
136
+
137
+ ### [1.4.4](https://github.com/UCloud-FE/react-components/compare/v1.4.3...v1.4.4) (2022-05-31)
138
+
139
+ ### Bug Fixes
140
+
141
+ - **DatePicker:** don't trigger confirm when clear ([452bbbb](https://github.com/UCloud-FE/react-components/commit/452bbbbeb02ff87b60accaa260c789c920fdb61c))
142
+
143
+ ### [1.4.3](https://github.com/UCloud-FE/react-components/compare/v1.4.2...v1.4.3) (2022-05-31)
144
+
145
+ ### Features
146
+
147
+ - **DatePicker:** change some style & confirm when clear ([22130ae](https://github.com/UCloud-FE/react-components/commit/22130aef5966cc49d2b5f343f638f837aa3fd8d2))
148
+
149
+ ### [1.4.2](https://github.com/UCloud-FE/react-components/compare/v1.4.1...v1.4.2) (2022-05-30)
150
+
151
+ ### Bug Fixes
152
+
153
+ - **Calendar:** fix range display ([e7e2f1a](https://github.com/UCloud-FE/react-components/commit/e7e2f1a3b049f3681cf57d75e255b9369c782710))
154
+
155
+ ### [1.4.1](https://github.com/UCloud-FE/react-components/compare/v1.4.0...v1.4.1) (2022-05-30)
156
+
157
+ ### Bug Fixes
158
+
159
+ - **DatePicker:** fix footer button disabled ([019c5be](https://github.com/UCloud-FE/react-components/commit/019c5be7601c4c58a02594e5ce2f7ff1c6eb999c))
160
+
161
+ ## [1.4.0](https://github.com/UCloud-FE/react-components/compare/v1.3.27...v1.4.0) (2022-05-30)
162
+
163
+ ### Features
164
+
165
+ - **DatePicker:** refactor style & UX ([a5301e2](https://github.com/UCloud-FE/react-components/commit/a5301e2d96e33983a9127bf7e4fedaffe9cfea47)), closes [#357](https://github.com/UCloud-FE/react-components/issues/357)
166
+
167
+ ### [1.3.27](https://github.com/UCloud-FE/react-components/compare/v1.3.26...v1.3.27) (2022-05-19)
168
+
169
+ ### Bug Fixes
170
+
171
+ - **Popover:** use transform to fix safari flash bug ([aadaab1](https://github.com/UCloud-FE/react-components/commit/aadaab184f238da0f1780696965be55f88fb0d46))
172
+ - **Switch:** add default line-height to fix inherit style bug ([e8364c6](https://github.com/UCloud-FE/react-components/commit/e8364c63e02f2eec60188ddb2eb8f1de766fd671))
173
+
174
+ ### [1.3.26](https://github.com/UCloud-FE/react-components/compare/v1.3.25...v1.3.26) (2022-05-16)
175
+
176
+ ### Bug Fixes
177
+
178
+ - **All:** fix isSafari in chrome ([aa2b1f0](https://github.com/UCloud-FE/react-components/commit/aa2b1f0eda7d07b5a71b7f8fe0a57fbecf2fa1fb))
179
+
180
+ ### [1.3.25](https://github.com/UCloud-FE/react-components/compare/v1.3.24...v1.3.25) (2022-04-22)
181
+
182
+ ### Bug Fixes
183
+
184
+ - **All:** fix react-resizable dep ([96aa216](https://github.com/UCloud-FE/react-components/commit/96aa2162d53ccd374e6aefc7a129e08af0c4db25))
185
+
186
+ ### [1.3.24](https://github.com/UCloud-FE/react-components/compare/v1.3.23...v1.3.24) (2022-04-12)
187
+
188
+ ### Bug Fixes
189
+
190
+ - **Table:** fix table resizableTH min-max default ([60ffa42](https://github.com/UCloud-FE/react-components/commit/60ffa42da13ab309201ac43459ad5a8c28e01001))
191
+
192
+ ### [1.3.23](https://github.com/UCloud-FE/react-components/compare/v1.3.22...v1.3.23) (2022-04-08)
193
+
194
+ ### Bug Fixes
195
+
196
+ - **Popover:** fix safari flash when height change ([11c4718](https://github.com/UCloud-FE/react-components/commit/11c471835523b3538f0ba4db6732ed07bec550e2))
197
+
198
+ ### [1.3.22](https://github.com/UCloud-FE/react-components/compare/v1.3.21...v1.3.22) (2022-04-01)
199
+
200
+ ### Bug Fixes
201
+
202
+ - **Modal:** fix modal snap ([9abd101](https://github.com/UCloud-FE/react-components/commit/9abd1019c8529d41dd393b4dafa43ec0a97933e9))
203
+
204
+ ### [1.3.21](https://github.com/UCloud-FE/react-components/compare/v1.3.20...v1.3.21) (2022-04-01)
205
+
206
+ ### Bug Fixes
207
+
208
+ - **Modal:** downgrade version for fix illegal invocation ([6e980ba](https://github.com/UCloud-FE/react-components/commit/6e980babd40f3895967dcd3e1af98fda47568888))
209
+
210
+ ### [1.3.20](https://github.com/UCloud-FE/react-components/compare/v1.3.19...v1.3.20) (2022-03-30)
211
+
212
+ ### Features
213
+
214
+ - **Table:** add columnResizable & remove ResizableTH ([542d82f](https://github.com/UCloud-FE/react-components/commit/542d82fd42c10785e11bc533830feb1f49f481d5))
215
+
216
+ ### [1.3.19](https://github.com/UCloud-FE/react-components/compare/v1.3.18...v1.3.19) (2022-03-28)
217
+
218
+ ### Bug Fixes
219
+
220
+ - **Modal:** fix modal mask mouse leave close ([2b90ea3](https://github.com/UCloud-FE/react-components/commit/2b90ea3c9bedbb2119d6e0f70e9b5f95f8dfea10))
221
+
222
+ ### [1.3.18](https://github.com/UCloud-FE/react-components/compare/v1.3.17...v1.3.18) (2022-03-10)
223
+
224
+ ### Bug Fixes
225
+
226
+ - **Button:** fix button usage in select ([a7865a7](https://github.com/UCloud-FE/react-components/commit/a7865a702c3847b9790938fb54a95f8ab8e54c63))
227
+
228
+ ### [1.3.17](https://github.com/UCloud-FE/react-components/compare/v1.3.16...v1.3.17) (2022-03-08)
229
+
230
+ ### Bug Fixes
231
+
232
+ - **Button:** fix button square align ([5c63258](https://github.com/UCloud-FE/react-components/commit/5c63258e51c88a1892a9dd2d5d869d926ba40f90))
233
+
234
+ ### [1.3.16](https://github.com/UCloud-FE/react-components/compare/v1.3.15...v1.3.16) (2022-03-08)
235
+
236
+ ### Features
237
+
238
+ - **Button:** change button to inline-flex ([ca563fa](https://github.com/UCloud-FE/react-components/commit/ca563fa58df27c79c45778c8ca969d5aba67c001))
239
+ - **Input:** fix input suffix & prefix shrinks ([e4bdb80](https://github.com/UCloud-FE/react-components/commit/e4bdb807ed0ef2683b534244f1d49481824ca5f2))
240
+
241
+ ### [1.3.15](https://github.com/UCloud-FE/react-components/compare/v1.3.14...v1.3.15) (2022-02-23)
242
+
243
+ ### Bug Fixes
244
+
245
+ - **yarn:** add lock file back for fix ci build ([71930f2](https://github.com/UCloud-FE/react-components/commit/71930f28882cd3eedc06814cb086328b34fa76a3))
246
+
247
+ ### [1.3.14](https://github.com/UCloud-FE/react-components/compare/v1.3.13...v1.3.14) (2022-02-23)
248
+
249
+ ### Features
250
+
251
+ - **gitalk:** remove gitalk ([43746d0](https://github.com/UCloud-FE/react-components/commit/43746d073a91da456be0d98aab03300926e758db))
252
+
253
+ ### Bug Fixes
254
+
255
+ - **Tabs:** fix render unused html attr ([d42a5a5](https://github.com/UCloud-FE/react-components/commit/d42a5a5cc5e9ac4558749a8ee1cac5e05853005a))
256
+
257
+ ### [1.3.13](https://github.com/UCloud-FE/react-components/compare/v1.3.12...v1.3.13) (2022-02-14)
258
+
259
+ ### Bug Fixes
260
+
261
+ - **Table:** fix table row re instance bug ([ed1c9ba](https://github.com/UCloud-FE/react-components/commit/ed1c9ba430f659ff05821db6fe723b8f8489fd79))
262
+
263
+ ### [1.3.12](https://github.com/UCloud-FE/react-components/compare/v1.3.11...v1.3.12) (2022-02-14)
264
+
265
+ ### Features
266
+
267
+ - **Table:** change DragWrap to memo ([07641a4](https://github.com/UCloud-FE/react-components/commit/07641a4415c2274e443f04973f401b081af3e25c))
268
+
269
+ ### [1.3.11](https://github.com/UCloud-FE/react-components/compare/v1.3.10...v1.3.11) (2022-01-28)
270
+
271
+ ### Bug Fixes
272
+
273
+ - **Table:** fix warning crash ([b8d9324](https://github.com/UCloud-FE/react-components/commit/b8d932426b9126050cfcf9409512dfa1e3b625ae))
274
+
275
+ ### [1.3.10](https://github.com/UCloud-FE/react-components/compare/v1.3.9...v1.3.10) (2022-01-28)
276
+
277
+ ### Features
278
+
279
+ - **Table:** add dragSorting ([344098c](https://github.com/UCloud-FE/react-components/commit/344098c97da73b992bff48a42bdf6ce37e2543a1)), closes [#345](https://github.com/UCloud-FE/react-components/issues/345)
280
+ - **TransferMenu:** add disabled support ([d68909e](https://github.com/UCloud-FE/react-components/commit/d68909e93b5468840ddc6134e269008202df3364))
281
+
282
+ ### Bug Fixes
283
+
284
+ - **Table:** fix table config button align ([86d675d](https://github.com/UCloud-FE/react-components/commit/86d675dafbfc698dd3cb64ad31fc831f3db385c2))
285
+
286
+ ### [1.3.9](https://github.com/UCloud-FE/react-components/compare/v1.3.8...v1.3.9) (2022-01-19)
287
+
288
+ ### Features
289
+
290
+ - **Table:** change resizable style ([4e26d28](https://github.com/UCloud-FE/react-components/commit/4e26d2808fd1762d2f11271e52b7c26d86ebc147))
291
+ - **Table:** update resizableTh style ([eff7a46](https://github.com/UCloud-FE/react-components/commit/eff7a4602e0f60ba7749769a454f660a9944342c))
292
+
293
+ ### [1.3.8](https://github.com/UCloud-FE/react-components/compare/v1.3.7...v1.3.8) (2022-01-04)
294
+
295
+ ### Features
296
+
297
+ - **Modal:** add return count for modal destroyAll ([ab6be60](https://github.com/UCloud-FE/react-components/commit/ab6be60f040535317a504d9cfe153d4a70f6ce19))
298
+
299
+ ### Bug Fixes
300
+
301
+ - **DatePicker:** fix initial display with defaultOption ([af66569](https://github.com/UCloud-FE/react-components/commit/af665696f65f6766c38b08deefc922a1ab3bc7bf))
302
+
303
+ ### [1.3.7](https://github.com/UCloud-FE/react-components/compare/v1.3.6...v1.3.7) (2021-12-20)
304
+
305
+ ### Features
306
+
307
+ - **all:** update a lot of ts interface define ([1f527a3](https://github.com/UCloud-FE/react-components/commit/1f527a3eba1665f53b822cc89b2fe6c76d925f1f))
308
+ - **Notice:** refactor code & use flex for align ([6e3f8de](https://github.com/UCloud-FE/react-components/commit/6e3f8de3379f285d8b7ee712b334846ac2de07ad))
309
+
310
+ ### [1.3.6](https://github.com/UCloud-FE/react-components/compare/v1.3.5...v1.3.6) (2021-12-20)
311
+
312
+ ### Bug Fixes
313
+
314
+ - **NumberInput:** fix input color ([779657b](https://github.com/UCloud-FE/react-components/commit/779657b98bc291817c7188685c584f57669692e9))
315
+
316
+ ### [1.3.5](https://github.com/UCloud-FE/react-components/compare/v1.3.4...v1.3.5) (2021-12-14)
317
+
318
+ ### Bug Fixes
319
+
320
+ - **Modal:** fix modal buttonProps ([43c2f05](https://github.com/UCloud-FE/react-components/commit/43c2f0559a7c10d09d773a5f03e46c22c8894dbc))
321
+
322
+ ### [1.3.4](https://github.com/UCloud-FE/react-components/compare/v1.3.3...v1.3.4) (2021-12-14)
323
+
324
+ ### Bug Fixes
325
+
326
+ - **Tag:** fix tag icon align center ([7599bbc](https://github.com/UCloud-FE/react-components/commit/7599bbc3bd89df41324b34dc36b1287041b2d421))
327
+
328
+ ### [1.3.3](https://github.com/UCloud-FE/react-components/compare/v1.3.2...v1.3.3) (2021-12-13)
329
+
330
+ ### Bug Fixes
331
+
332
+ - **Input:** fix input unselectable ([3f0d0d5](https://github.com/UCloud-FE/react-components/commit/3f0d0d5a64804f589bf19533220dc52cce8ab947))
333
+
334
+ ### [1.3.2](https://github.com/UCloud-FE/react-components/compare/v1.3.1...v1.3.2) (2021-12-13)
335
+
336
+ ### Features
337
+
338
+ - **Modal:** add buttonProps for custom footer buttons ([8626a50](https://github.com/UCloud-FE/react-components/commit/8626a50c7b78d16921ba6671a2b4e3cc46d20fb5))
339
+
340
+ ### Bug Fixes
341
+
342
+ - **Cascader:** fix status required ([e097795](https://github.com/UCloud-FE/react-components/commit/e097795675979fb89184b631a4b50082ff4a5b95))
343
+ - **NumberInput:** fix disabled numberInput color in safari ([b5091ee](https://github.com/UCloud-FE/react-components/commit/b5091eec0d353f6f7f8ad29a222f3addc8729256))
344
+
345
+ ### [1.3.1](https://github.com/UCloud-FE/react-components/compare/v1.3.0...v1.3.1) (2021-12-03)
346
+
347
+ ### Features
348
+
349
+ - **log:** clear log usage ([17154dd](https://github.com/UCloud-FE/react-components/commit/17154ddeb3c8d522906e0cebb1d69277bdb11a67))
350
+ - **Modal:** add destroyAll to close all method modals ([1eaafc0](https://github.com/UCloud-FE/react-components/commit/1eaafc048475daf3949d703236bed99c2278cf09))
351
+ - **Modal:** add method usage warning, docs & add runtime locale ([638a83d](https://github.com/UCloud-FE/react-components/commit/638a83dc12509adace21b01b38c3f77dc2b867d1))
352
+
353
+ ## [1.3.0](https://github.com/UCloud-FE/react-components/compare/v1.2.20...v1.3.0) (2021-12-01)
354
+
355
+ ### Features
356
+
357
+ - **Calendar:** merge month to calendar type ([93a3c4d](https://github.com/UCloud-FE/react-components/commit/93a3c4d9f57c9e338282501d5be1477a91de333d))
358
+ - **Cascader:** add Cascader ([470e2ac](https://github.com/UCloud-FE/react-components/commit/470e2ac455dc6450ea691626015baad372e2aff3))
359
+ - **DatePicker:** auto adapt input width for diff usage ([a653b3f](https://github.com/UCloud-FE/react-components/commit/a653b3f21c2d0579fef49a9ea2532fa1104d094e))
360
+ - **TimePicker:** add default width ([2187628](https://github.com/UCloud-FE/react-components/commit/21876287469847150007a8a91427e7356fb3140d))
361
+
362
+ ### Bug Fixes
363
+
364
+ - **LocaleProvider:** add some demos & fix missing locales ([032bbec](https://github.com/UCloud-FE/react-components/commit/032bbec0b3b96a7cb035be53a9e29a516426a353))
365
+ - **Select:** fix missing empty tip when options is empty ([662d3c3](https://github.com/UCloud-FE/react-components/commit/662d3c30f8b8ccf9257b3d488422d237bddc6f61))
366
+
367
+ ### [1.2.20](https://github.com/UCloud-FE/react-components/compare/v1.2.19...v1.2.20) (2021-11-17)
368
+
369
+ ### Features
370
+
371
+ - **DatePicker:** remove default shortcuts ([90ee420](https://github.com/UCloud-FE/react-components/commit/90ee42046904a821aea9dc9892bb0419df8da9a6))
372
+
373
+ ### [1.2.19](https://github.com/UCloud-FE/react-components/compare/v1.2.18...v1.2.19) (2021-11-12)
374
+
375
+ ### Bug Fixes
376
+
377
+ - **Select:** fix null value override by key ([acc91e2](https://github.com/UCloud-FE/react-components/commit/acc91e24b645eada75656d8c24ae579932ff236e))
378
+
379
+ ### [1.2.18](https://github.com/UCloud-FE/react-components/compare/v1.2.17...v1.2.18) (2021-11-12)
380
+
381
+ ### Features
382
+
383
+ - **DatePicker:** add type of month and deprecated Month ([6a7edb0](https://github.com/UCloud-FE/react-components/commit/6a7edb0b7552dd499a35f38da2489bdad4b4bb0a))
384
+ - **DatePicker:** change defaultTime when empty ([48772cc](https://github.com/UCloud-FE/react-components/commit/48772cc5d9984cac22e69c80c9ebf6f161db32fb))
385
+ - **Tabs:** add tabKey to tabPane ([fdc5a65](https://github.com/UCloud-FE/react-components/commit/fdc5a65c7dba210c9710a0d36b5e4bcb68249dae))
386
+
387
+ ### [1.2.17](https://github.com/UCloud-FE/react-components/compare/v1.2.16...v1.2.17) (2021-11-10)
388
+
389
+ ### Features
390
+
391
+ - **DesignTokens:** update control tokens ([8154c87](https://github.com/UCloud-FE/react-components/commit/8154c87c73c66a51346d5549de22c214b985ec9e))
392
+ - **EditableTable:** add addition.hidden to hide additionbar ([6cba291](https://github.com/UCloud-FE/react-components/commit/6cba291eac7bfe937bd20ff4b928179139f0882d))
393
+ - **Progress:** optimize text transition ([c745081](https://github.com/UCloud-FE/react-components/commit/c74508183d3109c99fc9f2663397a1de83928244))
394
+ - **ThemeProvider:** add useDesignTokens ([f2356fd](https://github.com/UCloud-FE/react-components/commit/f2356fd85f95e2732435afa8913dd892928285aa))
395
+
396
+ ### [1.2.16](https://github.com/UCloud-FE/react-components/compare/v1.2.15...v1.2.16) (2021-11-03)
397
+
398
+ ### Features
399
+
400
+ - **Form:** change form subarea padding ([1b4c18b](https://github.com/UCloud-FE/react-components/commit/1b4c18b9801d4ab5ed7f68d713bfd12c6a873857))
401
+ - **LocaleProvider:** add useLocale for use i18n plan ([d3dd414](https://github.com/UCloud-FE/react-components/commit/d3dd4148047f915c3494a165240cb8e8ae371356))
402
+
403
+ ### Bug Fixes
404
+
405
+ - **Tabs:** add resize observer for inkbar ([884b757](https://github.com/UCloud-FE/react-components/commit/884b75726acc02de3375731e42e9dcf8f6757e78))
406
+
407
+ ### [1.2.15](https://github.com/UCloud-FE/react-components/compare/v1.2.14...v1.2.15) (2021-10-29)
408
+
409
+ ### Bug Fixes
410
+
411
+ - **Calendar:** fix calendar switch month bug ([9f116de](https://github.com/UCloud-FE/react-components/commit/9f116de83ce3c3f0868df3fc710ef9ba6219c280))
412
+
413
+ ### [1.2.14](https://github.com/UCloud-FE/react-components/compare/v1.2.13...v1.2.14) (2021-10-27)
414
+
415
+ ### Features
416
+
417
+ - **Form:** change input token & add portait layout ([a596afe](https://github.com/UCloud-FE/react-components/commit/a596afe442f6e5ec86494b58b796a726e7fde7e1))
418
+
419
+ ### Bug Fixes
420
+
421
+ - **Form:** fix portrait form comment font-weight ([5473913](https://github.com/UCloud-FE/react-components/commit/54739131c241eed957d9b8dd9793084b6b7ccd26))
422
+
423
+ ### [1.2.13](https://github.com/UCloud-FE/react-components/compare/v1.2.12...v1.2.13) (2021-10-22)
424
+
425
+ ### Features
426
+
427
+ - **Card:** add SubArea ([93217ab](https://github.com/UCloud-FE/react-components/commit/93217abb1f25989ac30b7105f2c10360e99c4518))
428
+
429
+ ### [1.2.12](https://github.com/UCloud-FE/react-components/compare/v1.2.11...v1.2.12) (2021-10-21)
430
+
431
+ ### Bug Fixes
432
+
433
+ - **Table:** fix uncontrolled change logic ([d0e9272](https://github.com/UCloud-FE/react-components/commit/d0e92729b28176fe2a32a53e97c06dc39dedb9f6))
434
+
435
+ ### [1.2.11](https://github.com/UCloud-FE/react-components/compare/v1.2.10...v1.2.11) (2021-10-12)
436
+
437
+ ### Bug Fixes
438
+
439
+ - **ZForm:** upgrade rc-form to fix function comp bug ([9bc1944](https://github.com/UCloud-FE/react-components/commit/9bc1944496477c58c5b3f3ae470c7ef4832ee42f))
440
+
441
+ ### [1.2.10](https://github.com/UCloud-FE/react-components/compare/v1.2.9...v1.2.10) (2021-10-12)
442
+
443
+ ### Features
444
+
445
+ - **Drawer:** support custom node closeHandle ([32a9aab](https://github.com/UCloud-FE/react-components/commit/32a9aab547f464ed4c79f902d310615c5f607f13))
446
+ - **EditableTable:** change some style ([dfef717](https://github.com/UCloud-FE/react-components/commit/dfef717c419420da82abcae9737e47cbeb26cf2d))
447
+
448
+ ### [1.2.9](https://github.com/UCloud-FE/react-components/compare/v1.2.8...v1.2.9) (2021-09-29)
449
+
450
+ ### Bug Fixes
451
+
452
+ - **Input:** fix status usage under context ([1dd5228](https://github.com/UCloud-FE/react-components/commit/1dd52285c054fac6f11df30f8b84cb8465b6e799))
453
+
454
+ ### [1.2.8](https://github.com/UCloud-FE/react-components/compare/v1.2.7...v1.2.8) (2021-09-15)
455
+
456
+ ### Bug Fixes
457
+
458
+ - **Popover:** fix popover demo bug ([07e7457](https://github.com/UCloud-FE/react-components/commit/07e7457e9c4c6961921980e410a65139740e3456))
459
+ - **Select:** fix custom search item's children when use options ([ef54c73](https://github.com/UCloud-FE/react-components/commit/ef54c7383bdcda405f07322e1a7e66f2a921b6ab))
460
+
461
+ ### [1.2.7](https://github.com/UCloud-FE/react-components/compare/v1.2.6...v1.2.7) (2021-09-14)
462
+
463
+ ### Bug Fixes
464
+
465
+ - **Select:** fix search for options label ([3b0bd44](https://github.com/UCloud-FE/react-components/commit/3b0bd44cf0f1db57b694f6b15e23bd0eb0d10724))
466
+
467
+ ### [1.2.6](https://github.com/UCloud-FE/react-components/compare/v1.2.5...v1.2.6) (2021-09-10)
468
+
469
+ ### Bug Fixes
470
+
471
+ - **Select:** change options reactKey to key first for fix non-str value ([2ab4dcd](https://github.com/UCloud-FE/react-components/commit/2ab4dcdbfd87a03e4e3de02634e67bf40546aa38))
472
+
473
+ ### [1.2.5](https://github.com/UCloud-FE/react-components/compare/v1.2.4...v1.2.5) (2021-09-09)
474
+
475
+ ### Bug Fixes
476
+
477
+ - **Select:** fix content cache bug ([dfe3ad3](https://github.com/UCloud-FE/react-components/commit/dfe3ad37154b952981f3f1b9e010f69e99acfb66))
478
+
479
+ ### [1.2.4](https://github.com/UCloud-FE/react-components/compare/v1.2.3...v1.2.4) (2021-09-09)
480
+
481
+ ### Features
482
+
483
+ - **DatePicker:** add range.customRender.readonlyDisplay ([ee7421b](https://github.com/UCloud-FE/react-components/commit/ee7421b1fec8056c76e7a65a2c06cb82177eb159))
484
+ - **Select:** add search controlled and defaultValue ([191afc1](https://github.com/UCloud-FE/react-components/commit/191afc15da46bd77ee13909b695f85e2a7604e0f))
485
+ - **ThemeProvider:** clean material vars use ([10a439d](https://github.com/UCloud-FE/react-components/commit/10a439de79ed6c35724844ad0aff6d77bb3a8df3))
486
+
487
+ ### Bug Fixes
488
+
489
+ - **Breadcrumb:** fix docs inferface ([568fc88](https://github.com/UCloud-FE/react-components/commit/568fc883df30935016023a2839e77e96b5c4f188))
490
+
491
+ ### [1.2.3](https://github.com/UCloud-FE/react-components/compare/v1.2.2...v1.2.3) (2021-09-07)
492
+
493
+ ### Features
494
+
495
+ - **Select:** add virtualList support ([cbb23d3](https://github.com/UCloud-FE/react-components/commit/cbb23d3c410ffb7bd054f2be2249bae26be9251b))
496
+
497
+ ### [1.2.2](https://github.com/UCloud-FE/react-components/compare/v1.2.1...v1.2.2) (2021-09-03)
498
+
499
+ ### Features
500
+
501
+ - **ConfigProvider:** add iconDefaultPrefix & refactor icon ([8cb4a27](https://github.com/UCloud-FE/react-components/commit/8cb4a27bbf84893cd279bcf450fe18ceef95781a))
502
+
503
+ ### Bug Fixes
504
+
505
+ - **Tabs:** loosen tabs interface ([b33d121](https://github.com/UCloud-FE/react-components/commit/b33d12169f02e4a0031811e2f522647d683e2ba2))
506
+
507
+ ### [1.2.1](https://github.com/UCloud-FE/react-components/compare/v1.2.0...v1.2.1) (2021-08-31)
508
+
509
+ ### Bug Fixes
510
+
511
+ - **Popover:** fix popover static props ([e152d10](https://github.com/UCloud-FE/react-components/commit/e152d109251436248db1f1dea26aa2d7f360005e))
512
+
513
+ ## [1.2.0](https://github.com/UCloud-FE/react-components/compare/v1.1.26...v1.2.0) (2021-08-31)
514
+
515
+ ### Features
516
+
517
+ - **Calendar:** fix calendar add month, year bug ([a8ee849](https://github.com/UCloud-FE/react-components/commit/a8ee8492cdbfcfeadf68687df8922e260e810130))
518
+
519
+ ### [1.1.26](https://github.com/UCloud-FE/react-components/compare/v1.1.25...v1.1.26) (2021-08-31)
520
+
521
+ ### Features
522
+
523
+ - **ConfigProvider:** add popover to control all popover items ([8e03009](https://github.com/UCloud-FE/react-components/commit/8e0300971117b5fde4c880898803320dc6cc8676))
524
+
525
+ ### [1.1.25](https://github.com/UCloud-FE/react-components/compare/v1.1.24...v1.1.25) (2021-08-27)
526
+
527
+ ### Bug Fixes
528
+
529
+ - **Menu:** fix all selected status when disabled ([a34d477](https://github.com/UCloud-FE/react-components/commit/a34d4777157c3403a48b14b15666b2dadb12dea6))
530
+ - **Tree:** fix collapse warn & selected status unupdate bug ([fd6cba5](https://github.com/UCloud-FE/react-components/commit/fd6cba51244441baa0fae430207736222f0afca1))
531
+
532
+ ### [1.1.24](https://github.com/UCloud-FE/react-components/compare/v1.1.23...v1.1.24) (2021-08-26)
533
+
534
+ ### Features
535
+
536
+ - **ConfigProvider:** add getPopupContainer support ([19ebe80](https://github.com/UCloud-FE/react-components/commit/19ebe80d7785aa65f890e22ca9ce2eb2e6e856fb))
537
+
538
+ ### [1.1.23](https://github.com/UCloud-FE/react-components/compare/v1.1.22...v1.1.23) (2021-08-24)
539
+
540
+ ### Bug Fixes
541
+
542
+ - **Collapse:** remove selectedStatus in callback ([4d08cf7](https://github.com/UCloud-FE/react-components/commit/4d08cf7fb50d67df24d31d0755664d2232158a08))
543
+
544
+ ### [1.1.22](https://github.com/UCloud-FE/react-components/compare/v1.1.21...v1.1.22) (2021-08-24)
545
+
546
+ ### Bug Fixes
547
+
548
+ - **Checkbox:** increase fault tolerance of unvalid value/options ([22d1954](https://github.com/UCloud-FE/react-components/commit/22d1954aaba92093f5e726beb0aec0d2ddf3718f))
549
+
550
+ ### [1.1.21](https://github.com/UCloud-FE/react-components/compare/v1.1.20...v1.1.21) (2021-08-18)
551
+
552
+ ### Bug Fixes
553
+
554
+ - **icons:** fix wrong icon color cause by currentcolor ([d9414f6](https://github.com/UCloud-FE/react-components/commit/d9414f64040300f57412852c7f82b8130ddbe719))
555
+
556
+ ### [1.1.20](https://github.com/UCloud-FE/react-components/compare/v1.1.19...v1.1.20) (2021-08-18)
557
+
558
+ ### Bug Fixes
559
+
560
+ - **useUncontrolled:** place ref before state to fix value cache bug ([e10a27d](https://github.com/UCloud-FE/react-components/commit/e10a27d478b291a586386d43bff7ed561c247c00))
561
+
562
+ ### [1.1.19](https://github.com/UCloud-FE/react-components/compare/v1.1.18...v1.1.19) (2021-08-13)
563
+
564
+ ### Features
565
+
566
+ - **DataPicker:** update styles & add choose tip ([aa25419](https://github.com/UCloud-FE/react-components/commit/aa25419d53702399b701a7ff2233b6f8c5911ace))
567
+
568
+ ### Bug Fixes
569
+
570
+ - **SvgIcon:** set default color to currentcolor ([ebd204a](https://github.com/UCloud-FE/react-components/commit/ebd204ac47b01ec13cd29fdf8db243e649000a1f))
571
+ - **Table:** fix checkbox controll switch cause bug ([7fde5b1](https://github.com/UCloud-FE/react-components/commit/7fde5b1ceabca36f86a32e603127442ad949b428))
572
+ - **Table:** fix svg color when use dark themm ([6f485d9](https://github.com/UCloud-FE/react-components/commit/6f485d936cdd94d927e21a39632d6310d36bcabd))
573
+ - **ThemeProvider:** fix runtime theme reset bug ([6c7d979](https://github.com/UCloud-FE/react-components/commit/6c7d979621b542935135ccff37cc57edb1c5f65a))
574
+ - **Tree:** fix item interface bug ([cdd4e6e](https://github.com/UCloud-FE/react-components/commit/cdd4e6ec03d869f1861d77f20b663a6a5e3a2f63))
575
+
576
+ ### [1.1.18](https://github.com/UCloud-FE/react-components/compare/v1.1.17...v1.1.18) (2021-08-03)
577
+
578
+ ### Features
579
+
580
+ - **Button:** fix white-space ([874432e](https://github.com/UCloud-FE/react-components/commit/874432e3efe1ce8439b8bd01c64ae3e99d31a59e))
581
+ - **Select:** add shadow to extra ([47d2c1c](https://github.com/UCloud-FE/react-components/commit/47d2c1c9f9b033a295fb7d24ac643b9543e357cd))
582
+
583
+ ### [1.1.17](https://github.com/UCloud-FE/react-components/compare/v1.1.16...v1.1.17) (2021-08-02)
584
+
585
+ ### Features
586
+
587
+ - **Button:** add block ([a65ed6e](https://github.com/UCloud-FE/react-components/commit/a65ed6ea3b45faed5189ab1110f702d631ec560a))
588
+ - **TransferTable:** add pagination when count over 400 ([277d3e8](https://github.com/UCloud-FE/react-components/commit/277d3e8f1726da7cfe00ab0aafa7a545c05c196f))
589
+
590
+ ### [1.1.16](https://github.com/UCloud-FE/react-components/compare/v1.1.15...v1.1.16) (2021-07-29)
591
+
592
+ ### Features
593
+
594
+ - **All:** add reset style for Form & Tooltip ([24e7d94](https://github.com/UCloud-FE/react-components/commit/24e7d9430d55f56897df8d3b865745f9a32b2980))
595
+ - **DatePicker:** use format control timeMode ([984c61c](https://github.com/UCloud-FE/react-components/commit/984c61c86fe13fcb043484e9434fee0a94bad682))
596
+ - **Popover:** add forceAlignWhenScroll ([ddffa6c](https://github.com/UCloud-FE/react-components/commit/ddffa6c62582ec437321e8f40f12c26063f34314))
597
+ - **Radio:** fix card radio title spacing ([225f9b9](https://github.com/UCloud-FE/react-components/commit/225f9b93bc0c429a1b738ccfa77ecacb0a95aae3))
598
+ - **SvgIcon:** clean xmlns ([d0be9f5](https://github.com/UCloud-FE/react-components/commit/d0be9f5c03e30ebafdb0a89f7142287482abd84a))
599
+
600
+ ### Bug Fixes
601
+
602
+ - **DataPicker:** fix format display & shortcuts for Range ([894d1e3](https://github.com/UCloud-FE/react-components/commit/894d1e392f30573218a5a9d7ceb6282e3472b262))
603
+
604
+ ### [1.1.15](https://github.com/UCloud-FE/react-components/compare/v1.1.14...v1.1.15) (2021-07-19)
605
+
606
+ ### Bug Fixes
607
+
608
+ - **build:** fix build files ([b84d4a6](https://github.com/UCloud-FE/react-components/commit/b84d4a6dee58a86e171ee87f649cc7fdddf99b44))
609
+
610
+ ### [1.1.14](https://github.com/UCloud-FE/react-components/compare/v1.1.13...v1.1.14) (2021-07-19)
611
+
612
+ ### [1.1.13](https://github.com/UCloud-FE/react-components/compare/v1.1.12...v1.1.13) (2021-07-19)
613
+
614
+ ### Features
615
+
616
+ - **Select:** add support of function extra ([835c688](https://github.com/UCloud-FE/react-components/commit/835c68807c32765f540dabd1ba35542d40b7a84f))
617
+
618
+ ### Bug Fixes
619
+
620
+ - **Tree:** fix shrink on indent&icon ([2612f04](https://github.com/UCloud-FE/react-components/commit/2612f0423faf145875fac370321941b23adcdcab))
621
+
622
+ ### [1.1.12](https://github.com/UCloud-FE/react-components/compare/v1.1.11...v1.1.12) (2021-07-13)
623
+
624
+ ### Features
625
+
626
+ - **Form:** update label color ([879cc3a](https://github.com/UCloud-FE/react-components/commit/879cc3a754ed17c8efe57db74180ae6d663cbf6f))
627
+ - **recodo:** update recodo ([6306d6e](https://github.com/UCloud-FE/react-components/commit/6306d6ed0b9f9a962186ea95d9551b2c67f2c6fa))
628
+ - **Transfer:** change search trigger to immediately ([3776321](https://github.com/UCloud-FE/react-components/commit/3776321218f938c8e706511916692c8c17ccff76))
629
+
630
+ ### Bug Fixes
631
+
632
+ - **Input:** fix clearable when disabled ([0066677](https://github.com/UCloud-FE/react-components/commit/0066677906088ee060f4cf6feee9b47f0cef154f))
633
+
634
+ ### [1.1.11](https://github.com/UCloud-FE/react-components/compare/v1.1.10...v1.1.11) (2021-07-09)
635
+
636
+ ### Features
637
+
638
+ - **AutoComplete:** add block & placeholder & style & className ([d275594](https://github.com/UCloud-FE/react-components/commit/d275594f0b333d58f41f34e845b56b792b7fbd2e))
639
+
640
+ ### [1.1.10](https://github.com/UCloud-FE/react-components/compare/v1.1.9...v1.1.10) (2021-07-09)
641
+
642
+ ### Features
643
+
644
+ - **AutoComplete:** add prefix ([26f128e](https://github.com/UCloud-FE/react-components/commit/26f128edf21be657bb8b8d8b8c3748d34e2f4fe2))
645
+ - **TransferTable:** add disabled style for table row ([43259ec](https://github.com/UCloud-FE/react-components/commit/43259ec0ecb183c1e5afc79bac0ed7e8d07c2752))
646
+
647
+ ### [1.1.9](https://github.com/UCloud-FE/react-components/compare/v1.1.8...v1.1.9) (2021-07-05)
648
+
649
+ ### Features
650
+
651
+ - **All:** change some icon to svg ([fa51d99](https://github.com/UCloud-FE/react-components/commit/fa51d9987c63ffe6d418985f1f0db99b58735d6a))
652
+
653
+ ### [1.1.8](https://github.com/UCloud-FE/react-components/compare/v1.1.7...v1.1.8) (2021-07-01)
654
+
655
+ ### Features
656
+
657
+ - **Grid:** add support of array gutter ([fe3dc7d](https://github.com/UCloud-FE/react-components/commit/fe3dc7d31653600654cb280ff1d112154e92cf5c))
658
+
659
+ ### Bug Fixes
660
+
661
+ - **Button:** fix interface ([b16563f](https://github.com/UCloud-FE/react-components/commit/b16563fb05b3a0ff89fd841ca87e24507b2204ac))
662
+ - **Input:** fix input interface ([078e467](https://github.com/UCloud-FE/react-components/commit/078e467377d54e6c7648e8360796f69f9f683166))
663
+ - **NumberInput:** fix disable icon color ([c7bb52e](https://github.com/UCloud-FE/react-components/commit/c7bb52e3c11a943a95ad66a8aa8251837e178dcb))
664
+
665
+ ### [1.1.7](https://github.com/UCloud-FE/react-components/compare/v1.1.6...v1.1.7) (2021-06-28)
666
+
667
+ ### Features
668
+
669
+ - **All:** update all icon to svgicon ([823919b](https://github.com/UCloud-FE/react-components/commit/823919baaeaba049488970f94a5c9637e9702cbc))
670
+
671
+ ### Bug Fixes
672
+
673
+ - **Table:** fix onExpand not trigger bug ([5f80b49](https://github.com/UCloud-FE/react-components/commit/5f80b49a8b89850729e1a82cac29c4826180cdc3))
674
+
675
+ ### [1.1.6](https://github.com/UCloud-FE/react-components/compare/v1.1.5...v1.1.6) (2021-06-22)
676
+
677
+ ### Features
678
+
679
+ - **Form:** add config to prevent default form action ([15f9fcb](https://github.com/UCloud-FE/react-components/commit/15f9fcb7a5817ec9306aa0a62a26b72b6fb888a0))
680
+ - **Tree:** add support of search ([e65211a](https://github.com/UCloud-FE/react-components/commit/e65211af96993b7343b3a8d42278fd826ac242d3))
681
+
682
+ ### [1.1.5](https://github.com/UCloud-FE/react-components/compare/v1.1.4...v1.1.5) (2021-06-11)
683
+
684
+ ### Features
685
+
686
+ - **Input:** hide ie clear icon ([d42898d](https://github.com/UCloud-FE/react-components/commit/d42898d734f0d8f4a086c2328aadee248762a2b0))
687
+ - **Select:** add max/min width and overflow to selector & popup ([b109f73](https://github.com/UCloud-FE/react-components/commit/b109f7381db1b319941f538351395a2e0457218e))
688
+
689
+ ### Bug Fixes
690
+
691
+ - **Input:** change input to class for finddomnode ([5980cce](https://github.com/UCloud-FE/react-components/commit/5980cce96f7d31f23777620f7c6d0d90d3931553))
692
+ - **Switch:** add forwardRef to avoid warning in zform ([830eb92](https://github.com/UCloud-FE/react-components/commit/830eb92401832ee0b104f87aa1223b562bac1a22))
693
+
694
+ ### [1.1.4](https://github.com/UCloud-FE/react-components/compare/v1.1.3...v1.1.4) (2021-06-08)
695
+
696
+ ### Features
697
+
698
+ - **Input:** rewrite & add clearable ([f669491](https://github.com/UCloud-FE/react-components/commit/f6694910e3352d905a7a994417d3cab7f81d79b6))
699
+ - **Tabs:** change prev/next icon ([a2a2e6e](https://github.com/UCloud-FE/react-components/commit/a2a2e6e442009c14a94e9d9823e1cb00f1f76aa7))
700
+ - **Tabs:** remove tabs active tab font-weight to avoid redraw ([6c1cc14](https://github.com/UCloud-FE/react-components/commit/6c1cc1457825c55ed548f0ae45bdccedad290dd2))
701
+ - **Tabs:** rewrite tabs ([4a00e3f](https://github.com/UCloud-FE/react-components/commit/4a00e3f4da6449383fb1c910b0c42693bf7bcadc))
702
+
703
+ ### Bug Fixes
704
+
705
+ - **Input:** add max width to fix width in container ([b01b696](https://github.com/UCloud-FE/react-components/commit/b01b6962188ff11bce4118f933411ad300f7f853))
706
+ - **Input:** fix input status interface ([f94faa4](https://github.com/UCloud-FE/react-components/commit/f94faa43746c9acf486f7699064f0103cc284b3e))
707
+ - **Tabs:** fix tabs ink bar offset ([5c2541c](https://github.com/UCloud-FE/react-components/commit/5c2541cd76baeb0436ed56b40330af22d5c4b708))
708
+
709
+ ### [1.1.3](https://github.com/UCloud-FE/react-components/compare/v1.1.2...v1.1.3) (2021-06-04)
710
+
711
+ ### [1.1.2](https://github.com/UCloud-FE/react-components/compare/v1.1.1...v1.1.2) (2021-06-04)
712
+
713
+ ### Bug Fixes
714
+
715
+ - **ActionList:** fix click hide on subMenu title ([02cc23c](https://github.com/UCloud-FE/react-components/commit/02cc23c1c41ae896e21b3e81f0038686daf32143))
716
+ - **DatePicker:** fix invalid current calendar value ([18511c1](https://github.com/UCloud-FE/react-components/commit/18511c11e3ebe09bd54c6ddf23b647f203789eb8))
717
+ - **Input:** fix disabled color in safari ([1e5fd14](https://github.com/UCloud-FE/react-components/commit/1e5fd14f6cce8d6ba486f7890624a4b2b538b1fc))
718
+
719
+ ### [1.1.1](https://github.com/UCloud-FE/react-components/compare/v1.1.0...v1.1.1) (2021-05-27)
720
+
721
+ ### Features
722
+
723
+ - **Modal:** change size of sm size ([3d549b8](https://github.com/UCloud-FE/react-components/commit/3d549b82abcd12c8f084a86c8581eaad1505fdd2))
724
+ - **Tabs:** change some style ([421935b](https://github.com/UCloud-FE/react-components/commit/421935b01e872af756e6ed0cd1d456b152fe4ec0))
725
+
726
+ ### Bug Fixes
727
+
728
+ - **Table:** fix col width on newest chrome ([d1874ce](https://github.com/UCloud-FE/react-components/commit/d1874ce2921b882e7d37e9bdacb80bd21cf010dd))
729
+
730
+ ## [1.1.0](https://github.com/UCloud-FE/react-components/compare/v1.0.43...v1.1.0) (2021-05-20)
731
+
732
+ ### Features
733
+
734
+ - **DatePicker:** change icon to svg ([f1d1dae](https://github.com/UCloud-FE/react-components/commit/f1d1dae7d0e0da8fc1c679bd3aa4e4e30fdae630))
735
+ - **DatePicker:** optimize disable rule & fix some bug ([81b43e9](https://github.com/UCloud-FE/react-components/commit/81b43e9a445ba266caac53e1ba3d3ac2ae1699b0))
736
+ - **TimePicker:** add TimePicker ([379bd87](https://github.com/UCloud-FE/react-components/commit/379bd873fb8c125e79c22abbc0004b3fd79c3e51))
737
+
738
+ ### [1.0.43](https://github.com/UCloud-FE/react-components/compare/v1.0.42...v1.0.43) (2021-05-14)
739
+
740
+ ### Features
741
+
742
+ - **DatePicker:** add shortcuts ([597d2fc](https://github.com/UCloud-FE/react-components/commit/597d2fc6ba4e4d664a5fe6a5c2cbe39acbfb5977))
743
+
744
+ ### Bug Fixes
745
+
746
+ - **DatePicker:** fix date valid ([0e400b2](https://github.com/UCloud-FE/react-components/commit/0e400b24c85aa0d6237e6ad3d0ab56ed79924bc4))
747
+ - **DatePicker:** fix null range change logic ([2c40c2c](https://github.com/UCloud-FE/react-components/commit/2c40c2ce7a3a5b0d2df841d155e9245544ee2e87))
748
+
749
+ ### [1.0.42](https://github.com/UCloud-FE/react-components/compare/v1.0.41...v1.0.42) (2021-05-12)
750
+
751
+ ### Features
752
+
753
+ - **DatePicker:** change date valid precision to second ([4920678](https://github.com/UCloud-FE/react-components/commit/492067852cb7ac7be8e894ed71f294291cdcaebf))
754
+ - **DatePicker:** export ts interface ([8a2a86b](https://github.com/UCloud-FE/react-components/commit/8a2a86bffee341ee1573d3935df657d637297952))
755
+
756
+ ### [1.0.41](https://github.com/UCloud-FE/react-components/compare/v1.0.40...v1.0.41) (2021-05-11)
757
+
758
+ ### Bug Fixes
759
+
760
+ - **DatePicker:** fix IE flex/Firefox scroll style bug ([6a6d6c8](https://github.com/UCloud-FE/react-components/commit/6a6d6c84eb25eae72dc69eb4a30d12c420eeb29d))
761
+
762
+ ### [1.0.40](https://github.com/UCloud-FE/react-components/compare/v1.0.39...v1.0.40) (2021-05-10)
763
+
764
+ ### Bug Fixes
765
+
766
+ - **DatePicker:** fix scroll & format ([5ae5669](https://github.com/UCloud-FE/react-components/commit/5ae5669b0ff6f7a62538be774d9ed600e923e604))
767
+
768
+ ### [1.0.39](https://github.com/UCloud-FE/react-components/compare/v1.0.38...v1.0.39) (2021-05-08)
769
+
770
+ ### Bug Fixes
771
+
772
+ - **DatePicker:** fix onInitialChange when option controlled ([fba39e4](https://github.com/UCloud-FE/react-components/commit/fba39e4a5cab27206e0ed7de020155228b6f6953))
773
+
774
+ ### [1.0.38](https://github.com/UCloud-FE/react-components/compare/v1.0.37...v1.0.38) (2021-05-07)
775
+
776
+ ### Bug Fixes
777
+
778
+ - **DatePicker:** fix non iterable placeholder ([7eaf417](https://github.com/UCloud-FE/react-components/commit/7eaf417061baff287ce255c7e76226c2c956e822))
779
+
780
+ ### [1.0.37](https://github.com/UCloud-FE/react-components/compare/v1.0.36...v1.0.37) (2021-05-06)
781
+
782
+ ### Features
783
+
784
+ - **DatePicker:** update DatePicker & Calendar ([aa2b24d](https://github.com/UCloud-FE/react-components/commit/aa2b24ddb6d8b410495c8700e2993bcac4c587c1)), closes [#335](https://github.com/UCloud-FE/react-components/issues/335)
785
+ - **Drawer:** change background wrap ([1c4d3b3](https://github.com/UCloud-FE/react-components/commit/1c4d3b38404bee5c78e6ae5658165be7412c8e39))
786
+
787
+ ### Bug Fixes
788
+
789
+ - **DatePicker:** fix typescript interface ([f0463db](https://github.com/UCloud-FE/react-components/commit/f0463db4d469415c5837d501eb03ae2549aad754))
790
+ - **Table:** fix table scroll position when column change ([842d6d0](https://github.com/UCloud-FE/react-components/commit/842d6d0fe986cd0065739fbbbe2d67417e73f707))
791
+
792
+ ### [1.0.36](https://github.com/UCloud-FE/react-components/compare/v1.0.35...v1.0.36) (2021-04-19)
793
+
794
+ ### Features
795
+
796
+ - **AutoComplete:** add onFocus & onBlur ([5e4576b](https://github.com/UCloud-FE/react-components/commit/5e4576b3b3cf34c23cca5bec4d7fe6fcca201dac))
797
+ - **Radio:** update radio card style ([e782775](https://github.com/UCloud-FE/react-components/commit/e7827758a945555ae4c818ec35228c6f566e7021)), closes [#333](https://github.com/UCloud-FE/react-components/issues/333)
798
+ - **Switch:** update style & rewrite with ts ([e453ebe](https://github.com/UCloud-FE/react-components/commit/e453ebeba77d219e3521ab62b47b01fd440c0ea9)), closes [#331](https://github.com/UCloud-FE/react-components/issues/331)
799
+ - **Tag:** add support of customStyle ([294f70a](https://github.com/UCloud-FE/react-components/commit/294f70ad15e75e0b4b6ee432024a50ce27f51db6)), closes [#334](https://github.com/UCloud-FE/react-components/issues/334)
800
+
801
+ ### [1.0.35](https://github.com/UCloud-FE/react-components/compare/v1.0.34...v1.0.35) (2021-03-23)
802
+
803
+ ### Features
804
+
805
+ - **AutoComplete:** add AutoComplete ([41350a4](https://github.com/UCloud-FE/react-components/commit/41350a49323e1494e2f92da019180870b13955bc))
806
+ - **AutoComplete:** remove displayOptionsWhenEmpty & rename loading ([647d780](https://github.com/UCloud-FE/react-components/commit/647d780668876d775f7672789527e61b98525b2b))
807
+
808
+ ### Bug Fixes
809
+
810
+ - **AutoComplete:** fix wrong options cause crash ([3e24993](https://github.com/UCloud-FE/react-components/commit/3e249934c3876cd25c5a2930bd7f560aa1a1d1d5))
811
+ - **Combine:** filter null,undefined,false children ([0f6bd46](https://github.com/UCloud-FE/react-components/commit/0f6bd46fe6a2a0c6a581165e1c61a1e0d72822e1))
812
+ - **Menu:** fix scroll bar in firefox cause overflow ([a295b91](https://github.com/UCloud-FE/react-components/commit/a295b910e45132b3b2c01b68f1b3a12d64b76518))
813
+ - **Tree:** fix react warn of forwardRef ([560d0c9](https://github.com/UCloud-FE/react-components/commit/560d0c98d563ee01db49c681b79f5f47bd77aa1c))
814
+
815
+ ### [1.0.34](https://github.com/UCloud-FE/react-components/compare/v1.0.33...v1.0.34) (2021-03-02)
816
+
817
+ ### Features
818
+
819
+ - **Tree:** add support of loadData ([8bb20da](https://github.com/UCloud-FE/react-components/commit/8bb20da6d1c4f7dd151587f9d5ce6ba21de1e8e6))
820
+ - **type:** update interface output ([3f26501](https://github.com/UCloud-FE/react-components/commit/3f2650139113a6b6ed324f9bdaca5ddcd8b2d726))
821
+
822
+ ### Bug Fixes
823
+
824
+ - **Interface:** fix children component type error in index.d.ts ([e36f981](https://github.com/UCloud-FE/react-components/commit/e36f9817b098ffac08d3435249db1484ed10e4d4)), closes [#329](https://github.com/UCloud-FE/react-components/issues/329)
825
+
826
+ ### [1.0.33](https://github.com/UCloud-FE/react-components/compare/v1.0.32...v1.0.33) (2021-02-23)
827
+
828
+ ### Features
829
+
830
+ - **Menu:** rename collapse to collapseProps ([a1fcfec](https://github.com/UCloud-FE/react-components/commit/a1fcfec367095df4c71a25c52589c680bd3d097a))
831
+ - **Tree:** change value to key, rename collapse ([0217bfa](https://github.com/UCloud-FE/react-components/commit/0217bfa2ac87fd991fee489a32b9525e5fb93a0a))
832
+ - **Tree:** optim disabled item select logic ([ec80ef7](https://github.com/UCloud-FE/react-components/commit/ec80ef73bffa9e1c286a5670a18f85bc7f7ea395))
833
+
834
+ ### [1.0.32](https://github.com/UCloud-FE/react-components/compare/v1.0.31...v1.0.32) (2021-02-07)
835
+
836
+ ### Features
837
+
838
+ - **decorators:** rewrite all decorators ([7655c49](https://github.com/UCloud-FE/react-components/commit/7655c49a41956425a5facd8f5c1196c02233bda1))
839
+
840
+ ### Bug Fixes
841
+
842
+ - **Table:** fix table demo combine usage ([7a8f843](https://github.com/UCloud-FE/react-components/commit/7a8f8430058899cdb18be6405379157d7a32384f))
843
+ - **Table:** fix unselect all only unselect current page bug ([4c264d1](https://github.com/UCloud-FE/react-components/commit/4c264d1a8496ad068ae4899c16cac6d6b125cf1a))
844
+
845
+ ### [1.0.31](https://github.com/UCloud-FE/react-components/compare/v1.0.30...v1.0.31) (2021-02-04)
846
+
847
+ ### Features
848
+
849
+ - **Calendar:** change a style to avoid override ([4a55453](https://github.com/UCloud-FE/react-components/commit/4a55453ce6f21c3abdeb3c9e00e7ef376532e3c3))
850
+ - **TransferTable:** add getDisabledOfRow ([1a783f9](https://github.com/UCloud-FE/react-components/commit/1a783f9952920bf78bc01cda810fcb922d1bd86a))
851
+ - **Tree:** add Tree ([91dfb26](https://github.com/UCloud-FE/react-components/commit/91dfb260c9929a78a9f0a7061fb68edc5c4d6c88))
852
+
853
+ ### [1.0.30](https://github.com/UCloud-FE/react-components/compare/v1.0.29...v1.0.30) (2021-01-28)
854
+
855
+ ### Features
856
+
857
+ - **ActionList:** use combine to wrap ([4dc4faf](https://github.com/UCloud-FE/react-components/commit/4dc4faf91d22001b498762d7fa3517381909381c))
858
+ - **Button:** change checkable button background ([6e0a5b6](https://github.com/UCloud-FE/react-components/commit/6e0a5b60b1708367b2eb521b4d21cf924dea2582))
859
+ - **Combine:** change combine classname to wrap ([bdd0e9b](https://github.com/UCloud-FE/react-components/commit/bdd0e9b80c4dc262859be8990a233a4dfa2484fa))
860
+ - **Link:** force link button visited color ([55272ce](https://github.com/UCloud-FE/react-components/commit/55272ce3c9c440936f9f381fdb186697ee83f603))
861
+
862
+ ### [1.0.29](https://github.com/UCloud-FE/react-components/compare/v1.0.28...v1.0.29) (2021-01-18)
863
+
864
+ ### Features
865
+
866
+ - **dt:** update design tokens ([03f6f9e](https://github.com/UCloud-FE/react-components/commit/03f6f9ee171e748a6758e1ff44c0b85619e3d4bd))
867
+ - **Input&Button:** update style ([9e6e489](https://github.com/UCloud-FE/react-components/commit/9e6e489924a93f9eb0af0733a5ecab941b95d0cb))
868
+ - **NumberInput:** add styles for handlers ([cc6b08f](https://github.com/UCloud-FE/react-components/commit/cc6b08f1a079d1c4e661a7d6d5b55b31752a9362))
869
+
870
+ ### [1.0.28](https://github.com/UCloud-FE/react-components/compare/v1.0.27...v1.0.28) (2021-01-14)
871
+
872
+ ### Features
873
+
874
+ - **All:** update dts and add styles ([9a80462](https://github.com/UCloud-FE/react-components/commit/9a80462ad7e8a6bbba146f4a0a6f23d4c6c8670e)), closes [#326](https://github.com/UCloud-FE/react-components/issues/326)
875
+
876
+ ### [1.0.27](https://github.com/UCloud-FE/react-components/compare/v1.0.26...v1.0.27) (2021-01-11)
877
+
878
+ ### Features
879
+
880
+ - **Modal:** add content and notice ([6f13e50](https://github.com/UCloud-FE/react-components/commit/6f13e504e87f41e4e6f9f87a6e24fe89c67402ff))
881
+
882
+ ### Bug Fixes
883
+
884
+ - **Modal:** fix modal ts not completely bug ([9385b97](https://github.com/UCloud-FE/react-components/commit/9385b97af80e5dab89ba8ebc0168255df0b6886c))
885
+
886
+ ### [1.0.26](https://github.com/UCloud-FE/react-components/compare/v1.0.25...v1.0.26) (2021-01-06)
887
+
888
+ ### Features
889
+
890
+ - **Link:** change a:link style ([2e90a13](https://github.com/UCloud-FE/react-components/commit/2e90a134d78a3515bde53da3c65aef31e0714d10))
891
+ - **Loading:** change animate druation to 200 ([4b1dd4e](https://github.com/UCloud-FE/react-components/commit/4b1dd4ed032e4038432cb5bde17ad6a0669c1e49))
892
+
893
+ ### Bug Fixes
894
+
895
+ - **Button:** fix button transtion shake ([b89de72](https://github.com/UCloud-FE/react-components/commit/b89de728155f66005988268cee7c55f3cc341f9f))
896
+
897
+ ### [1.0.25](https://github.com/UCloud-FE/react-components/compare/v1.0.24...v1.0.25) (2020-12-29)
898
+
899
+ ### Features
900
+
901
+ - **Button:** rewrite with ts ([b75f7b4](https://github.com/UCloud-FE/react-components/commit/b75f7b4bacb514b64d2ca6e0493440e951673ee4))
902
+ - **Link:** add Link ([8cb4d90](https://github.com/UCloud-FE/react-components/commit/8cb4d906dd2705d3f653a88e8b4944ba51d47e87))
903
+ - **Link:** add subComponent Button ([9816210](https://github.com/UCloud-FE/react-components/commit/98162108eed916eedb4475dedf6fe82571279545))
904
+ - **Link:** ignore some props for Link.Button ([d7f5f48](https://github.com/UCloud-FE/react-components/commit/d7f5f487bb3d697657bd6de6599d31032b4389b1))
905
+
906
+ ### [1.0.24](https://github.com/UCloud-FE/react-components/compare/v1.0.23...v1.0.24) (2020-12-23)
907
+
908
+ ### [1.0.23](https://github.com/UCloud-FE/react-components/compare/v1.0.22...v1.0.23) (2020-12-23)
909
+
910
+ ### [1.0.22](https://github.com/UCloud-FE/react-components/compare/v1.0.21...v1.0.22) (2020-12-23)
911
+
912
+ ### [1.0.21](https://github.com/UCloud-FE/react-components/compare/v1.0.20...v1.0.21) (2020-12-23)
913
+
914
+ ### Bug Fixes
915
+
916
+ - **Table:** fix sticky style & check ([227e6da](https://github.com/UCloud-FE/react-components/commit/227e6dafaa7cf5398745acab0a44028c56919562))
917
+
918
+ ### [1.0.20](https://github.com/UCloud-FE/react-components/compare/v1.0.19...v1.0.20) (2020-12-21)
919
+
920
+ ### [1.0.19](https://github.com/UCloud-FE/react-components/compare/v1.0.18...v1.0.19) (2020-12-21)
921
+
922
+ ### [1.0.18](https://github.com/UCloud-FE/react-components/compare/v1.0.17...v1.0.18) (2020-12-21)
923
+
924
+ ### [1.0.17](https://github.com/UCloud-FE/react-components/compare/v1.0.16...v1.0.17) (2020-12-21)
925
+
926
+ ### Features
927
+
928
+ - **All:** add support of ts components ([405b467](https://github.com/UCloud-FE/react-components/commit/405b4675b3a16c35c86c4e98cc43704e4059e63e))
929
+ - **Badge:** add placement & offset & color & zIndex ([90bf7b9](https://github.com/UCloud-FE/react-components/commit/90bf7b9b928adcf8a19ce72f33e8578c2dbee650)), closes [#323](https://github.com/UCloud-FE/react-components/issues/323)
930
+ - **DesignTokens:** update design tokens ([3ce89d9](https://github.com/UCloud-FE/react-components/commit/3ce89d9c2405021d6ecc45b6ae27c5ad9bbc152e))
931
+
932
+ ### Bug Fixes
933
+
934
+ - **eslint:** fix code to adapt new eslint ([83be301](https://github.com/UCloud-FE/react-components/commit/83be30168434000ab9d8018a695e18a31e6f6c4c))
935
+ - **index.d.ts:** NumberInput inputStyle case bug ([19e344c](https://github.com/UCloud-FE/react-components/commit/19e344c01b550cd74303eb857aeaca7d752f0f80)), closes [#322](https://github.com/UCloud-FE/react-components/issues/322)
936
+
937
+ ### [1.0.16](https://github.com/UCloud-FE/react-components/compare/v1.0.15...v1.0.16) (2020-12-09)
938
+
939
+ ### Bug Fixes
940
+
941
+ - **Tag:** fix tag overflow cause icon offset ([bb46fe8](https://github.com/UCloud-FE/react-components/commit/bb46fe8685def87e849b03c2e1438fdf89be27e9))
942
+
943
+ ### [1.0.15](https://github.com/UCloud-FE/react-components/compare/v1.0.14...v1.0.15) (2020-12-09)
944
+
945
+ ### Features
946
+
947
+ - **Radio:** add styleType list ([6f577fa](https://github.com/UCloud-FE/react-components/commit/6f577fafcff398bf9c3b97c41978feb81ca85963))
948
+
949
+ ### Bug Fixes
950
+
951
+ - **Radio:** fix text radio height ([8b0c48e](https://github.com/UCloud-FE/react-components/commit/8b0c48e7ba57d36c60a2cdd606472889ac105937))
952
+
953
+ ### [1.0.14](https://github.com/UCloud-FE/react-components/compare/v1.0.13...v1.0.14) (2020-11-30)
954
+
955
+ ### Features
956
+
957
+ - **Docs:** add gitalk ([6c8cdc0](https://github.com/UCloud-FE/react-components/commit/6c8cdc02389c67ebd044d62604bcd56734e9e118))
958
+ - **Form:** add itemProps to set item layout ([791af6c](https://github.com/UCloud-FE/react-components/commit/791af6c035cabef5643cced5ad99612b899e5d00))
959
+ - **Form:** add required and help to Item ([c1e2cbd](https://github.com/UCloud-FE/react-components/commit/c1e2cbd406cac00e5a24b78fa9bc45792d01659e))
960
+ - **Form:** add shareStatus to Item ([af7cdca](https://github.com/UCloud-FE/react-components/commit/af7cdcafdd1591e0a3bcdcc155fe3775da1d4f97))
961
+ - **Form:** add subGroup to make a little item group ([c2e54b0](https://github.com/UCloud-FE/react-components/commit/c2e54b006e107f2a827fb7b922f26737515b5806))
962
+ - **Tag:** rename styleType and change wrap to flex ([34926a6](https://github.com/UCloud-FE/react-components/commit/34926a6409c448ec8c439f8ba4e08413cd514de7))
963
+
964
+ ### Bug Fixes
965
+
966
+ - **Tabs:** fix nested margin bug ([3d93e99](https://github.com/UCloud-FE/react-components/commit/3d93e99e510994022322ecd6c9ae7712257bec9f))
967
+
968
+ ### [1.0.13](https://github.com/UCloud-FE/react-components/compare/v1.0.12...v1.0.13) (2020-11-23)
969
+
970
+ ### Features
971
+
972
+ - **Form:** add tip to form item ([d449ef6](https://github.com/UCloud-FE/react-components/commit/d449ef66e191ab6007a84406593d7c7048fe4e62))
973
+ - **Form:** change item.tip.status to item.status ([d5044bf](https://github.com/UCloud-FE/react-components/commit/d5044bff16dcd0abb5c4cdf5af704d4e28cf21ab))
974
+ - **Modal:** add customStyle of contentPadding ([c3ec8c5](https://github.com/UCloud-FE/react-components/commit/c3ec8c5e9aa9f3bb62a26f2a2449c741e763d3e7))
975
+ - **Modal:** add openModal method ([ad4bed9](https://github.com/UCloud-FE/react-components/commit/ad4bed918b0fc2d17329899a4b4256ce5703f24e))
976
+ - **Tag:** add styleType of red-fill ([a80670a](https://github.com/UCloud-FE/react-components/commit/a80670a7ebe1f17fe6a5a0bbfb40955b09a16766))
977
+
978
+ ### [1.0.12](https://github.com/UCloud-FE/react-components/compare/v1.0.11...v1.0.12) (2020-11-18)
979
+
980
+ ### Features
981
+
982
+ - **Badge:** change bubble yellow color ([ed75588](https://github.com/UCloud-FE/react-components/commit/ed755888fbd4b82c1cd4df98b5238a54d05de86a))
983
+ - **Box:** add Box for layout ([b0effeb](https://github.com/UCloud-FE/react-components/commit/b0effeb76c2f64d98242dd0e6f22506da35be2c8)), closes [#261](https://github.com/UCloud-FE/react-components/issues/261)
984
+ - **Combine:** add separator ([dcb6b50](https://github.com/UCloud-FE/react-components/commit/dcb6b500ed9636876c3cf555e3d5b215f26c0e95))
985
+ - **ConfigProvider:** support theme and locale ([0dff48c](https://github.com/UCloud-FE/react-components/commit/0dff48c1c2e1534a9cfc0080bdbefb50a1770cd5))
986
+ - **Modal:** add update to method modal ([c8914d3](https://github.com/UCloud-FE/react-components/commit/c8914d3143311744016ed5632a2ccd879992c42a))
987
+ - **Tag:** add some preset color ([054847f](https://github.com/UCloud-FE/react-components/commit/054847f6b1f03be12f549be8f3d3eb7be71db036))
988
+
989
+ ### [1.0.11](https://github.com/UCloud-FE/react-components/compare/v1.0.10...v1.0.11) (2020-11-12)
990
+
991
+ ### Features
992
+
993
+ - **ActionList:** move outside & add dropdownButton & tooptip ([a6177d8](https://github.com/UCloud-FE/react-components/commit/a6177d8c9439a3dfb1e16dcacd8a7da446913e66)), closes [#260](https://github.com/UCloud-FE/react-components/issues/260)
994
+ - **Menu:** add tooltip support ([5ba84f3](https://github.com/UCloud-FE/react-components/commit/5ba84f3dee2c27f981479192b7bcddc2a3f9873e))
995
+ - **Table:** remove Table.ActionList & fix demo warning ([0290745](https://github.com/UCloud-FE/react-components/commit/029074598bf53a3593504374bba2e15ef36fb3be))
996
+
997
+ ### Bug Fixes
998
+
999
+ - **Slider:** fix misspell ([dde578e](https://github.com/UCloud-FE/react-components/commit/dde578e6db1fb6d4fcbf1679327887207c14aa01))
1000
+
1001
+ ### [1.0.10](https://github.com/UCloud-FE/react-components/compare/v1.0.9...v1.0.10) (2020-11-06)
1002
+
1003
+ ### Features
1004
+
1005
+ - **Modal:** remove min-height in modal body ([c8ab713](https://github.com/UCloud-FE/react-components/commit/c8ab713e13e8d74c22500d75fffe44e756ecb741))
1006
+ - **Switch:** change switch style & update DT ([09ae53f](https://github.com/UCloud-FE/react-components/commit/09ae53f4d71eec71efafce958e3a0c203e4b5c41))
1007
+
1008
+ ### [1.0.9](https://github.com/UCloud-FE/react-components/compare/v1.0.8...v1.0.9) (2020-11-04)
1009
+
1010
+ ### Features
1011
+
1012
+ - **EditableList:** add vertical-align ([4f67431](https://github.com/UCloud-FE/react-components/commit/4f67431bdfa1d1ae40e4c0a7c1f8d593fa02356e))
1013
+ - **Interface:** update index.d.ts ([75c1622](https://github.com/UCloud-FE/react-components/commit/75c16221e4fafdc28d52ffa8f519b5bfe3eb3f09)), closes [#259](https://github.com/UCloud-FE/react-components/issues/259)
1014
+ - **Table:** unselect link ignore disabled row ([c874fac](https://github.com/UCloud-FE/react-components/commit/c874fac8552262aa297efbc07a08b2c533bf5118))
1015
+
1016
+ ### [1.0.8](https://github.com/UCloud-FE/react-components/compare/v1.0.7...v1.0.8) (2020-11-03)
1017
+
1018
+ ### Features
1019
+
1020
+ - **All:** clean not-allowed cursor ([07fed0b](https://github.com/UCloud-FE/react-components/commit/07fed0b5c3f2fb87f8ae6ec8659d838dfb767b8f))
1021
+ - **Input:** change input disabled border ([1c86679](https://github.com/UCloud-FE/react-components/commit/1c86679c7a2a93128e9b8d0ebd97c0860e363a75))
1022
+
1023
+ ### Bug Fixes
1024
+
1025
+ - **Upload:** fix upload onRemove args bug ([8c4465d](https://github.com/UCloud-FE/react-components/commit/8c4465d735bc33e4d104e99bf09c1ead54a8e971))
1026
+
1027
+ ### [1.0.7](https://github.com/UCloud-FE/react-components/compare/v1.0.6...v1.0.7) (2020-10-27)
1028
+
1029
+ ### Features
1030
+
1031
+ - **All:** add font-size to input and switch ([2ffc9d2](https://github.com/UCloud-FE/react-components/commit/2ffc9d2d1116e28d7c7fe0d5c8629d6fc07c5409))
1032
+ - **Combine:** rename className from controller to item ([850c23c](https://github.com/UCloud-FE/react-components/commit/850c23c510c33627dd5ea252049f95bfbd04bddc))
1033
+ - **global:** add index.d.ts to npm for publish ([39612fa](https://github.com/UCloud-FE/react-components/commit/39612fa1bfab65c8bf8aa907fc45316a512e7a30))
1034
+ - **Interface:** update index.d.ts ([0be8950](https://github.com/UCloud-FE/react-components/commit/0be8950547f11147594ecc67f7405b2274194dc8)), closes [#258](https://github.com/UCloud-FE/react-components/issues/258)
1035
+ - **Modal:** add open method ([738a30f](https://github.com/UCloud-FE/react-components/commit/738a30fed3475fb113c876ba9a14ba80818bd51b))
1036
+ - **Table:** add HoverDisplayArea ([3505830](https://github.com/UCloud-FE/react-components/commit/35058309b77605dc06e1ba4183706b24032b139e))
1037
+ - **Tag:** add gray styleType & unsafe handle ([7324dd1](https://github.com/UCloud-FE/react-components/commit/7324dd19a4dec5e1c1ada2715d57c6edd3db6042))
1038
+
1039
+ ### [1.0.6](https://github.com/UCloud-FE/react-components/compare/v1.0.5...v1.0.6) (2020-10-09)
1040
+
1041
+ ### [1.0.5](https://github.com/UCloud-FE/react-components/compare/v1.0.4...v1.0.5) (2020-09-30)
1042
+
1043
+ ### Features
1044
+
1045
+ - **Bubble:** clean default styleType ([b635aef](https://github.com/UCloud-FE/react-components/commit/b635aefb7b50149ab88fe4f0f6bb927e2fdee446))
1046
+
1047
+ ### Bug Fixes
1048
+
1049
+ - **Tag:** fix tag line-height inhert bug ([4a7cd5e](https://github.com/UCloud-FE/react-components/commit/4a7cd5e463f4d1b7cf53aa4b180013bf8b3a1a82))
1050
+ - **Transfer:** fix transfer border style bug ([08e9b59](https://github.com/UCloud-FE/react-components/commit/08e9b595da1e781952ef0d7b6969f402b4f01323))
1051
+
1052
+ ### [1.0.4](https://github.com/UCloud-FE/react-components/compare/v1.0.3...v1.0.4) (2020-09-29)
1053
+
1054
+ ### Features
1055
+
1056
+ - **Progress:** display percent to int for better performance ([d1c424b](https://github.com/UCloud-FE/react-components/commit/d1c424bfe95d15ccb136ce012475699dd0b5a541))
1057
+ - **Tooltip:** add line-height to tooltip content ([f445a97](https://github.com/UCloud-FE/react-components/commit/f445a976c2d0bef574e6455e9e14cf412234f80e))
1058
+ - **TransferTable:** add tableProps to add custom table props ([672b0c5](https://github.com/UCloud-FE/react-components/commit/672b0c58907dc403dff5394a515bbf492a923128))
1059
+ - **Upload:** rewrite Upload, add dropzone and rewrite ui ([74b6208](https://github.com/UCloud-FE/react-components/commit/74b62084b8d50b3348b33d492220667240c34a7e))
1060
+
1061
+ ### Bug Fixes
1062
+
1063
+ - **Pagination:** fix onAdvise allways trigger bug ([d47863d](https://github.com/UCloud-FE/react-components/commit/d47863d246578c136bd19dcc242c1f3cc90215a4))
1064
+
1065
+ ### [1.0.3](https://github.com/UCloud-FE/react-components/compare/v1.0.2...v1.0.3) (2020-09-14)
1066
+
1067
+ ### Features
1068
+
1069
+ - **Transfer:** add search.handleSearch ([69c8fdb](https://github.com/UCloud-FE/react-components/commit/69c8fdbba36bb57accbce94aecfe72a710c69c9c))
1070
+
1071
+ ### [1.0.2](https://github.com/UCloud-FE/react-components/compare/v1.0.1...v1.0.2) (2020-09-11)
1072
+
1073
+ ### Bug Fixes
1074
+
1075
+ - **build:** fix build crash ([06f5e27](https://github.com/UCloud-FE/react-components/commit/06f5e27fb5c36d4c0f5bf523743152a50997825f))
1076
+
1077
+ ### [1.0.1](https://github.com/UCloud-FE/react-components/compare/v1.0.0...v1.0.1) (2020-09-11)
1078
+
1079
+ ### Features
1080
+
1081
+ - **Badge:** add size for badge.bubble ([a1f1fc6](https://github.com/UCloud-FE/react-components/commit/a1f1fc61000acf10881cdd2aa0a1893613aaec20))
1082
+ - **designTokens:** use dt to replace old theme ([c82f17a](https://github.com/UCloud-FE/react-components/commit/c82f17a928604d67df74ae3953fedb2488bd8135))
1083
+ - **lot:** change disable cursor style ([0ded440](https://github.com/UCloud-FE/react-components/commit/0ded440096a48259bfd1120310164cb3c7148d5e))
1084
+ - **Table:** delete Table outer padding ([e44beb3](https://github.com/UCloud-FE/react-components/commit/e44beb33ef496f30643565cd664351454071744c))
1085
+
1086
+ ## [1.0.0](https://github.com/UCloud-FE/react-components/compare/v0.7.4...v1.0.0) (2020-09-04)
1087
+
1088
+ ### Features
1089
+
1090
+ - **Emotion:** use emotion to replace styled-components ([821958f](https://github.com/UCloud-FE/react-components/commit/821958f6f58e3686a96e20037d694c4c3bd988c5)), closes [#252](https://github.com/UCloud-FE/react-components/issues/252)
1091
+
1092
+ ### [0.7.4](https://github.com/UCloud-FE/react-components/compare/v0.7.3...v0.7.4) (2020-09-03)
1093
+
1094
+ ### Bug Fixes
1095
+
1096
+ - **DatePicker:** fix click popup hide bug ([af9a0ec](https://github.com/UCloud-FE/react-components/commit/af9a0ec2d4ca798fcac24c2056aa5a87125e8677))
1097
+
1098
+ ### [0.7.3](https://github.com/UCloud-FE/react-components/compare/v0.7.2...v0.7.3) (2020-09-02)
1099
+
1100
+ ### Features
1101
+
1102
+ - **Select:** add renderPopup ([7d00d0b](https://github.com/UCloud-FE/react-components/commit/7d00d0b01148355367802a2f66148c0403221abd))
1103
+
1104
+ ### [0.7.2](https://github.com/UCloud-FE/react-components/compare/v0.7.1...v0.7.2) (2020-08-31)
1105
+
1106
+ ### Features
1107
+
1108
+ - **ConfigProvider:** add config provider, forwardPopupContainer ([a06fb92](https://github.com/UCloud-FE/react-components/commit/a06fb92e51249edc107b1b8601b09f71d18c0adb))
1109
+
1110
+ ### [0.7.1](https://github.com/UCloud-FE/react-components/compare/v0.7.0...v0.7.1) (2020-08-28)
1111
+
1112
+ ### Features
1113
+
1114
+ - **Badge:** fix align not update & add bubble container, offset ([9782022](https://github.com/UCloud-FE/react-components/commit/97820221843e0168ddc711e9a8be9b12cf78f29d))
1115
+
1116
+ ## [0.7.0](https://github.com/UCloud-FE/react-components/compare/v0.6.29...v0.7.0) (2020-08-27)
1117
+
1118
+ ### Features
1119
+
1120
+ - **Badge:** add bubble ([3012484](https://github.com/UCloud-FE/react-components/commit/30124840e74e8d652d2e97dca792ab0dc160706d))
1121
+ - **project:** upgrade react to 16 ([e6e2264](https://github.com/UCloud-FE/react-components/commit/e6e22640b87551bdaea422262e5efbdbd3f9e2ff))
1122
+ - **Tooltip:** when popup is null, hide the container ([b856e85](https://github.com/UCloud-FE/react-components/commit/b856e85c212cb583b5595d802962b0683c1510af))
1123
+
1124
+ ### [0.6.29](https://github.com/UCloud-FE/react-components/compare/v0.6.28...v0.6.29) (2020-08-18)
1125
+
1126
+ ### Bug Fixes
1127
+
1128
+ - **Checkbox:** fix Checkbox and Radio big content ([4ccc95c](https://github.com/UCloud-FE/react-components/commit/4ccc95c8e507b816ae520ca41ecc27f865b75581))
1129
+ - **Table:** fix table prop misspell ([e242110](https://github.com/UCloud-FE/react-components/commit/e242110fbdbd69d3ca14d8ddb14d8857977a0cb9))
1130
+
1131
+ ### [0.6.28](https://github.com/UCloud-FE/react-components/compare/v0.6.27...v0.6.28) (2020-08-17)
1132
+
1133
+ ### Features
1134
+
1135
+ - **Tabs:** rewrite tabs border ([0bfd3dc](https://github.com/UCloud-FE/react-components/commit/0bfd3dc8c0413105e7c88f349949cd4cd8b4e66e))
1136
+
1137
+ ### Bug Fixes
1138
+
1139
+ - **Grid:** fix col nested bug ([ccaf19e](https://github.com/UCloud-FE/react-components/commit/ccaf19e9268e714afed0a41c61b857a8f6f60a91))
1140
+
1141
+ ### [0.6.27](https://github.com/UCloud-FE/react-components/compare/v0.6.26...v0.6.27) (2020-08-17)
1142
+
1143
+ ### Features
1144
+
1145
+ - **Tabs:** add pure styleType ([78b9ffb](https://github.com/UCloud-FE/react-components/commit/78b9ffbd5d03406f33110a44f5b7d205362034b8))
1146
+
1147
+ ### [0.6.26](https://github.com/UCloud-FE/react-components/compare/v0.6.25...v0.6.26) (2020-08-17)
1148
+
1149
+ ### Features
1150
+
1151
+ - **Drawer:** remove withTheme to avoid sc prod bug ([2ec1a23](https://github.com/UCloud-FE/react-components/commit/2ec1a2330474db13b1db1dd7ef151ff87b37cbfb))
1152
+
1153
+ ### [0.6.25](https://github.com/UCloud-FE/react-components/compare/v0.6.24...v0.6.25) (2020-08-12)
1154
+
1155
+ ### Features
1156
+
1157
+ - **Table:** change tableLayout to auto when scroll.y ([ff96cbf](https://github.com/UCloud-FE/react-components/commit/ff96cbfeb166a1ebe73776887a12a4437057f30f))
1158
+
1159
+ ### [0.6.24](https://github.com/UCloud-FE/react-components/compare/v0.6.23...v0.6.24) (2020-08-12)
1160
+
1161
+ ### Features
1162
+
1163
+ - **ActionList:** add forwardPopupContainer fallback ([2dc7f81](https://github.com/UCloud-FE/react-components/commit/2dc7f810882f6062c2ac3fa4a391e58a5e3026be))
1164
+ - **EditableTable:** add fixed to deletion ([16b04c7](https://github.com/UCloud-FE/react-components/commit/16b04c7bf077acff9a3d2f7bf5231813106ec135))
1165
+ - **PopupContainer:** add popupContainer to most components ([a0d0acd](https://github.com/UCloud-FE/react-components/commit/a0d0acd9f5425cf0812b229ba8820274cc6060b7)), closes [#251](https://github.com/UCloud-FE/react-components/issues/251)
1166
+
1167
+ ### [0.6.23](https://github.com/UCloud-FE/react-components/compare/v0.6.22...v0.6.23) (2020-08-11)
1168
+
1169
+ ### Bug Fixes
1170
+
1171
+ - **Table:** fix some style ([ddad57d](https://github.com/UCloud-FE/react-components/commit/ddad57d62b6e52cdbec64079323d26902d060883))
1172
+
1173
+ ### [0.6.22](https://github.com/UCloud-FE/react-components/compare/v0.6.21...v0.6.22) (2020-08-11)
1174
+
1175
+ ### Features
1176
+
1177
+ - **Checkbox:** change checkbox and radio color ([1f4f1d0](https://github.com/UCloud-FE/react-components/commit/1f4f1d066c9c122a1b5ba4bebfb4e21b5a1ba2c5)), closes [#247](https://github.com/UCloud-FE/react-components/issues/247)
1178
+ - **Table:** set tableLayout to fixed when scroll true ([c100397](https://github.com/UCloud-FE/react-components/commit/c100397346f5af69901d8cb222f16e754033af0a)), closes [#248](https://github.com/UCloud-FE/react-components/issues/248)
1179
+
1180
+ ### Bug Fixes
1181
+
1182
+ - **Table:** remove overflow-x auto ([82227c5](https://github.com/UCloud-FE/react-components/commit/82227c542656efe7aeef0a40ee736ec7b4e2af8e)), closes [#249](https://github.com/UCloud-FE/react-components/issues/249)
1183
+
1184
+ ### [0.6.21](https://github.com/UCloud-FE/react-components/compare/v0.6.20...v0.6.21) (2020-08-10)
1185
+
1186
+ ### Features
1187
+
1188
+ - **EditableList:** add EditableList ([0421fa4](https://github.com/UCloud-FE/react-components/commit/0421fa4b5914360283fe101592b592dd14e50978)), closes [#242](https://github.com/UCloud-FE/react-components/issues/242)
1189
+ - **Menu:** rewrite menu, checkbox, radio style ([ad8b997](https://github.com/UCloud-FE/react-components/commit/ad8b99786fa0f06a34552c40ce3fe30c2c34086c)), closes [#243](https://github.com/UCloud-FE/react-components/issues/243)
1190
+ - **Transfer:** add Transfer ([95a3150](https://github.com/UCloud-FE/react-components/commit/95a3150cceaee68517e2ed81d1b54ce6a4eb8c59)), closes [#244](https://github.com/UCloud-FE/react-components/issues/244)
1191
+ - **TransferMenu:** add TransferMenu ([1569062](https://github.com/UCloud-FE/react-components/commit/1569062e6e6c09515ae947f1c4f9f34421fd8401)), closes [#246](https://github.com/UCloud-FE/react-components/issues/246)
1192
+ - **TransferTable:** add TransferTable ([e20fabb](https://github.com/UCloud-FE/react-components/commit/e20fabbfe9f1624dd16fcab7b0b02f3319f5d41c)), closes [#245](https://github.com/UCloud-FE/react-components/issues/245)
1193
+
1194
+ ### [0.6.20](https://github.com/UCloud-FE/react-components/compare/v0.6.19...v0.6.20) (2020-08-03)
1195
+
1196
+ ### Features
1197
+
1198
+ - **EditableTable:** add EditableTable ([945e294](https://github.com/UCloud-FE/react-components/commit/945e29413d545d15fca71c1b8371f584910cc56a)), closes [#241](https://github.com/UCloud-FE/react-components/issues/241)
1199
+ - **Table:** add rowSelction.selectedTip ([053e078](https://github.com/UCloud-FE/react-components/commit/053e078692277eedacaa5835cc68d02b82a32716)), closes [#240](https://github.com/UCloud-FE/react-components/issues/240)
1200
+ - **Table:** add tableLayout & rewrite fix column ([3918d37](https://github.com/UCloud-FE/react-components/commit/3918d3706f7c6752d45e2befebd18b4ad8571b17)), closes [#239](https://github.com/UCloud-FE/react-components/issues/239)
1201
+
1202
+ ### Bug Fixes
1203
+
1204
+ - **Message:** fix empty message style ([c25a1b0](https://github.com/UCloud-FE/react-components/commit/c25a1b0a8ecf985a43bc356e288a3293de68dab1))
1205
+
1206
+ ### [0.6.19](https://github.com/UCloud-FE/react-components/compare/v0.6.18...v0.6.19) (2020-07-24)
1207
+
1208
+ ### Bug Fixes
1209
+
1210
+ - **PopConfirm:** fix popup word break ([7c664a2](https://github.com/UCloud-FE/react-components/commit/7c664a2f087818581880e79f1a64c594eafca848))
1211
+
1212
+ ### [0.6.18](https://github.com/UCloud-FE/react-components/compare/v0.6.17...v0.6.18) (2020-07-24)
1213
+
1214
+ ### [0.6.17](https://github.com/UCloud-FE/react-components/compare/v0.6.16...v0.6.17) (2020-07-24)
1215
+
1216
+ ### Features
1217
+
1218
+ - **Combine:** add Combine and change compact to combine ([ffeb806](https://github.com/UCloud-FE/react-components/commit/ffeb806e5a8dbf64ca2174bb9bd3351cd89571c5)), closes [#235](https://github.com/UCloud-FE/react-components/issues/235)
1219
+ - **Message:** enhance message, add title, footer, close ([03490cf](https://github.com/UCloud-FE/react-components/commit/03490cfa601f15a211faf57728fb62dd0d0d27ce)), closes [#234](https://github.com/UCloud-FE/react-components/issues/234)
1220
+ - **NumberInput:** add tooltip for numberinput tip display ([51f8bec](https://github.com/UCloud-FE/react-components/commit/51f8bec5ff95dc4d7440607b6e7f8af22ac984aa)), closes [#238](https://github.com/UCloud-FE/react-components/issues/238)
1221
+ - **PopConfirm:** add popconfirm component ([b83f976](https://github.com/UCloud-FE/react-components/commit/b83f976f69bd69f6a7293e51aada21652f091fb5)), closes [#237](https://github.com/UCloud-FE/react-components/issues/237)
1222
+ - **Select:** add empty content for none option display ([d378a91](https://github.com/UCloud-FE/react-components/commit/d378a9150344700bfbcfbfcfba053e9a921cc8a3)), closes [#232](https://github.com/UCloud-FE/react-components/issues/232)
1223
+ - **Table:** add scroll.onScroll and fix fixed column style ([be66be6](https://github.com/UCloud-FE/react-components/commit/be66be6d3a1bcad0fd7f54277fbff33ec2023fad)), closes [#228](https://github.com/UCloud-FE/react-components/issues/228)
1224
+ - **Table:** add select tooltip for table select ([29c6589](https://github.com/UCloud-FE/react-components/commit/29c6589840f8da719268bbfe52a38a30af431d93)), closes [#231](https://github.com/UCloud-FE/react-components/issues/231)
1225
+ - **Tooltip:** add customStyle & change offset ([691a702](https://github.com/UCloud-FE/react-components/commit/691a70239fb2742a86fdee2f68b7778de072b66a)), closes [#236](https://github.com/UCloud-FE/react-components/issues/236)
1226
+ - **Tooltip:** change tooltip arrow position ([eadeaec](https://github.com/UCloud-FE/react-components/commit/eadeaecbbade25c9a28feff478db54cc5e90ca77)), closes [#230](https://github.com/UCloud-FE/react-components/issues/230)
1227
+
1228
+ ### Bug Fixes
1229
+
1230
+ - **Calendar:** fix calendar wrong ref ([759c4e9](https://github.com/UCloud-FE/react-components/commit/759c4e956e36a2b7a8593a899e7dc589e73d42a7)), closes [#229](https://github.com/UCloud-FE/react-components/issues/229)
1231
+
1232
+ <a name="0.6.16"></a>
1233
+
1234
+ ## [0.6.16](https://github.com/UCloud-FE/react-components/compare/v0.6.15...v0.6.16) (2020-06-05)
1235
+
1236
+ ### Features
1237
+
1238
+ - **Drawer:** change drawer icon ([8491e6f](https://github.com/UCloud-FE/react-components/commit/8491e6f)), closes [#224](https://github.com/UCloud-FE/react-components/issues/224)
1239
+ - **Select:** add custom style ([b03a7ef](https://github.com/UCloud-FE/react-components/commit/b03a7ef)), closes [#227](https://github.com/UCloud-FE/react-components/issues/227)
1240
+ - **Tag:** add component Tag ([dc37f94](https://github.com/UCloud-FE/react-components/commit/dc37f94)), closes [#226](https://github.com/UCloud-FE/react-components/issues/226)
1241
+ - **Upload:** support single select ([e1866fd](https://github.com/UCloud-FE/react-components/commit/e1866fd)), closes [#225](https://github.com/UCloud-FE/react-components/issues/225)
1242
+
1243
+ <a name="0.6.15"></a>
1244
+
1245
+ ## [0.6.15](https://github.com/UCloud-FE/react-components/compare/v0.6.14...v0.6.15) (2020-05-27)
1246
+
1247
+ ### Features
1248
+
1249
+ - **Message:** add config ([d41fe4f](https://github.com/UCloud-FE/react-components/commit/d41fe4f)), closes [#223](https://github.com/UCloud-FE/react-components/issues/223)
1250
+
1251
+ <a name="0.6.14"></a>
1252
+
1253
+ ## [0.6.14](https://github.com/UCloud-FE/react-components/compare/v0.6.13...v0.6.14) (2020-05-20)
1254
+
1255
+ ### Features
1256
+
1257
+ - **Message:** add custom popup method ([7952914](https://github.com/UCloud-FE/react-components/commit/7952914)), closes [#221](https://github.com/UCloud-FE/react-components/issues/221)
1258
+ - **Progress:** move out top text & hide overflow progress ([72c9d51](https://github.com/UCloud-FE/react-components/commit/72c9d51)), closes [#219](https://github.com/UCloud-FE/react-components/issues/219)
1259
+ - **Table:** add controlled order & default order ([e71cb03](https://github.com/UCloud-FE/react-components/commit/e71cb03)), closes [#220](https://github.com/UCloud-FE/react-components/issues/220)
1260
+
1261
+ <a name="0.6.13"></a>
1262
+
1263
+ ## [0.6.13](https://github.com/UCloud-FE/react-components/compare/v0.6.12...v0.6.13) (2020-05-18)
1264
+
1265
+ ### Features
1266
+
1267
+ - **Table:** add warning to missing column key ([7fbbb1e](https://github.com/UCloud-FE/react-components/commit/7fbbb1e)), closes [#218](https://github.com/UCloud-FE/react-components/issues/218)
1268
+
1269
+ <a name="0.6.12"></a>
1270
+
1271
+ ## [0.6.12](https://github.com/UCloud-FE/react-components/compare/v0.6.11...v0.6.12) (2020-05-15)
1272
+
1273
+ ### Bug Fixes
1274
+
1275
+ - **build:** fix build of lib index.js ([8ffcd4f](https://github.com/UCloud-FE/react-components/commit/8ffcd4f))
1276
+
1277
+ <a name="0.6.11"></a>
1278
+
1279
+ ## [0.6.11](https://github.com/UCloud-FE/react-components/compare/v0.6.10...v0.6.11) (2020-05-15)
1280
+
1281
+ ### Bug Fixes
1282
+
1283
+ - **Table:** fix table header scroll ([f5a4856](https://github.com/UCloud-FE/react-components/commit/f5a4856))
1284
+
1285
+ ### Features
1286
+
1287
+ - **Progress:** add color & support of DT ([58aee82](https://github.com/UCloud-FE/react-components/commit/58aee82)), closes [#217](https://github.com/UCloud-FE/react-components/issues/217)
1288
+ - **Select:** add extra content support ([280b79a](https://github.com/UCloud-FE/react-components/commit/280b79a)), closes [#216](https://github.com/UCloud-FE/react-components/issues/216)
1289
+ - **Table:** add support of controlled filter ([0d5f935](https://github.com/UCloud-FE/react-components/commit/0d5f935)), closes [#214](https://github.com/UCloud-FE/react-components/issues/214)
1290
+
1291
+ <a name="0.6.10"></a>
1292
+
1293
+ ## [0.6.10](https://github.com/UCloud-FE/react-components/compare/v0.6.9...v0.6.10) (2020-04-26)
1294
+
1295
+ ### Features
1296
+
1297
+ - **Table:** move columnPlaceholder before lastest fix column ([a667a51](https://github.com/UCloud-FE/react-components/commit/a667a51)), closes [#213](https://github.com/UCloud-FE/react-components/issues/213)
1298
+
1299
+ <a name="0.6.9"></a>
1300
+
1301
+ ## [0.6.9](https://github.com/UCloud-FE/react-components/compare/v0.6.8...v0.6.9) (2020-04-17)
1302
+
1303
+ ### Features
1304
+
1305
+ - **Step:** add designTokens to step ([f8183c9](https://github.com/UCloud-FE/react-components/commit/f8183c9)), closes [#212](https://github.com/UCloud-FE/react-components/issues/212)
1306
+
1307
+ <a name="0.6.8"></a>
1308
+
1309
+ ## [0.6.8](https://github.com/UCloud-FE/react-components/compare/v0.6.7...v0.6.8) (2020-04-14)
1310
+
1311
+ ### Features
1312
+
1313
+ - **DesignTokens:** update designTokens for remark ([65f00fa](https://github.com/UCloud-FE/react-components/commit/65f00fa))
1314
+ - **Style:** normalize placeholder opacity ([d7b36bc](https://github.com/UCloud-FE/react-components/commit/d7b36bc))
1315
+ - **Theme:** change color of T_COLOR_TEXT_REMARK_LIGHT ([e8a4aa9](https://github.com/UCloud-FE/react-components/commit/e8a4aa9))
1316
+
1317
+ <a name="0.6.7"></a>
1318
+
1319
+ ## [0.6.7](https://github.com/UCloud-FE/react-components/compare/v0.6.6...v0.6.7) (2020-04-01)
1320
+
1321
+ ### Bug Fixes
1322
+
1323
+ - **Input:** fix input placeholder color when disable ([a80ebcd](https://github.com/UCloud-FE/react-components/commit/a80ebcd)), closes [#210](https://github.com/UCloud-FE/react-components/issues/210)
1324
+ - **Slider:** fix slider bug when key props change ([83f6595](https://github.com/UCloud-FE/react-components/commit/83f6595)), closes [#211](https://github.com/UCloud-FE/react-components/issues/211)
1325
+
1326
+ <a name="0.6.6"></a>
1327
+
1328
+ ## [0.6.6](https://github.com/UCloud-FE/react-components/compare/v0.6.5...v0.6.6) (2020-03-25)
1329
+
1330
+ ### Features
1331
+
1332
+ - **Table:** change table tip notice to default ([413e008](https://github.com/UCloud-FE/react-components/commit/413e008)), closes [#208](https://github.com/UCloud-FE/react-components/issues/208)
1333
+ - **Tooltip:** add arrow props to hide arrow ([a2d62c7](https://github.com/UCloud-FE/react-components/commit/a2d62c7)), closes [#207](https://github.com/UCloud-FE/react-components/issues/207)
1334
+
1335
+ <a name="0.6.5"></a>
1336
+
1337
+ ## [0.6.5](https://github.com/UCloud-FE/react-components/compare/v0.6.4...v0.6.5) (2020-03-16)
1338
+
1339
+ ### Bug Fixes
1340
+
1341
+ - **DatePicker:** change month wrapper width to 240 ([79f588e](https://github.com/UCloud-FE/react-components/commit/79f588e)), closes [#206](https://github.com/UCloud-FE/react-components/issues/206)
1342
+
1343
+ <a name="0.6.4"></a>
1344
+
1345
+ ## [0.6.4](https://github.com/UCloud-FE/react-components/compare/v0.6.3...v0.6.4) (2020-03-02)
1346
+
1347
+ ### Bug Fixes
1348
+
1349
+ - **Calendar:** remove moment locale in calendar ([54e48ff](https://github.com/UCloud-FE/react-components/commit/54e48ff)), closes [#205](https://github.com/UCloud-FE/react-components/issues/205)
1350
+
1351
+ <a name="0.6.3"></a>
1352
+
1353
+ ## [0.6.3](https://github.com/UCloud-FE/react-components/compare/v0.6.2...v0.6.3) (2020-02-28)
1354
+
1355
+ ### Bug Fixes
1356
+
1357
+ - **Modal:** fix modal hide-mask style ([1e938dd](https://github.com/UCloud-FE/react-components/commit/1e938dd)), closes [#203](https://github.com/UCloud-FE/react-components/issues/203)
1358
+
1359
+ ### Features
1360
+
1361
+ - **ThemeProvider:** add designtokens to loading,drawer,tabs ([33acc32](https://github.com/UCloud-FE/react-components/commit/33acc32)), closes [#204](https://github.com/UCloud-FE/react-components/issues/204)
1362
+
1363
+ <a name="0.6.2"></a>
1364
+
1365
+ ## [0.6.2](https://github.com/UCloud-FE/react-components/compare/v0.6.1...v0.6.2) (2020-02-26)
1366
+
1367
+ ### Bug Fixes
1368
+
1369
+ - **Select:** fix selector styles ([7c2d063](https://github.com/UCloud-FE/react-components/commit/7c2d063)), closes [#202](https://github.com/UCloud-FE/react-components/issues/202)
1370
+
1371
+ <a name="0.6.1"></a>
1372
+
1373
+ ## [0.6.1](https://github.com/UCloud-FE/react-components/compare/v0.6.0...v0.6.1) (2020-02-25)
1374
+
1375
+ ### Features
1376
+
1377
+ - **ThemeProvider:** move to designTokens for most components ([d054e01](https://github.com/UCloud-FE/react-components/commit/d054e01)), closes [#201](https://github.com/UCloud-FE/react-components/issues/201)
1378
+
1379
+ <a name="0.6.0"></a>
1380
+
1381
+ # [0.6.0](https://github.com/UCloud-FE/react-components/compare/v0.5.23...v0.6.0) (2020-02-20)
1382
+
1383
+ ### Features
1384
+
1385
+ - **ThemeProvider:** change theme to designTokens ([37686fd](https://github.com/UCloud-FE/react-components/commit/37686fd)), closes [#200](https://github.com/UCloud-FE/react-components/issues/200)
1386
+
1387
+ <a name="0.5.23"></a>
1388
+
1389
+ ## [0.5.23](https://github.com/UCloud-FE/react-components/compare/v0.5.22...v0.5.23) (2020-01-20)
1390
+
1391
+ ### Features
1392
+
1393
+ - **Table:** add cable for table child td ([ec07d11](https://github.com/UCloud-FE/react-components/commit/ec07d11)), closes [#198](https://github.com/UCloud-FE/react-components/issues/198)
1394
+ - **Table:** optimize ActionList disabled item ([13d2d72](https://github.com/UCloud-FE/react-components/commit/13d2d72)), closes [#197](https://github.com/UCloud-FE/react-components/issues/197)
1395
+
1396
+ <a name="0.5.22"></a>
1397
+
1398
+ ## [0.5.22](https://github.com/UCloud-FE/react-components/compare/v0.5.21...v0.5.22) (2020-01-16)
1399
+
1400
+ ### Bug Fixes
1401
+
1402
+ - **NumberInput:** fix border when hideHandler ([7c1d626](https://github.com/UCloud-FE/react-components/commit/7c1d626)), closes [#193](https://github.com/UCloud-FE/react-components/issues/193)
1403
+
1404
+ ### Features
1405
+
1406
+ - **Menu:** remove pointer-event:none of menu item ([d40db99](https://github.com/UCloud-FE/react-components/commit/d40db99)), closes [#196](https://github.com/UCloud-FE/react-components/issues/196)
1407
+ - **Table:** add columnPlaceholder ([d9dbfa1](https://github.com/UCloud-FE/react-components/commit/d9dbfa1)), closes [#194](https://github.com/UCloud-FE/react-components/issues/194)
1408
+ - **Tabs:** remove point-event:none in disabled tab ([094fcf5](https://github.com/UCloud-FE/react-components/commit/094fcf5)), closes [#195](https://github.com/UCloud-FE/react-components/issues/195)
1409
+
1410
+ <a name="0.5.21"></a>
1411
+
1412
+ ## [0.5.21](https://github.com/UCloud-FE/react-components/compare/v0.5.20...v0.5.21) (2019-12-16)
1413
+
1414
+ ### Bug Fixes
1415
+
1416
+ - **Input:** fix input disabled color in safari ([dac4455](https://github.com/UCloud-FE/react-components/commit/dac4455)), closes [#190](https://github.com/UCloud-FE/react-components/issues/190)
1417
+
1418
+ ### Features
1419
+
1420
+ - **Drawer:** add close handler ([70e6324](https://github.com/UCloud-FE/react-components/commit/70e6324)), closes [#192](https://github.com/UCloud-FE/react-components/issues/192)
1421
+ - **Icon:** add prefix to support custom font-icon ([611cff6](https://github.com/UCloud-FE/react-components/commit/611cff6)), closes [#191](https://github.com/UCloud-FE/react-components/issues/191)
1422
+
1423
+ <a name="0.5.20"></a>
1424
+
1425
+ ## [0.5.20](https://github.com/UCloud-FE/react-components/compare/v0.5.19...v0.5.20) (2019-12-03)
1426
+
1427
+ ### Bug Fixes
1428
+
1429
+ - **NumberInput:** fix height in IE ([777abfe](https://github.com/UCloud-FE/react-components/commit/777abfe)), closes [#187](https://github.com/UCloud-FE/react-components/issues/187)
1430
+
1431
+ ### Features
1432
+
1433
+ - **Steps:** replace icon with svg icon ([450ea8a](https://github.com/UCloud-FE/react-components/commit/450ea8a)), closes [#189](https://github.com/UCloud-FE/react-components/issues/189)
1434
+ - **SvgIcon:** add SvgIcon ([bde5d8f](https://github.com/UCloud-FE/react-components/commit/bde5d8f)), closes [#188](https://github.com/UCloud-FE/react-components/issues/188)
1435
+
1436
+ <a name="0.5.19"></a>
1437
+
1438
+ ## [0.5.19](https://github.com/UCloud-FE/react-components/compare/v0.5.18...v0.5.19) (2019-11-27)
1439
+
1440
+ ### Bug Fixes
1441
+
1442
+ - **Icon:** clean icon props to html ([aafd286](https://github.com/UCloud-FE/react-components/commit/aafd286)), closes [#185](https://github.com/UCloud-FE/react-components/issues/185)
1443
+
1444
+ ### Features
1445
+
1446
+ - **Breadcrumb:** add styleType ([26a62a0](https://github.com/UCloud-FE/react-components/commit/26a62a0)), closes [#183](https://github.com/UCloud-FE/react-components/issues/183)
1447
+ - **Radio:** change icon for radio ([13f020a](https://github.com/UCloud-FE/react-components/commit/13f020a)), closes [#184](https://github.com/UCloud-FE/react-components/issues/184)
1448
+ - **Steps:** add Steps ([09cbbec](https://github.com/UCloud-FE/react-components/commit/09cbbec)), closes [#186](https://github.com/UCloud-FE/react-components/issues/186)
1449
+
1450
+ <a name="0.5.18"></a>
1451
+
1452
+ ## [0.5.18](https://github.com/UCloud-FE/react-components/compare/v0.5.17...v0.5.18) (2019-11-19)
1453
+
1454
+ ### Features
1455
+
1456
+ - **Breadcrumb:** add Breadcrumb component ([815292c](https://github.com/UCloud-FE/react-components/commit/815292c)), closes [#182](https://github.com/UCloud-FE/react-components/issues/182)
1457
+
1458
+ <a name="0.5.17"></a>
1459
+
1460
+ ## [0.5.17](https://github.com/UCloud-FE/react-components/compare/v0.5.16...v0.5.17) (2019-10-09)
1461
+
1462
+ ### Features
1463
+
1464
+ - **Checkbox:** change checkbox icon color ([f9b89b4](https://github.com/UCloud-FE/react-components/commit/f9b89b4)), closes [#180](https://github.com/UCloud-FE/react-components/issues/180)
1465
+ - **Table:** change box-shadow of fixed table ([d6ba5e9](https://github.com/UCloud-FE/react-components/commit/d6ba5e9))
1466
+ - **Table:** remove border of search tip ([815616f](https://github.com/UCloud-FE/react-components/commit/815616f)), closes [#178](https://github.com/UCloud-FE/react-components/issues/178)
1467
+
1468
+ <a name="0.5.16"></a>
1469
+
1470
+ ## [0.5.16](https://github.com/UCloud-FE/react-components/compare/v0.5.15...v0.5.16) (2019-09-11)
1471
+
1472
+ ### Features
1473
+
1474
+ - **Input:** add error status ([8f902fe](https://github.com/UCloud-FE/react-components/commit/8f902fe))
1475
+
1476
+ <a name="0.5.15"></a>
1477
+
1478
+ ## [0.5.15](https://github.com/UCloud-FE/react-components/compare/v0.5.14...v0.5.15) (2019-09-06)
1479
+
1480
+ ### Bug Fixes
1481
+
1482
+ - **Input:** fix missing onFocus & onBlur & override default style ([6f0360a](https://github.com/UCloud-FE/react-components/commit/6f0360a)), closes [#173](https://github.com/UCloud-FE/react-components/issues/173)
1483
+ - **Tabs:** fix nested tabs style bug ([7786b79](https://github.com/UCloud-FE/react-components/commit/7786b79)), closes [#175](https://github.com/UCloud-FE/react-components/issues/175)
1484
+
1485
+ ### Features
1486
+
1487
+ - **deprecatedLog:** change deprecated log to called only once ([140c895](https://github.com/UCloud-FE/react-components/commit/140c895)), closes [#174](https://github.com/UCloud-FE/react-components/issues/174)
1488
+
1489
+ <a name="0.5.14"></a>
1490
+
1491
+ ## [0.5.14](https://github.com/UCloud-FE/react-components/compare/v0.5.13...v0.5.14) (2019-09-04)
1492
+
1493
+ ### Features
1494
+
1495
+ - **Input:** add suffix & prefix & click to focus ([37211c3](https://github.com/UCloud-FE/react-components/commit/37211c3)), closes [#171](https://github.com/UCloud-FE/react-components/issues/171)
1496
+ - **Tabs:** add size ([9166517](https://github.com/UCloud-FE/react-components/commit/9166517)), closes [#172](https://github.com/UCloud-FE/react-components/issues/172)
1497
+
1498
+ <a name="0.5.13"></a>
1499
+
1500
+ ## [0.5.13](https://github.com/UCloud-FE/react-components/compare/v0.5.12...v0.5.13) (2019-09-02)
1501
+
1502
+ ### Bug Fixes
1503
+
1504
+ - **Message:** fix message onClose not trigger bug ([8bba21b](https://github.com/UCloud-FE/react-components/commit/8bba21b)), closes [#168](https://github.com/UCloud-FE/react-components/issues/168)
1505
+
1506
+ ### Features
1507
+
1508
+ - **Checkbox:** add support of multiple content ([eac8321](https://github.com/UCloud-FE/react-components/commit/eac8321)), closes [#170](https://github.com/UCloud-FE/react-components/issues/170)
1509
+ - **Pagination:** add showTotal ([94f1112](https://github.com/UCloud-FE/react-components/commit/94f1112))
1510
+
1511
+ <a name="0.5.12"></a>
1512
+
1513
+ ## [0.5.12](https://github.com/UCloud-FE/react-components/compare/v0.5.11...v0.5.12) (2019-08-22)
1514
+
1515
+ ### Bug Fixes
1516
+
1517
+ - **Dependences:** fix rc-\* dependences versions ([c765784](https://github.com/UCloud-FE/react-components/commit/c765784))
1518
+
1519
+ <a name="0.5.11"></a>
1520
+
1521
+ ## [0.5.11](https://github.com/UCloud-FE/react-components/compare/v0.5.10...v0.5.11) (2019-08-14)
1522
+
1523
+ ### Bug Fixes
1524
+
1525
+ - **Popover:** fix popover scroll bar blur when scroll ([ba2b24f](https://github.com/UCloud-FE/react-components/commit/ba2b24f)), closes [#163](https://github.com/UCloud-FE/react-components/issues/163)
1526
+
1527
+ ### Features
1528
+
1529
+ - **Table:** add column.renderTitle & some docs ([b2767ff](https://github.com/UCloud-FE/react-components/commit/b2767ff)), closes [#164](https://github.com/UCloud-FE/react-components/issues/164)
1530
+ - **Table:** add onConditionChange & doNotHandleConditionChange ([14ff4c5](https://github.com/UCloud-FE/react-components/commit/14ff4c5))
1531
+
1532
+ <a name="0.5.10"></a>
1533
+
1534
+ ## [0.5.10](https://github.com/UCloud-FE/react-components/compare/v0.5.9...v0.5.10) (2019-07-18)
1535
+
1536
+ ### Bug Fixes
1537
+
1538
+ - **Modal:** fix version of rc-dialog to avoid bug ([5b41d62](https://github.com/UCloud-FE/react-components/commit/5b41d62)), closes [#161](https://github.com/UCloud-FE/react-components/issues/161)
1539
+
1540
+ <a name="0.5.9"></a>
1541
+
1542
+ ## [0.5.9](https://github.com/UCloud-FE/react-components/compare/v0.5.8...v0.5.9) (2019-07-16)
1543
+
1544
+ ### Bug Fixes
1545
+
1546
+ - **Slider:** fix slider click offset when horiz scrolled ([c1b7fff](https://github.com/UCloud-FE/react-components/commit/c1b7fff)), closes [#160](https://github.com/UCloud-FE/react-components/issues/160)
1547
+
1548
+ <a name="0.5.8"></a>
1549
+
1550
+ ## [0.5.8](https://github.com/UCloud-FE/react-components/compare/v0.5.7...v0.5.8) (2019-07-09)
1551
+
1552
+ ### Bug Fixes
1553
+
1554
+ - **Table:** add clear both to table content to fix title float ([3b364c9](https://github.com/UCloud-FE/react-components/commit/3b364c9)), closes [#157](https://github.com/UCloud-FE/react-components/issues/157)
1555
+
1556
+ ### Features
1557
+
1558
+ - **Table:** add ExpandedRowContent|remove border of action icon ([320ddee](https://github.com/UCloud-FE/react-components/commit/320ddee)), closes [#158](https://github.com/UCloud-FE/react-components/issues/158)
1559
+ - **Table:** add zebraCrossing ([ab68740](https://github.com/UCloud-FE/react-components/commit/ab68740)), closes [#159](https://github.com/UCloud-FE/react-components/issues/159)
1560
+
1561
+ <a name="0.5.7"></a>
1562
+
1563
+ ## [0.5.7](https://github.com/UCloud-FE/react-components/compare/v0.5.6...v0.5.7) (2019-07-05)
1564
+
1565
+ ### Features
1566
+
1567
+ - **Button:** add fakeDisabled to avoid disabled button wrong usage ([f71aca8](https://github.com/UCloud-FE/react-components/commit/f71aca8)), closes [#155](https://github.com/UCloud-FE/react-components/issues/155)
1568
+ - **Table:** remove table content overflow style ([fb01a6d](https://github.com/UCloud-FE/react-components/commit/fb01a6d)), closes [#156](https://github.com/UCloud-FE/react-components/issues/156)
1569
+
1570
+ <a name="0.5.6"></a>
1571
+
1572
+ ## [0.5.6](https://github.com/UCloud-FE/react-components/compare/v0.5.5...v0.5.6) (2019-07-02)
1573
+
1574
+ ### Bug Fixes
1575
+
1576
+ - **Drawer:** fix Drawer unmount not trigger bug ([d1a8050](https://github.com/UCloud-FE/react-components/commit/d1a8050))
1577
+ - **Table:** fix defaultExpandAllRows ([eb9b767](https://github.com/UCloud-FE/react-components/commit/eb9b767)), closes [#154](https://github.com/UCloud-FE/react-components/issues/154)
1578
+
1579
+ ### Features
1580
+
1581
+ - **Radio:** change card style when title is null ([8d50bcb](https://github.com/UCloud-FE/react-components/commit/8d50bcb)), closes [#152](https://github.com/UCloud-FE/react-components/issues/152)
1582
+
1583
+ <a name="0.5.5"></a>
1584
+
1585
+ ## [0.5.5](https://github.com/UCloud-FE/react-components/compare/v0.5.4...v0.5.5) (2019-06-27)
1586
+
1587
+ ### Features
1588
+
1589
+ - **Popover:** change default zIndex to 1030 of popover ([e9bbccc](https://github.com/UCloud-FE/react-components/commit/e9bbccc)), closes [#150](https://github.com/UCloud-FE/react-components/issues/150)
1590
+ - **Table:** add modalProps & popoverProps ([a0f13e7](https://github.com/UCloud-FE/react-components/commit/a0f13e7)), closes [#148](https://github.com/UCloud-FE/react-components/issues/148)
1591
+ - **Table:** support selectAll of children & add expandIconColumnIndex ([873ee5d](https://github.com/UCloud-FE/react-components/commit/873ee5d)), closes [#149](https://github.com/UCloud-FE/react-components/issues/149)
1592
+
1593
+ <a name="0.5.4"></a>
1594
+
1595
+ ## [0.5.4](https://github.com/UCloud-FE/react-components/compare/v0.5.3...v0.5.4) (2019-06-06)
1596
+
1597
+ ### Bug Fixes
1598
+
1599
+ - **Calendar:** fix calendar cell disabled style when current & active ([4fd4024](https://github.com/UCloud-FE/react-components/commit/4fd4024)), closes [#141](https://github.com/UCloud-FE/react-components/issues/141)
1600
+
1601
+ ### Features
1602
+
1603
+ - **All:** remove some pointer-event none ([c887e5b](https://github.com/UCloud-FE/react-components/commit/c887e5b)), closes [#145](https://github.com/UCloud-FE/react-components/issues/145)
1604
+ - **Drawer:** add Drawer ([4cb0aa7](https://github.com/UCloud-FE/react-components/commit/4cb0aa7)), closes [#144](https://github.com/UCloud-FE/react-components/issues/144)
1605
+ - **Table:** add style for title to avoid cover of table ([e15a757](https://github.com/UCloud-FE/react-components/commit/e15a757)), closes [#142](https://github.com/UCloud-FE/react-components/issues/142)
1606
+
1607
+ <a name="0.5.3"></a>
1608
+
1609
+ ## [0.5.3](https://github.com/UCloud-FE/react-components/compare/v0.5.2...v0.5.3) (2019-05-22)
1610
+
1611
+ ### Bug Fixes
1612
+
1613
+ - **DatePicker:** fix change error ([a6ee7ae](https://github.com/UCloud-FE/react-components/commit/a6ee7ae)), closes [#140](https://github.com/UCloud-FE/react-components/issues/140)
1614
+ - **Tooltip:** fix tooltip auto align style ([558b4ba](https://github.com/UCloud-FE/react-components/commit/558b4ba)), closes [#4](https://github.com/UCloud-FE/react-components/issues/4) [#138](https://github.com/UCloud-FE/react-components/issues/138)
1615
+
1616
+ ### Features
1617
+
1618
+ - **style:** change active border color ([0fae02b](https://github.com/UCloud-FE/react-components/commit/0fae02b)), closes [#139](https://github.com/UCloud-FE/react-components/issues/139)
1619
+
1620
+ <a name="0.5.2"></a>
1621
+
1622
+ ## [0.5.2](https://github.com/UCloud-FE/react-components/compare/v0.5.1...v0.5.2) (2019-05-17)
1623
+
1624
+ ### Bug Fixes
1625
+
1626
+ - **DatePicker:** fix datepicker.range bug ([dbc0f13](https://github.com/UCloud-FE/react-components/commit/dbc0f13)), closes [#135](https://github.com/UCloud-FE/react-components/issues/135)
1627
+
1628
+ ### Features
1629
+
1630
+ - **All:** add typescript declaration file ([a71ebe8](https://github.com/UCloud-FE/react-components/commit/a71ebe8)), closes [#130](https://github.com/UCloud-FE/react-components/issues/130)
1631
+ - **DatePicker:** add rangeTip & some error tips ([24468fd](https://github.com/UCloud-FE/react-components/commit/24468fd)), closes [#136](https://github.com/UCloud-FE/react-components/issues/136)
1632
+ - **Table:** change table ColumnConfig tip change logic ([6b0c912](https://github.com/UCloud-FE/react-components/commit/6b0c912)), closes [#133](https://github.com/UCloud-FE/react-components/issues/133)
1633
+ - **Table:** change table sort icon color & change order logic ([2300b12](https://github.com/UCloud-FE/react-components/commit/2300b12)), closes [#92](https://github.com/UCloud-FE/react-components/issues/92) [#134](https://github.com/UCloud-FE/react-components/issues/134)
1634
+
1635
+ <a name="0.5.1"></a>
1636
+
1637
+ ## [0.5.1](https://github.com/UCloud-FE/react-components/compare/v0.5.0...v0.5.1) (2019-05-15)
1638
+
1639
+ ### Features
1640
+
1641
+ - **All:** change some style ([c5d853b](https://github.com/UCloud-FE/react-components/commit/c5d853b)), closes [#131](https://github.com/UCloud-FE/react-components/issues/131)
1642
+ - **All:** change text color of select,input and radio.button ([8577c04](https://github.com/UCloud-FE/react-components/commit/8577c04)), closes [#129](https://github.com/UCloud-FE/react-components/issues/129)
1643
+ - **Card:** update card style ([6004434](https://github.com/UCloud-FE/react-components/commit/6004434)), closes [#126](https://github.com/UCloud-FE/react-components/issues/126)
1644
+ - **Form:** add size to form ([30f109c](https://github.com/UCloud-FE/react-components/commit/30f109c)), closes [#127](https://github.com/UCloud-FE/react-components/issues/127)
1645
+ - **Radio:** change radio min-width size ([79f9184](https://github.com/UCloud-FE/react-components/commit/79f9184)), closes [#128](https://github.com/UCloud-FE/react-components/issues/128)
1646
+ - **Slider:** change slider wrap ([16c87d2](https://github.com/UCloud-FE/react-components/commit/16c87d2)), closes [#132](https://github.com/UCloud-FE/react-components/issues/132)
1647
+
1648
+ <a name="0.5.0"></a>
1649
+
1650
+ # [0.5.0](https://github.com/UCloud-FE/react-components/compare/v0.4.7...v0.5.0) (2019-05-06)
1651
+
1652
+ ### Features
1653
+
1654
+ - **merge material theme:** merge material theme into default theme ([a57ee4f](https://github.com/UCloud-FE/react-components/commit/a57ee4f)), closes [#124](https://github.com/UCloud-FE/react-components/issues/124)
1655
+ - **merge material theme:** merge material theme into default theme ([8a7d520](https://github.com/UCloud-FE/react-components/commit/8a7d520))
1656
+
1657
+ <a name="0.4.7"></a>
1658
+
1659
+ ## [0.4.7](https://github.com/UCloud-FE/react-components/compare/v0.4.6...v0.4.7) (2019-04-29)
1660
+
1661
+ ### Bug Fixes
1662
+
1663
+ - **Button:** fix safari button wrong margin ([43e50a2](https://github.com/UCloud-FE/react-components/commit/43e50a2)), closes [#123](https://github.com/UCloud-FE/react-components/issues/123)
1664
+
1665
+ ### Features
1666
+
1667
+ - **Select:** reduce padding of select ([7023ca8](https://github.com/UCloud-FE/react-components/commit/7023ca8)), closes [#122](https://github.com/UCloud-FE/react-components/issues/122)
1668
+
1669
+ <a name="0.4.6"></a>
1670
+
1671
+ ## [0.4.6](https://github.com/UCloud-FE/react-components/compare/v0.4.5...v0.4.6) (2019-04-19)
1672
+
1673
+ ### Bug Fixes
1674
+
1675
+ - **NumberInput:** fix style of suffix ([2a9271f](https://github.com/UCloud-FE/react-components/commit/2a9271f)), closes [#116](https://github.com/UCloud-FE/react-components/issues/116)
1676
+
1677
+ ### Features
1678
+
1679
+ - **Card:** remove min height of card content ([06a3d00](https://github.com/UCloud-FE/react-components/commit/06a3d00)), closes [#119](https://github.com/UCloud-FE/react-components/issues/119)
1680
+ - **Radio:** add text radio ([2f1da9e](https://github.com/UCloud-FE/react-components/commit/2f1da9e)), closes [#120](https://github.com/UCloud-FE/react-components/issues/120)
1681
+ - **Radio:** change card style ([186fe37](https://github.com/UCloud-FE/react-components/commit/186fe37)), closes [#121](https://github.com/UCloud-FE/react-components/issues/121)
1682
+
1683
+ <a name="0.4.5"></a>
1684
+
1685
+ ## [0.4.5](https://github.com/UCloud-FE/react-components/compare/v0.4.4...v0.4.5) (2019-04-16)
1686
+
1687
+ ### Bug Fixes
1688
+
1689
+ - **Radio:** fix style of button ([81e6c2d](https://github.com/UCloud-FE/react-components/commit/81e6c2d)), closes [#117](https://github.com/UCloud-FE/react-components/issues/117)
1690
+
1691
+ ### Features
1692
+
1693
+ - **Icon:** reset icon style ([191a7ca](https://github.com/UCloud-FE/react-components/commit/191a7ca)), closes [#118](https://github.com/UCloud-FE/react-components/issues/118)
1694
+
1695
+ <a name="0.4.4"></a>
1696
+
1697
+ ## [0.4.4](https://github.com/UCloud-FE/react-components/compare/v0.4.3...v0.4.4) (2019-04-11)
1698
+
1699
+ ### Bug Fixes
1700
+
1701
+ - **NumberInput:** fix when onHandle return 2 arguments ([fd3bdaa](https://github.com/UCloud-FE/react-components/commit/fd3bdaa)), closes [#114](https://github.com/UCloud-FE/react-components/issues/114)
1702
+ - **Select:** fix search input width and menu max width ([600b5fb](https://github.com/UCloud-FE/react-components/commit/600b5fb)), closes [#115](https://github.com/UCloud-FE/react-components/issues/115)
1703
+ - **Slider:** fix slider bug when update max min or step ([93fd186](https://github.com/UCloud-FE/react-components/commit/93fd186)), closes [#112](https://github.com/UCloud-FE/react-components/issues/112)
1704
+ - **Slider:** ZForm dec bug & style bug ([2b430ed](https://github.com/UCloud-FE/react-components/commit/2b430ed)), closes [#83](https://github.com/UCloud-FE/react-components/issues/83) [#113](https://github.com/UCloud-FE/react-components/issues/113)
1705
+
1706
+ <a name="0.4.3"></a>
1707
+
1708
+ ## [0.4.3](https://github.com/UCloud-FE/react-components/compare/v0.4.2...v0.4.3) (2019-04-10)
1709
+
1710
+ ### Bug Fixes
1711
+
1712
+ - **Textarea:** fix placeholder color ([f5e47bc](https://github.com/UCloud-FE/react-components/commit/f5e47bc)), closes [#109](https://github.com/UCloud-FE/react-components/issues/109)
1713
+
1714
+ ### Features
1715
+
1716
+ - **DatePicker:** add getCalendarContainer to set popover container ([3334611](https://github.com/UCloud-FE/react-components/commit/3334611)), closes [#65](https://github.com/UCloud-FE/react-components/issues/65) [#110](https://github.com/UCloud-FE/react-components/issues/110)
1717
+ - **Form:** add Group of form ([9be9ede](https://github.com/UCloud-FE/react-components/commit/9be9ede)), closes [#106](https://github.com/UCloud-FE/react-components/issues/106)
1718
+ - **Input:** add classname ([5a044b3](https://github.com/UCloud-FE/react-components/commit/5a044b3)), closes [#111](https://github.com/UCloud-FE/react-components/issues/111)
1719
+ - **Modal:** support promise when use modal method ([a73e51f](https://github.com/UCloud-FE/react-components/commit/a73e51f)), closes [#108](https://github.com/UCloud-FE/react-components/issues/108)
1720
+ - **Radio:** add classnames ([176bb87](https://github.com/UCloud-FE/react-components/commit/176bb87)), closes [#107](https://github.com/UCloud-FE/react-components/issues/107)
1721
+ - **Table:** add button styleType to actionList ([86a65f8](https://github.com/UCloud-FE/react-components/commit/86a65f8)), closes [#105](https://github.com/UCloud-FE/react-components/issues/105)
1722
+
1723
+ <a name="0.4.2"></a>
1724
+
1725
+ ## [0.4.2](https://github.com/UCloud-FE/react-components/compare/v0.4.1...v0.4.2) (2019-04-08)
1726
+
1727
+ ### Bug Fixes
1728
+
1729
+ - **All:** fix zindex override bug ([996d790](https://github.com/UCloud-FE/react-components/commit/996d790)), closes [#103](https://github.com/UCloud-FE/react-components/issues/103)
1730
+ - **Calendar:** fix outline of calendar popover ([592861c](https://github.com/UCloud-FE/react-components/commit/592861c)), closes [#104](https://github.com/UCloud-FE/react-components/issues/104)
1731
+ - **Table:** fix scroll bar visible in windows ([7bd9474](https://github.com/UCloud-FE/react-components/commit/7bd9474)), closes [#102](https://github.com/UCloud-FE/react-components/issues/102)
1732
+
1733
+ ### Features
1734
+
1735
+ - **All:** add classname ([d42af4a](https://github.com/UCloud-FE/react-components/commit/d42af4a)), closes [#85](https://github.com/UCloud-FE/react-components/issues/85)
1736
+ - **Table:** add resizableTH for table td resize ([5ca6219](https://github.com/UCloud-FE/react-components/commit/5ca6219)), closes [#101](https://github.com/UCloud-FE/react-components/issues/101)
1737
+ - **Table:** move footer outside of table content ([3e6a382](https://github.com/UCloud-FE/react-components/commit/3e6a382)), closes [#99](https://github.com/UCloud-FE/react-components/issues/99)
1738
+
1739
+ <a name="0.4.1"></a>
1740
+
1741
+ ## [0.4.1](https://github.com/UCloud-FE/react-components/compare/v0.4.0...v0.4.1) (2019-03-25)
1742
+
1743
+ ### Bug Fixes
1744
+
1745
+ - **Tabs:** fix tabs tab bar style ([727057d](https://github.com/UCloud-FE/react-components/commit/727057d)), closes [#98](https://github.com/UCloud-FE/react-components/issues/98)
1746
+ - **Tabs:** fix tabs tab bar style ([5616831](https://github.com/UCloud-FE/react-components/commit/5616831))
1747
+
1748
+ <a name="0.4.0"></a>
1749
+
1750
+ # [0.4.0](https://github.com/UCloud-FE/react-components/compare/v0.4.0-beta.11...v0.4.0) (2019-03-25)
1751
+
1752
+ ### Bug Fixes
1753
+
1754
+ - **Tabs:** fix style bug when nest two diffrence styleType tabs ([9e008ed](https://github.com/UCloud-FE/react-components/commit/9e008ed)), closes [#97](https://github.com/UCloud-FE/react-components/issues/97)
1755
+ - **Tabs:** fix tabs tab height style bug ([ca13437](https://github.com/UCloud-FE/react-components/commit/ca13437)), closes [#96](https://github.com/UCloud-FE/react-components/issues/96)
1756
+
1757
+ <a name="0.4.0-beta.11"></a>
1758
+
1759
+ # [0.4.0-beta.11](https://github.com/UCloud-FE/react-components/compare/v0.4.0-beta.10...v0.4.0-beta.11) (2019-03-18)
1760
+
1761
+ ### Bug Fixes
1762
+
1763
+ - **npm:** fix npm index file ([89394c7](https://github.com/UCloud-FE/react-components/commit/89394c7))
1764
+
1765
+ <a name="0.4.0-beta.10"></a>
1766
+
1767
+ # [0.4.0-beta.10](https://github.com/UCloud-FE/react-components/compare/v0.4.0-beta.9...v0.4.0-beta.10) (2019-03-18)
1768
+
1769
+ <a name="0.4.0-beta.9"></a>
1770
+
1771
+ # [0.4.0-beta.9](https://github.com/UCloud-FE/react-components/compare/v0.4.0-beta.8...v0.4.0-beta.9) (2019-03-11)
1772
+
1773
+ ### Bug Fixes
1774
+
1775
+ - **Radio:** fix radio card style ([9fdfd91](https://github.com/UCloud-FE/react-components/commit/9fdfd91)), closes [#89](https://github.com/UCloud-FE/react-components/issues/89)
1776
+
1777
+ ### Features
1778
+
1779
+ - **Icon:** update icon ([aa79b35](https://github.com/UCloud-FE/react-components/commit/aa79b35)), closes [#90](https://github.com/UCloud-FE/react-components/issues/90)
1780
+
1781
+ <a name="0.4.0-beta.8"></a>
1782
+
1783
+ # [0.4.0-beta.8](https://github.com/UCloud-FE/react-components/compare/v0.4.0-beta.7...0.4.0-beta.8) (2019-03-07)
1784
+
1785
+ ### Features
1786
+
1787
+ - **Package:** move styles-components to peer & external ([f7fce36](https://github.com/UCloud-FE/react-components/commit/f7fce36)), closes [#88](https://github.com/UCloud-FE/react-components/issues/88)
1788
+
1789
+ ### BREAKING CHANGES
1790
+
1791
+ - **Package:** must install styled-components in your project
1792
+
1793
+ <a name="0.4.0-beta.7"></a>
1794
+
1795
+ # [0.4.0-beta.7](https://github.com/UCloud-FE/react-components/compare/v0.4.0-beta.6...v0.4.0-beta.7) (2019-03-05)
1796
+
1797
+ <a name="0.4.0-beta.6"></a>
1798
+
1799
+ # [0.4.0-beta.6](https://github.com/UCloud-FE/react-components/compare/v0.4.0-beta.5...v0.4.0-beta.6) (2019-03-05)
1800
+
1801
+ ### Bug Fixes
1802
+
1803
+ - **Table:** fix table actionlist disable bug ([a6125b9](https://github.com/UCloud-FE/react-components/commit/a6125b9)), closes [#87](https://github.com/UCloud-FE/react-components/issues/87)
1804
+
1805
+ <a name="0.4.0-beta.5"></a>
1806
+
1807
+ # [0.4.0-beta.5](https://github.com/UCloud-FE/react-components/compare/v0.4.0-beta.4...v0.4.0-beta.5) (2019-02-28)
1808
+
1809
+ ### Features
1810
+
1811
+ - **Card:** add checkbox & radio with card style ([e6f1dbc](https://github.com/UCloud-FE/react-components/commit/e6f1dbc)), closes [#86](https://github.com/UCloud-FE/react-components/issues/86)
1812
+
1813
+ <a name="0.4.0-beta.4"></a>
1814
+
1815
+ # [0.4.0-beta.4](https://github.com/UCloud-FE/react-components/compare/v0.4.0-beta.3...v0.4.0-beta.4) (2019-01-14)
1816
+
1817
+ ### Bug Fixes
1818
+
1819
+ - **ThemeProvider:** fix missing theme props after generate material ([7fd09fb](https://github.com/UCloud-FE/react-components/commit/7fd09fb)), closes [#82](https://github.com/UCloud-FE/react-components/issues/82)
1820
+
1821
+ <a name="0.4.0-beta.3"></a>
1822
+
1823
+ # [0.4.0-beta.3](https://github.com/UCloud-FE/react-components/compare/v0.4.0-beta.2...v0.4.0-beta.3) (2019-01-10)
1824
+
1825
+ ### Bug Fixes
1826
+
1827
+ - **DatePicker:** fix wrong style ([934ed6c](https://github.com/UCloud-FE/react-components/commit/934ed6c)), closes [#81](https://github.com/UCloud-FE/react-components/issues/81)
1828
+
1829
+ <a name="0.4.0-beta.2"></a>
1830
+
1831
+ # [0.4.0-beta.2](https://github.com/UCloud-FE/react-components/compare/v0.4.0-beta.1...v0.4.0-beta.2) (2019-01-10)
1832
+
1833
+ ### Bug Fixes
1834
+
1835
+ - **ThemeProvider:** fix themeProvider bug when change theme ([314ef06](https://github.com/UCloud-FE/react-components/commit/314ef06)), closes [#79](https://github.com/UCloud-FE/react-components/issues/79)
1836
+
1837
+ ### Features
1838
+
1839
+ - **ThemeProvider:** add material theme ([886719a](https://github.com/UCloud-FE/react-components/commit/886719a)), closes [#80](https://github.com/UCloud-FE/react-components/issues/80)
1840
+
1841
+ ### Performance Improvements
1842
+
1843
+ - **Menu:** change some component to PureComponent ([a698833](https://github.com/UCloud-FE/react-components/commit/a698833)), closes [#77](https://github.com/UCloud-FE/react-components/issues/77)
1844
+
1845
+ <a name="0.4.0-beta.1"></a>
1846
+
1847
+ # [0.4.0-beta.1](https://github.com/UCloud-FE/react-components/compare/v0.4.0-beta.0...v0.4.0-beta.1) (2018-12-18)
1848
+
1849
+ ### Bug Fixes
1850
+
1851
+ - **Table:** fix table missing background when x is scrollable ([279a802](https://github.com/UCloud-FE/react-components/commit/279a802)), closes [#76](https://github.com/UCloud-FE/react-components/issues/76)
1852
+
1853
+ ### Features
1854
+
1855
+ - **Table:** add single select table selection ([7311815](https://github.com/UCloud-FE/react-components/commit/7311815)), closes [#72](https://github.com/UCloud-FE/react-components/issues/72) [#75](https://github.com/UCloud-FE/react-components/issues/75)
1856
+
1857
+ <a name="0.4.0-beta.0"></a>
1858
+
1859
+ # [0.4.0-beta.0](https://github.com/UCloud-FE/react-components/compare/v0.3.5...v0.4.0-beta.0) (2018-12-11)
1860
+
1861
+ ### Features
1862
+
1863
+ - **ThemeProvider:** add ThemeProvider ([0a0eb1f](https://github.com/UCloud-FE/react-components/commit/0a0eb1f)), closes [#73](https://github.com/UCloud-FE/react-components/issues/73)
1864
+
1865
+ <a name="0.3.5"></a>
1866
+
1867
+ ## [0.3.5](https://github.com/UCloud-FE/react-components/compare/v0.3.4...v0.3.5) (2018-12-03)
1868
+
1869
+ ### Bug Fixes
1870
+
1871
+ - **Table:** fix override of onRow affect contextMenu ([6f69094](https://github.com/UCloud-FE/react-components/commit/6f69094)), closes [#69](https://github.com/UCloud-FE/react-components/issues/69)
1872
+ - **Table:** fix Table Row compnent allways recreate bug ([96fbc5a](https://github.com/UCloud-FE/react-components/commit/96fbc5a)), closes [#68](https://github.com/UCloud-FE/react-components/issues/68)
1873
+ - **Table:** fix when table hideExpandIcon. width is not wrong ([1e90e1f](https://github.com/UCloud-FE/react-components/commit/1e90e1f)), closes [#71](https://github.com/UCloud-FE/react-components/issues/71)
1874
+ - **Table:** hide tip wrap when emptyContent is null ([8735a3b](https://github.com/UCloud-FE/react-components/commit/8735a3b)), closes [#70](https://github.com/UCloud-FE/react-components/issues/70)
1875
+
1876
+ <a name="0.3.4"></a>
1877
+
1878
+ ## [0.3.4](https://github.com/UCloud-FE/react-components/compare/v0.3.3...v0.3.4) (2018-11-23)
1879
+
1880
+ ### Bug Fixes
1881
+
1882
+ - **Table:** fix record key when there is no key to use ([3d795f9](https://github.com/UCloud-FE/react-components/commit/3d795f9)), closes [#67](https://github.com/UCloud-FE/react-components/issues/67)
1883
+
1884
+ ### Features
1885
+
1886
+ - **Table:** add hideExpandIcon ([b2ccb7c](https://github.com/UCloud-FE/react-components/commit/b2ccb7c)), closes [#66](https://github.com/UCloud-FE/react-components/issues/66)
1887
+
1888
+ <a name="0.3.3"></a>
1889
+
1890
+ ## [0.3.3](https://github.com/UCloud-FE/react-components/compare/v0.3.2-deploy...v0.3.3) (2018-11-05)
1891
+
1892
+ ### Features
1893
+
1894
+ - **Slider:** add onLastChange ([4278aca](https://github.com/UCloud-FE/react-components/commit/4278aca)), closes [#63](https://github.com/UCloud-FE/react-components/issues/63)
1895
+
1896
+ <a name="0.3.2"></a>
1897
+
1898
+ ## [0.3.2](https://github.com/UCloud-FE/react-components/compare/v0.3.1...v0.3.2) (2018-11-02)
1899
+
1900
+ ### Bug Fixes
1901
+
1902
+ - **SimpleStore:** fix return ref ([8ef3f07](https://github.com/UCloud-FE/react-components/commit/8ef3f07)), closes [#29](https://github.com/UCloud-FE/react-components/issues/29)
1903
+ - **Slider:** fix numberinput value translate bug ([8365032](https://github.com/UCloud-FE/react-components/commit/8365032)), closes [#54](https://github.com/UCloud-FE/react-components/issues/54) [#61](https://github.com/UCloud-FE/react-components/issues/61)
1904
+ - **Slider:** fix precision when compute float number ([fecb667](https://github.com/UCloud-FE/react-components/commit/fecb667)), closes [#54](https://github.com/UCloud-FE/react-components/issues/54) [#55](https://github.com/UCloud-FE/react-components/issues/55)
1905
+
1906
+ ### Features
1907
+
1908
+ - **Calendar:** add month calendar ([f386eb7](https://github.com/UCloud-FE/react-components/commit/f386eb7)), closes [#45](https://github.com/UCloud-FE/react-components/issues/45)
1909
+ - **Calendar:** add support of LocaleProvider ([b32e39c](https://github.com/UCloud-FE/react-components/commit/b32e39c)), closes [#43](https://github.com/UCloud-FE/react-components/issues/43) [#44](https://github.com/UCloud-FE/react-components/issues/44)
1910
+ - **DatePicker:** add support of LocaleProvider ([629ac88](https://github.com/UCloud-FE/react-components/commit/629ac88)), closes [#43](https://github.com/UCloud-FE/react-components/issues/43) [#46](https://github.com/UCloud-FE/react-components/issues/46)
1911
+ - **locale:** add LocaleProvider to manage locale ([873c052](https://github.com/UCloud-FE/react-components/commit/873c052)), closes [#41](https://github.com/UCloud-FE/react-components/issues/41) [#42](https://github.com/UCloud-FE/react-components/issues/42)
1912
+ - **Menu:** add support of LocaleProvider ([cff4098](https://github.com/UCloud-FE/react-components/commit/cff4098)), closes [#43](https://github.com/UCloud-FE/react-components/issues/43) [#49](https://github.com/UCloud-FE/react-components/issues/49)
1913
+ - **Modal:** add support of LocaleProvider ([5e92d64](https://github.com/UCloud-FE/react-components/commit/5e92d64)), closes [#43](https://github.com/UCloud-FE/react-components/issues/43) [#48](https://github.com/UCloud-FE/react-components/issues/48)
1914
+ - **NumberInput:** trigger onNumberChange when press enter ([4e447ec](https://github.com/UCloud-FE/react-components/commit/4e447ec)), closes [#60](https://github.com/UCloud-FE/react-components/issues/60)
1915
+ - **Select:** add support of LocaleProvider ([c891b86](https://github.com/UCloud-FE/react-components/commit/c891b86)), closes [#43](https://github.com/UCloud-FE/react-components/issues/43) [#47](https://github.com/UCloud-FE/react-components/issues/47)
1916
+ - **Slider:** add ratio, step to marks ([717970f](https://github.com/UCloud-FE/react-components/commit/717970f)), closes [#58](https://github.com/UCloud-FE/react-components/issues/58) [#59](https://github.com/UCloud-FE/react-components/issues/59)
1917
+ - **Slider:** add tip when user input ([8570180](https://github.com/UCloud-FE/react-components/commit/8570180)), closes [#62](https://github.com/UCloud-FE/react-components/issues/62)
1918
+ - **Table:** add support of LocaleProvider ([de0829a](https://github.com/UCloud-FE/react-components/commit/de0829a)), closes [#43](https://github.com/UCloud-FE/react-components/issues/43) [#51](https://github.com/UCloud-FE/react-components/issues/51)
1919
+ - **Upload:** add support of LocaleProvider ([8459650](https://github.com/UCloud-FE/react-components/commit/8459650)), closes [#43](https://github.com/UCloud-FE/react-components/issues/43) [#50](https://github.com/UCloud-FE/react-components/issues/50)
1920
+
1921
+ <a name="0.3.1"></a>
1922
+
1923
+ ## [0.3.1](https://github.com/UCloud-FE/react-components/compare/v0.3.1-beta.4...v0.3.1) (2018-09-30)
1924
+
1925
+ ### Bug Fixes
1926
+
1927
+ - **DatePicker:** set Range container to trigger parent ([dd45ef1](https://github.com/UCloud-FE/react-components/commit/dd45ef1)), closes [#20](https://github.com/UCloud-FE/react-components/issues/20) [#22](https://github.com/UCloud-FE/react-components/issues/22)
1928
+ - **Tooltip:** fix arrow style when without reset.css ([d4f8f8a](https://github.com/UCloud-FE/react-components/commit/d4f8f8a)), closes [#5](https://github.com/UCloud-FE/react-components/issues/5) [#13](https://github.com/UCloud-FE/react-components/issues/13)
1929
+
1930
+ ### Features
1931
+
1932
+ - **DatePicker:** add display to Range ([812c226](https://github.com/UCloud-FE/react-components/commit/812c226)), closes [#8](https://github.com/UCloud-FE/react-components/issues/8) [#10](https://github.com/UCloud-FE/react-components/issues/10)
1933
+ - **DatePicker:** add Range.hideOptions ([bb8ea36](https://github.com/UCloud-FE/react-components/commit/bb8ea36)), closes [#3](https://github.com/UCloud-FE/react-components/issues/3) [#9](https://github.com/UCloud-FE/react-components/issues/9)
1934
+ - **DatePicker:** add zIndex ([594909e](https://github.com/UCloud-FE/react-components/commit/594909e)), closes [#20](https://github.com/UCloud-FE/react-components/issues/20) [#23](https://github.com/UCloud-FE/react-components/issues/23)
1935
+ - **Popover:** add zIndex ([1ffaec6](https://github.com/UCloud-FE/react-components/commit/1ffaec6)), closes [#24](https://github.com/UCloud-FE/react-components/issues/24)