@ucloud-fe/react-components 1.5.17 → 1.5.19

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