shineout 1.7.0 → 1.7.1-beta.3

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 (497) hide show
  1. package/css/Alert/index.d.ts +63 -0
  2. package/css/AnimationList/AbsoluteList.js +89 -48
  3. package/css/Breadcrumb/index.d.ts +68 -0
  4. package/css/Button/index.d.ts +160 -0
  5. package/css/Card/index.d.ts +161 -0
  6. package/css/CardGroup/CardGroup.js +1 -1
  7. package/css/CardGroup/index.d.ts +119 -0
  8. package/css/Carousel/index.d.ts +59 -0
  9. package/css/Cascader/index.d.ts +185 -0
  10. package/css/Checkbox/index.d.ts +120 -0
  11. package/css/DataList/index.d.ts +197 -0
  12. package/css/DatePicker/Container.js +1 -1
  13. package/css/DatePicker/index.d.ts +262 -0
  14. package/css/DatePicker/utils.js +1 -1
  15. package/css/Datum/List.js +54 -17
  16. package/css/Divider/index.d.ts +40 -0
  17. package/css/Drawer/index.d.ts +165 -0
  18. package/css/Dropdown/index.d.ts +122 -0
  19. package/css/EditableArea/index.d.ts +99 -0
  20. package/css/Form/Item.js +6 -3
  21. package/css/Form/formContext.js +6 -3
  22. package/css/Form/index.d.ts +466 -0
  23. package/css/Form/index.js +1 -1
  24. package/css/Form/inputable.js +63 -52
  25. package/css/Form/styles/form.css +12 -0
  26. package/css/Gap/index.d.ts +28 -0
  27. package/css/Grid/index.d.ts +38 -0
  28. package/css/Icon/index.d.ts +69 -0
  29. package/css/Image/index.d.ts +194 -0
  30. package/css/Input/Number.js +3 -1
  31. package/css/Input/index.d.ts +258 -0
  32. package/css/Menu/index.d.ts +147 -0
  33. package/css/Message/index.d.ts +72 -0
  34. package/css/Modal/events.js +71 -13
  35. package/css/Modal/index.d.ts +330 -0
  36. package/css/Pagination/index.d.ts +129 -0
  37. package/css/Popover/index.d.ts +241 -0
  38. package/css/Popover/styles/popover.css +1 -1
  39. package/css/Progress/index.d.ts +108 -0
  40. package/css/Radio/index.d.ts +61 -0
  41. package/css/Rate/index.d.ts +65 -0
  42. package/css/Rule/index.d.ts +90 -0
  43. package/css/Select/BoxList.js +5 -3
  44. package/css/Select/OptionList.js +5 -3
  45. package/css/Select/OptionTree.js +5 -3
  46. package/css/Select/Select.js +28 -8
  47. package/css/Select/index.d.ts +366 -0
  48. package/css/Slider/index.d.ts +102 -0
  49. package/css/Spin/index.d.ts +74 -0
  50. package/css/Sticky/index.d.ts +56 -0
  51. package/css/Switch/index.d.ts +47 -0
  52. package/css/Table/SeperateTable.js +26 -18
  53. package/css/Table/Table.js +1 -2
  54. package/css/Table/index.d.ts +541 -0
  55. package/css/Tabs/index.d.ts +225 -0
  56. package/css/Tag/Tag.js +8 -2
  57. package/css/Tag/index.d.ts +79 -0
  58. package/css/Textarea/index.d.ts +104 -0
  59. package/css/Tooltip/index.d.ts +69 -0
  60. package/css/Transfer/Transfer.js +13 -8
  61. package/css/Transfer/btns.js +25 -14
  62. package/css/Transfer/index.d.ts +157 -0
  63. package/css/Tree/index.d.ts +225 -0
  64. package/css/Tree/styles/tree.css +1 -1
  65. package/css/TreeSelect/TreeSelect.js +1 -1
  66. package/css/TreeSelect/index.d.ts +297 -0
  67. package/css/TreeSelect/styles/treeSelect.css +2 -4
  68. package/css/Upload/ImageResult.js +14 -3
  69. package/css/Upload/index.d.ts +529 -0
  70. package/css/index.d.ts +58 -0
  71. package/css/index.js +1 -1
  72. package/css/styles/expose.css +4 -1
  73. package/css/utils/numbers.js +59 -0
  74. package/css/utils/vars-inject.js +13 -0
  75. package/dist/shineout.js +4110 -3763
  76. package/dist/shineout.js.map +1 -1
  77. package/dist/shineout.min.js +1 -1
  78. package/dist/theme.antd.css +1 -1
  79. package/dist/theme.antd2.css +1 -1
  80. package/dist/theme.default.css +1 -1
  81. package/dist/theme.shineout.css +1 -1
  82. package/es/@types/common.d.ts +1 -1
  83. package/es/Alert/index.js +127 -107
  84. package/es/Alert/styles/index.js +3 -4
  85. package/es/AnimationList/AbsoluteList.js +267 -178
  86. package/es/AnimationList/LazyList.js +120 -92
  87. package/es/AnimationList/List.js +43 -23
  88. package/es/AnimationList/index.js +19 -14
  89. package/es/AnimationList/styles/index.js +3 -4
  90. package/es/Breadcrumb/index.js +77 -69
  91. package/es/Breadcrumb/styles/index.js +3 -4
  92. package/es/Button/Button.js +91 -74
  93. package/es/Button/Group.js +42 -28
  94. package/es/Button/Once.js +39 -23
  95. package/es/Button/index.js +7 -10
  96. package/es/Button/styles/index.js +3 -4
  97. package/es/Card/Accordion.js +58 -45
  98. package/es/Card/Body.js +55 -42
  99. package/es/Card/Card.js +85 -79
  100. package/es/Card/Footer.js +38 -15
  101. package/es/Card/Header.js +52 -34
  102. package/es/Card/Submit.js +51 -33
  103. package/es/Card/context.js +22 -16
  104. package/es/Card/index.js +16 -19
  105. package/es/Card/styles/index.js +3 -4
  106. package/es/CardGroup/CardGroup.js +94 -70
  107. package/es/CardGroup/Item.js +61 -43
  108. package/es/CardGroup/context.js +12 -10
  109. package/es/CardGroup/index.js +7 -10
  110. package/es/CardGroup/styles/index.js +3 -4
  111. package/es/Carousel/Item.js +31 -17
  112. package/es/Carousel/index.js +156 -123
  113. package/es/Carousel/styles/index.js +3 -4
  114. package/es/Cascader/Cascader.js +397 -346
  115. package/es/Cascader/FilterList.js +185 -142
  116. package/es/Cascader/Input.js +102 -79
  117. package/es/Cascader/List.js +66 -41
  118. package/es/Cascader/Node.js +153 -110
  119. package/es/Cascader/Result.js +286 -230
  120. package/es/Cascader/filter.js +92 -61
  121. package/es/Cascader/index.js +13 -18
  122. package/es/Cascader/styles/index.js +3 -4
  123. package/es/Checkbox/CheckItem.js +168 -154
  124. package/es/Checkbox/Checkbox.js +2 -3
  125. package/es/Checkbox/Group.js +106 -85
  126. package/es/Checkbox/context.js +12 -10
  127. package/es/Checkbox/index.js +14 -21
  128. package/es/Checkbox/styles/index.js +3 -4
  129. package/es/DataList/BaseItem.js +39 -21
  130. package/es/DataList/Extra.js +33 -17
  131. package/es/DataList/List.js +166 -140
  132. package/es/DataList/Meta.js +109 -74
  133. package/es/DataList/Pagination.js +9 -10
  134. package/es/DataList/index.js +13 -19
  135. package/es/DataList/styles/index.js +3 -4
  136. package/es/DatePicker/Container.js +469 -450
  137. package/es/DatePicker/Day.js +265 -258
  138. package/es/DatePicker/Icon.js +34 -20
  139. package/es/DatePicker/Month.js +101 -79
  140. package/es/DatePicker/Picker.js +110 -83
  141. package/es/DatePicker/Quick.js +52 -39
  142. package/es/DatePicker/Range.js +241 -192
  143. package/es/DatePicker/Text.js +103 -91
  144. package/es/DatePicker/Time.js +165 -147
  145. package/es/DatePicker/TimeScroll.js +148 -116
  146. package/es/DatePicker/Year.js +74 -53
  147. package/es/DatePicker/index.d.ts +5 -13
  148. package/es/DatePicker/index.js +16 -18
  149. package/es/DatePicker/paramUtils.js +92 -58
  150. package/es/DatePicker/styles/index.js +3 -4
  151. package/es/DatePicker/utils.js +189 -198
  152. package/es/DatePicker/value.js +139 -98
  153. package/es/Datum/Form.js +333 -282
  154. package/es/Datum/List.js +329 -181
  155. package/es/Datum/Tree.js +298 -239
  156. package/es/Datum/hoc.js +104 -69
  157. package/es/Datum/index.js +7 -8
  158. package/es/Datum/types.js +20 -25
  159. package/es/Divider/index.js +50 -32
  160. package/es/Divider/styles/index.js +3 -4
  161. package/es/Drawer/index.d.ts +165 -0
  162. package/es/Drawer/index.js +14 -9
  163. package/es/Dropdown/Item.js +56 -43
  164. package/es/Dropdown/index.js +273 -259
  165. package/es/Dropdown/styles/index.js +3 -4
  166. package/es/EditableArea/EditableArea.js +157 -136
  167. package/es/EditableArea/index.js +8 -15
  168. package/es/EditableArea/styles/index.js +3 -4
  169. package/es/Form/Block.js +83 -57
  170. package/es/Form/BlockField.js +32 -17
  171. package/es/Form/Field.js +56 -36
  172. package/es/Form/FieldError.js +27 -21
  173. package/es/Form/FieldSet.js +214 -156
  174. package/es/Form/Flow.js +51 -32
  175. package/es/Form/Form.js +178 -144
  176. package/es/Form/Item.js +182 -154
  177. package/es/Form/Loop.js +202 -146
  178. package/es/Form/formButton.js +58 -42
  179. package/es/Form/formContext.js +104 -83
  180. package/es/Form/index.d.ts +40 -24
  181. package/es/Form/index.js +40 -45
  182. package/es/Form/inputable.js +369 -285
  183. package/es/Form/mode.js +15 -9
  184. package/es/Form/styles/form.less +12 -0
  185. package/es/Form/styles/index.js +4 -5
  186. package/es/Gap/index.js +71 -47
  187. package/es/Gap/styles/index.js +3 -4
  188. package/es/Gap/support.js +11 -14
  189. package/es/Grid/index.js +88 -58
  190. package/es/Grid/utils.js +57 -58
  191. package/es/Icon/Icon.js +43 -42
  192. package/es/Icon/index.d.ts +2 -3
  193. package/es/Icon/index.js +39 -22
  194. package/es/Icon/styles/index.js +3 -4
  195. package/es/Image/Gallery.js +128 -113
  196. package/es/Image/Group.js +60 -36
  197. package/es/Image/Image.js +227 -153
  198. package/es/Image/Magnify.js +123 -94
  199. package/es/Image/events.js +29 -26
  200. package/es/Image/index.js +6 -9
  201. package/es/Image/styles/index.js +3 -4
  202. package/es/Input/Group.js +17 -11
  203. package/es/Input/Input.js +158 -134
  204. package/es/Input/Number.js +199 -174
  205. package/es/Input/Password.js +54 -31
  206. package/es/Input/clear.js +41 -25
  207. package/es/Input/index.js +23 -35
  208. package/es/Input/styles/index.js +3 -4
  209. package/es/Lazyload/index.js +63 -42
  210. package/es/Lazyload/styles/index.js +3 -4
  211. package/es/Menu/Item.js +275 -236
  212. package/es/Menu/List.js +75 -67
  213. package/es/Menu/Root.js +372 -334
  214. package/es/Menu/context.js +18 -12
  215. package/es/Menu/index.js +3 -5
  216. package/es/Menu/styles/index.js +3 -4
  217. package/es/Message/Container.js +155 -119
  218. package/es/Message/index.js +42 -30
  219. package/es/Message/messager.js +29 -33
  220. package/es/Message/styles/index.js +3 -4
  221. package/es/Modal/Modal.js +80 -60
  222. package/es/Modal/Panel.js +258 -234
  223. package/es/Modal/context.js +15 -15
  224. package/es/Modal/events.js +220 -155
  225. package/es/Modal/index.js +12 -14
  226. package/es/Modal/styles/index.js +3 -4
  227. package/es/Pagination/Item.js +46 -32
  228. package/es/Pagination/Jumper.js +77 -67
  229. package/es/Pagination/Links.js +110 -82
  230. package/es/Pagination/Next.js +52 -31
  231. package/es/Pagination/PageSizeList.js +57 -40
  232. package/es/Pagination/Pagination.js +78 -54
  233. package/es/Pagination/Prev.js +49 -30
  234. package/es/Pagination/Simple.js +32 -18
  235. package/es/Pagination/index.js +68 -41
  236. package/es/Pagination/styles/index.js +3 -4
  237. package/es/Popover/Confirm.js +107 -64
  238. package/es/Popover/Panel.js +284 -231
  239. package/es/Popover/context.js +15 -12
  240. package/es/Popover/events.js +80 -86
  241. package/es/Popover/index.js +12 -14
  242. package/es/Popover/styles/index.js +3 -4
  243. package/es/Popover/styles/popover.less +3 -3
  244. package/es/Progress/Circle.js +70 -59
  245. package/es/Progress/Line.js +51 -39
  246. package/es/Progress/Popup.js +42 -24
  247. package/es/Progress/analyzeColor.js +18 -9
  248. package/es/Progress/index.js +13 -15
  249. package/es/Progress/styles/index.js +3 -4
  250. package/es/Radio/Group.js +105 -94
  251. package/es/Radio/Radio.js +2 -3
  252. package/es/Radio/index.js +15 -17
  253. package/es/Radio/styles/index.js +1 -1
  254. package/es/Rate/Rate.js +216 -167
  255. package/es/Rate/index.js +17 -10
  256. package/es/Rate/styles/index.js +3 -4
  257. package/es/Rule/convert.js +48 -57
  258. package/es/Rule/index.js +63 -40
  259. package/es/Rule/length.js +53 -38
  260. package/es/Rule/regExp.js +23 -14
  261. package/es/Rule/required.js +26 -18
  262. package/es/Rule/styles/index.js +1 -1
  263. package/es/Rule/type.js +26 -18
  264. package/es/Scroll/Bar.js +145 -117
  265. package/es/Scroll/Scroll.js +277 -217
  266. package/es/Scroll/context.js +20 -13
  267. package/es/Scroll/fixedLength.js +33 -24
  268. package/es/Scroll/index.js +89 -55
  269. package/es/Scroll/styles/index.js +3 -4
  270. package/es/Select/BoxList.js +218 -188
  271. package/es/Select/BoxOption.js +64 -38
  272. package/es/Select/FlexBox.js +107 -75
  273. package/es/Select/FlexResult.js +65 -49
  274. package/es/Select/Input.js +137 -113
  275. package/es/Select/More.js +119 -118
  276. package/es/Select/Option.js +73 -52
  277. package/es/Select/OptionList.js +236 -198
  278. package/es/Select/OptionTree.js +111 -94
  279. package/es/Select/Result.js +294 -269
  280. package/es/Select/Select.js +523 -480
  281. package/es/Select/filter.js +221 -148
  282. package/es/Select/group.js +74 -45
  283. package/es/Select/index.d.ts +28 -19
  284. package/es/Select/index.js +32 -31
  285. package/es/Select/styles/index.js +3 -4
  286. package/es/Select/styles/select.less +1 -1
  287. package/es/Slider/Container.js +145 -132
  288. package/es/Slider/Indicator.js +28 -13
  289. package/es/Slider/Slider.js +132 -103
  290. package/es/Slider/index.js +5 -8
  291. package/es/Slider/styles/index.js +3 -4
  292. package/es/Slider/utils.js +26 -30
  293. package/es/Spin/Multiple.js +153 -109
  294. package/es/Spin/Simple.js +33 -22
  295. package/es/Spin/Spin.js +29 -29
  296. package/es/Spin/index.js +66 -84
  297. package/es/Spin/styles/index.js +27 -30
  298. package/es/Sticky/context.js +12 -10
  299. package/es/Sticky/index.js +255 -194
  300. package/es/Sticky/styles/index.js +1 -1
  301. package/es/Switch/Switch.js +2 -3
  302. package/es/Switch/index.js +8 -14
  303. package/es/Table/Checkbox.js +68 -39
  304. package/es/Table/CheckboxAll.js +121 -64
  305. package/es/Table/Colgroup.js +72 -47
  306. package/es/Table/Expand.js +63 -43
  307. package/es/Table/SeperateTable.js +596 -436
  308. package/es/Table/SimpleTable.js +215 -136
  309. package/es/Table/Sorter.js +83 -62
  310. package/es/Table/Table.js +157 -157
  311. package/es/Table/Tbody.js +240 -176
  312. package/es/Table/Td.js +169 -130
  313. package/es/Table/Thead.js +206 -177
  314. package/es/Table/Tr.js +249 -205
  315. package/es/Table/TreeExpand.js +151 -116
  316. package/es/Table/context.js +15 -15
  317. package/es/Table/fixedAuto.js +82 -59
  318. package/es/Table/index.d.ts +1 -1
  319. package/es/Table/index.js +309 -228
  320. package/es/Table/resizable.js +89 -56
  321. package/es/Table/select.js +238 -215
  322. package/es/Table/styles/index.js +3 -4
  323. package/es/Tabs/Header.js +203 -160
  324. package/es/Tabs/Link.js +46 -28
  325. package/es/Tabs/Panel.js +49 -33
  326. package/es/Tabs/Tab.js +97 -79
  327. package/es/Tabs/Tabs.js +211 -177
  328. package/es/Tabs/Wrapper.js +37 -17
  329. package/es/Tabs/index.js +7 -10
  330. package/es/Tabs/styles/index.js +3 -4
  331. package/es/Tag/Input.js +70 -54
  332. package/es/Tag/Tag.js +198 -152
  333. package/es/Tag/index.js +5 -8
  334. package/es/Tag/styles/index.js +3 -4
  335. package/es/Textarea/Textarea.js +139 -118
  336. package/es/Textarea/index.js +10 -19
  337. package/es/Tooltip/Container.js +140 -127
  338. package/es/Tooltip/events.js +49 -55
  339. package/es/Tooltip/index.js +5 -8
  340. package/es/Tooltip/styles/index.js +3 -4
  341. package/es/Transfer/Card.js +212 -177
  342. package/es/Transfer/Transfer.js +165 -153
  343. package/es/Transfer/btns.js +100 -71
  344. package/es/Transfer/context.js +2 -3
  345. package/es/Transfer/filter.js +65 -35
  346. package/es/Transfer/index.js +9 -13
  347. package/es/Transfer/item.js +66 -41
  348. package/es/Transfer/select.js +15 -16
  349. package/es/Transfer/styles/index.js +3 -4
  350. package/es/Tree/Checkbox.js +72 -50
  351. package/es/Tree/Content.js +136 -95
  352. package/es/Tree/List.js +82 -53
  353. package/es/Tree/Node.js +237 -202
  354. package/es/Tree/Root.js +23 -19
  355. package/es/Tree/Tree.js +262 -197
  356. package/es/Tree/index.js +6 -9
  357. package/es/Tree/styles/index.js +3 -4
  358. package/es/Tree/styles/tree.less +1 -1
  359. package/es/Tree/toggle.js +89 -51
  360. package/es/TreeSelect/Input.js +73 -60
  361. package/es/TreeSelect/Result.js +210 -169
  362. package/es/TreeSelect/TreeSelect.js +328 -313
  363. package/es/TreeSelect/datum.js +56 -44
  364. package/es/TreeSelect/filter.js +134 -96
  365. package/es/TreeSelect/index.d.ts +5 -3
  366. package/es/TreeSelect/index.js +15 -23
  367. package/es/TreeSelect/styles/index.js +3 -4
  368. package/es/TreeSelect/styles/treeSelect.less +4 -5
  369. package/es/TreeSelect/tiled.js +143 -106
  370. package/es/Upload/Dragger.js +63 -39
  371. package/es/Upload/Drop.js +79 -57
  372. package/es/Upload/File.js +61 -48
  373. package/es/Upload/FileInput.js +53 -40
  374. package/es/Upload/Image.js +158 -115
  375. package/es/Upload/ImageFile.js +63 -43
  376. package/es/Upload/ImageResult.js +141 -109
  377. package/es/Upload/Progress.js +117 -105
  378. package/es/Upload/RemoveConfirm.js +58 -42
  379. package/es/Upload/Result.js +73 -58
  380. package/es/Upload/Upload.js +649 -490
  381. package/es/Upload/accept.js +33 -13
  382. package/es/Upload/context.js +12 -10
  383. package/es/Upload/index.d.ts +5 -5
  384. package/es/Upload/index.js +16 -20
  385. package/es/Upload/request.js +48 -46
  386. package/es/Upload/styles/index.js +3 -4
  387. package/es/component.js +45 -24
  388. package/es/config.js +27 -19
  389. package/es/context/implementation.js +132 -94
  390. package/es/context/index.js +3 -4
  391. package/es/hoc/coin.js +118 -81
  392. package/es/hoc/config.js +31 -17
  393. package/es/hoc/delay.js +99 -55
  394. package/es/hoc/draggable.js +90 -80
  395. package/es/hoc/fetch.js +56 -33
  396. package/es/hoc/hidable.js +119 -98
  397. package/es/hoc/inputBorder.js +158 -158
  398. package/es/hoc/moveable.js +124 -96
  399. package/es/hoc/pagable.js +74 -55
  400. package/es/hoc/resizable.js +132 -100
  401. package/es/hoc/styles/index.js +7 -8
  402. package/es/hoc/trim.js +54 -32
  403. package/es/icons/Caret.js +14 -15
  404. package/es/icons/index.js +31 -85
  405. package/es/index.d.ts +58 -0
  406. package/es/index.js +58 -57
  407. package/es/locale/en_US.js +9 -30
  408. package/es/locale/index.js +13 -14
  409. package/es/locale/zh-CN.js +9 -17
  410. package/es/styles/expose.js +3 -4
  411. package/es/styles/expose.less +3 -0
  412. package/es/styles/index.js +1 -1
  413. package/es/styles/themes/cssvar.less +4 -1
  414. package/es/utils/accept.js +15 -12
  415. package/es/utils/classname.js +23 -12
  416. package/es/utils/cleanProps.js +9 -21
  417. package/es/utils/clone.js +34 -27
  418. package/es/utils/color.js +310 -276
  419. package/es/utils/css-accessors.js +94 -45
  420. package/es/utils/dom/detect.js +29 -29
  421. package/es/utils/dom/document.js +23 -19
  422. package/es/utils/dom/element.js +139 -105
  423. package/es/utils/dom/getDataset.js +9 -9
  424. package/es/utils/dom/isDOMElement.js +3 -5
  425. package/es/utils/dom/normalizeWheel.js +32 -28
  426. package/es/utils/dom/popContainer.js +12 -13
  427. package/es/utils/dom/popover.js +79 -59
  428. package/es/utils/dom/ready.js +5 -6
  429. package/es/utils/dom/translate.js +10 -12
  430. package/es/utils/errors.js +47 -28
  431. package/es/utils/expose.js +97 -58
  432. package/es/utils/flat.js +122 -107
  433. package/es/utils/func.js +38 -20
  434. package/es/utils/hash.js +24 -20
  435. package/es/utils/index.js +24 -49
  436. package/es/utils/is.js +91 -70
  437. package/es/utils/lazyload.js +104 -86
  438. package/es/utils/notification.js +34 -20
  439. package/es/utils/numbers.js +86 -22
  440. package/es/utils/objects.js +221 -140
  441. package/es/utils/proptypes.js +21 -34
  442. package/es/utils/shallowEqual.js +46 -42
  443. package/es/utils/strings.js +50 -32
  444. package/es/utils/transform.js +24 -9
  445. package/es/utils/tree.js +78 -63
  446. package/es/utils/uid.js +14 -17
  447. package/es/utils/validate/index.js +71 -50
  448. package/es/utils/validate/isJson.js +7 -10
  449. package/es/utils/validate/nullable.js +10 -9
  450. package/es/utils/validate/range.js +22 -19
  451. package/es/utils/validate/rangeLength.js +19 -16
  452. package/es/utils/validate/regExp.js +10 -10
  453. package/es/utils/validate/required.js +11 -8
  454. package/es/utils/validate/type.js +56 -59
  455. package/es/utils/vars-inject.js +3421 -4233
  456. package/lib/@types/common.d.ts +1 -1
  457. package/lib/AnimationList/AbsoluteList.js +89 -48
  458. package/lib/CardGroup/CardGroup.js +1 -1
  459. package/lib/DatePicker/Container.js +1 -1
  460. package/lib/DatePicker/index.d.ts +5 -13
  461. package/lib/DatePicker/utils.js +1 -1
  462. package/lib/Datum/List.js +54 -17
  463. package/lib/Form/Item.js +6 -3
  464. package/lib/Form/formContext.js +6 -3
  465. package/lib/Form/index.d.ts +40 -24
  466. package/lib/Form/index.js +1 -1
  467. package/lib/Form/inputable.js +63 -52
  468. package/lib/Form/styles/form.less +12 -0
  469. package/lib/Icon/index.d.ts +2 -3
  470. package/lib/Input/Number.js +3 -1
  471. package/lib/Modal/events.js +71 -13
  472. package/lib/Popover/styles/popover.less +3 -3
  473. package/lib/Select/BoxList.js +5 -3
  474. package/lib/Select/OptionList.js +5 -3
  475. package/lib/Select/OptionTree.js +5 -3
  476. package/lib/Select/Select.js +28 -8
  477. package/lib/Select/index.d.ts +28 -19
  478. package/lib/Select/styles/select.less +1 -1
  479. package/lib/Table/SeperateTable.js +26 -18
  480. package/lib/Table/Table.js +1 -2
  481. package/lib/Table/index.d.ts +1 -1
  482. package/lib/Tag/Tag.js +8 -2
  483. package/lib/Transfer/Transfer.js +13 -8
  484. package/lib/Transfer/btns.js +25 -14
  485. package/lib/Tree/styles/tree.less +1 -1
  486. package/lib/TreeSelect/TreeSelect.js +1 -1
  487. package/lib/TreeSelect/index.d.ts +5 -3
  488. package/lib/TreeSelect/styles/treeSelect.less +4 -5
  489. package/lib/Upload/ImageResult.js +14 -3
  490. package/lib/Upload/index.d.ts +5 -5
  491. package/lib/index.d.ts +1 -1
  492. package/lib/index.js +1 -1
  493. package/lib/styles/expose.less +3 -0
  494. package/lib/styles/themes/cssvar.less +4 -1
  495. package/lib/utils/numbers.js +59 -0
  496. package/lib/utils/vars-inject.js +13 -0
  497. package/package.json +3 -2
@@ -0,0 +1,63 @@
1
+ import * as React from 'react'
2
+ import { StandardProps } from '../@types/common'
3
+
4
+ export interface AlertProps extends StandardProps {
5
+
6
+ /**
7
+ * Content, text or react component
8
+ *
9
+ * 内容,文字或react组件
10
+ *
11
+ * default: -
12
+ */
13
+ children?: React.ReactNode;
14
+
15
+ /**
16
+ * When the type is true, the status icon is displayed according to the type property. If you need to display a custom icon, pass in ReactElement.
17
+ *
18
+ * 为true时,根据type属性显示状态图标。如果需要显示自定义图标,传入ReactElement。
19
+ *
20
+ * default: -
21
+ */
22
+ icon?: React.ReactElement | boolean;
23
+
24
+ /**
25
+ * The size for icon
26
+ *
27
+ * icon 的尺寸
28
+ *
29
+ * default: 14
30
+ */
31
+ iconSize?: number;
32
+
33
+ /**
34
+ * When onClose is empty, no close is displayed. If you need to close and do not need to handle callbacks, set it true.
35
+ *
36
+ * 当 onClose 为空时,不显示关闭。如果需要关闭又不需要处理回调,设置为true即可
37
+ *
38
+ * default: -
39
+ */
40
+ onClose?: (() => void) | boolean;
41
+
42
+ /**
43
+ * types
44
+ *
45
+ * 类型
46
+ *
47
+ * default: *warning*
48
+ *
49
+ */
50
+ type?: 'success' | 'info' | 'warning' | 'danger' | 'error';
51
+
52
+ /**
53
+ * show close button
54
+ *
55
+ * 是否隐藏关闭按钮
56
+ *
57
+ * default: false
58
+ */
59
+ hideClose?: boolean,
60
+ }
61
+
62
+ declare class Alert extends React.Component<AlertProps> {}
63
+ export default Alert
@@ -71,8 +71,9 @@ function _default(List) {
71
71
  if (!props.absolute) return (0, _assertThisInitialized2.default)(_this);
72
72
  _this.lastStyle = {};
73
73
  if (!root) initRoot();
74
+ _this.container = typeof _this.props.absolute === 'function' ? _this.props.absolute() : root;
74
75
  _this.element = document.createElement('div');
75
- root.appendChild(_this.element);
76
+ if (_this.container) _this.container.appendChild(_this.element);
76
77
 
77
78
  if (props.getResetPosition) {
78
79
  props.getResetPosition(_this.resetPosition.bind((0, _assertThisInitialized2.default)((0, _assertThisInitialized2.default)(_this))));
@@ -83,6 +84,17 @@ function _default(List) {
83
84
 
84
85
  var _proto = AbsoluteList.prototype;
85
86
 
87
+ _proto.componentDidMount = function componentDidMount() {
88
+ if (this.props.absolute && !this.container) {
89
+ this.container = typeof this.props.absolute === 'function' ? this.props.absolute() : root;
90
+ this.container.appendChild(this.element);
91
+
92
+ if (this.props.focus) {
93
+ this.forceUpdate();
94
+ }
95
+ }
96
+ };
97
+
86
98
  _proto.componentDidUpdate = function componentDidUpdate(prevProps) {
87
99
  var _this2 = this;
88
100
 
@@ -96,11 +108,16 @@ function _default(List) {
96
108
  _proto.componentWillUnmount = function componentWillUnmount() {
97
109
  var absolute = this.props.absolute;
98
110
  if (!absolute) return;
99
- root.removeChild(this.element);
111
+
112
+ if (this.container) {
113
+ this.container.removeChild(this.element);
114
+ }
100
115
  };
101
116
 
102
117
  _proto.getPosition = function getPosition(rect) {
103
- var fixed = this.props.fixed;
118
+ var _this$props = this.props,
119
+ fixed = _this$props.fixed,
120
+ absolute = _this$props.absolute;
104
121
  var position = this.props.position;
105
122
  var rtl = (0, _config.isRTL)();
106
123
  var style = {
@@ -120,17 +137,36 @@ function _default(List) {
120
137
  position = (0, _strings.getRTLPosition)(position);
121
138
  }
122
139
 
140
+ var containerScroll = _document.docScroll;
141
+ var containerRect = {
142
+ left: 0,
143
+ top: 0,
144
+ right: 0,
145
+ bottom: 0
146
+ };
147
+ var container = this.container;
148
+
149
+ if (typeof absolute === 'function' && container) {
150
+ containerRect = container.getBoundingClientRect();
151
+ containerScroll = {
152
+ left: container.scrollLeft,
153
+ top: container.scrollTop
154
+ };
155
+ }
156
+
157
+ this.containerRect = containerRect;
158
+
123
159
  if (listPosition.includes(position)) {
124
- style.left = rect.left + _document.docScroll.left;
160
+ style.left = rect.left - containerRect.left + containerScroll.left;
125
161
 
126
162
  if (rtl) {
127
163
  style.left += rect.width;
128
164
  }
129
165
 
130
166
  if (position === 'drop-down') {
131
- style.top = rect.top + rect.height + _document.docScroll.top;
167
+ style.top = rect.top - containerRect.top + rect.height + containerScroll.top;
132
168
  } else {
133
- style.bottom = -(rect.top + _document.docScroll.top);
169
+ style.bottom = -(rect.top - containerRect.top + containerScroll.top);
134
170
  }
135
171
  } else if (pickerPosition.includes(position)) {
136
172
  var _position$split = position.split('-'),
@@ -138,16 +174,16 @@ function _default(List) {
138
174
  v = _position$split[1];
139
175
 
140
176
  if (h === 'left') {
141
- style.left = rect.left + _document.docScroll.left;
177
+ style.left = rect.left - containerRect.left + containerScroll.left;
142
178
  } else {
143
- style.left = rect.right + _document.docScroll.left;
179
+ style.left = rect.right - containerRect.right + containerScroll.left;
144
180
  style.transform = 'translateX(-100%)';
145
181
  }
146
182
 
147
183
  if (v === 'bottom') {
148
- style.top = rect.bottom + _document.docScroll.top + PICKER_V_MARGIN;
184
+ style.top = rect.bottom - containerRect.bottom + containerScroll.top + PICKER_V_MARGIN;
149
185
  } else {
150
- style.top = rect.top + _document.docScroll.top - PICKER_V_MARGIN;
186
+ style.top = rect.top - containerRect.top + containerScroll.top - PICKER_V_MARGIN;
151
187
  style.transform = style.transform ? 'translate(-100%, -100%)' : 'translateY(-100%)';
152
188
  }
153
189
  }
@@ -156,10 +192,10 @@ function _default(List) {
156
192
  };
157
193
 
158
194
  _proto.getStyle = function getStyle() {
159
- var _this$props = this.props,
160
- parentElement = _this$props.parentElement,
161
- scrollElement = _this$props.scrollElement,
162
- focus = _this$props.focus;
195
+ var _this$props2 = this.props,
196
+ parentElement = _this$props2.parentElement,
197
+ scrollElement = _this$props2.scrollElement,
198
+ focus = _this$props2.focus;
163
199
  var lazyResult = {
164
200
  focus: focus,
165
201
  style: this.lastStyle
@@ -190,9 +226,9 @@ function _default(List) {
190
226
  };
191
227
 
192
228
  _proto.resetPosition = function resetPosition(clean) {
193
- var _this$props2 = this.props,
194
- focus = _this$props2.focus,
195
- parentElement = _this$props2.parentElement;
229
+ var _this$props3 = this.props,
230
+ focus = _this$props3.focus,
231
+ parentElement = _this$props3.parentElement;
196
232
  if (!this.el || !focus || this.ajustdoc && !clean) return;
197
233
  var pos = this.el.getBoundingClientRect();
198
234
  var left = pos.left;
@@ -203,7 +239,11 @@ function _default(List) {
203
239
  left = parentElement.getBoundingClientRect().left;
204
240
  }
205
241
 
206
- var overdoc = left + pos.width > _document.docSize.width;
242
+ var containerRect = this.containerRect || {
243
+ left: 0,
244
+ width: 0
245
+ };
246
+ var overdoc = left - containerRect.left + pos.width > (containerRect.width || _document.docSize.width);
207
247
  if (this.state.overdoc === overdoc) return;
208
248
  this.ajustdoc = true;
209
249
  this.setState({
@@ -216,21 +256,21 @@ function _default(List) {
216
256
  };
217
257
 
218
258
  _proto.renderList = function renderList() {
219
- var _this$props3 = this.props,
220
- parentElement = _this$props3.parentElement,
221
- absolute = _this$props3.absolute,
222
- focus = _this$props3.focus,
223
- rootClass = _this$props3.rootClass,
224
- position = _this$props3.position,
225
- scrollLeft = _this$props3.scrollLeft,
226
- scrollTop = _this$props3.scrollTop,
227
- scrollElement = _this$props3.scrollElement,
228
- _this$props3$style = _this$props3.style,
229
- style = _this$props3$style === void 0 ? {} : _this$props3$style,
230
- zIndex = _this$props3.zIndex,
231
- getResetPosition = _this$props3.getResetPosition,
232
- ignore = _this$props3.autoAdapt,
233
- props = (0, _objectWithoutPropertiesLoose2.default)(_this$props3, ["parentElement", "absolute", "focus", "rootClass", "position", "scrollLeft", "scrollTop", "scrollElement", "style", "zIndex", "getResetPosition", "autoAdapt"]);
259
+ var _this$props4 = this.props,
260
+ parentElement = _this$props4.parentElement,
261
+ absolute = _this$props4.absolute,
262
+ focus = _this$props4.focus,
263
+ rootClass = _this$props4.rootClass,
264
+ position = _this$props4.position,
265
+ scrollLeft = _this$props4.scrollLeft,
266
+ scrollTop = _this$props4.scrollTop,
267
+ scrollElement = _this$props4.scrollElement,
268
+ _this$props4$style = _this$props4.style,
269
+ style = _this$props4$style === void 0 ? {} : _this$props4$style,
270
+ zIndex = _this$props4.zIndex,
271
+ getResetPosition = _this$props4.getResetPosition,
272
+ ignore = _this$props4.autoAdapt,
273
+ props = (0, _objectWithoutPropertiesLoose2.default)(_this$props4, ["parentElement", "absolute", "focus", "rootClass", "position", "scrollLeft", "scrollTop", "scrollElement", "style", "zIndex", "getResetPosition", "autoAdapt"]);
234
274
  var parsed = parseInt(zIndex, 10);
235
275
  if (!Number.isNaN(parsed)) style.zIndex = parsed;
236
276
  var mergeStyle = Object.assign({}, style, this.state.overdoc ? {
@@ -257,20 +297,21 @@ function _default(List) {
257
297
  return this.renderList();
258
298
  }
259
299
 
260
- var _this$props4 = this.props,
261
- parentElement = _this$props4.parentElement,
262
- rootClass = _this$props4.rootClass,
263
- absolute = _this$props4.absolute,
264
- position = _this$props4.position,
265
- scrollLeft = _this$props4.scrollLeft,
266
- scrollTop = _this$props4.scrollTop,
267
- scrollElement = _this$props4.scrollElement,
268
- autoClass = _this$props4.autoClass,
269
- zIndex = _this$props4.zIndex,
270
- getResetPosition = _this$props4.getResetPosition,
271
- value = _this$props4.value,
272
- ignore = _this$props4.autoAdapt,
273
- props = (0, _objectWithoutPropertiesLoose2.default)(_this$props4, ["parentElement", "rootClass", "absolute", "position", "scrollLeft", "scrollTop", "scrollElement", "autoClass", "zIndex", "getResetPosition", "value", "autoAdapt"]);
300
+ if (!this.container) return null;
301
+ var _this$props5 = this.props,
302
+ parentElement = _this$props5.parentElement,
303
+ rootClass = _this$props5.rootClass,
304
+ absolute = _this$props5.absolute,
305
+ position = _this$props5.position,
306
+ scrollLeft = _this$props5.scrollLeft,
307
+ scrollTop = _this$props5.scrollTop,
308
+ scrollElement = _this$props5.scrollElement,
309
+ autoClass = _this$props5.autoClass,
310
+ zIndex = _this$props5.zIndex,
311
+ getResetPosition = _this$props5.getResetPosition,
312
+ value = _this$props5.value,
313
+ ignore = _this$props5.autoAdapt,
314
+ props = (0, _objectWithoutPropertiesLoose2.default)(_this$props5, ["parentElement", "rootClass", "absolute", "position", "scrollLeft", "scrollTop", "scrollElement", "autoClass", "zIndex", "getResetPosition", "value", "autoAdapt"]);
274
315
  var mergeClass = (0, _classnames.default)((0, _styles.listClass)('absolute-wrapper'), rootClass, autoClass);
275
316
 
276
317
  var _ref = props.focus ? this.getStyle() : {
@@ -302,7 +343,7 @@ function _default(List) {
302
343
  // same width with parentElement
303
344
  parentElement: _propTypes.default.object,
304
345
  position: _propTypes.default.string,
305
- absolute: _propTypes.default.bool,
346
+ absolute: _propTypes.default.oneOfType([_propTypes.default.bool, _propTypes.default.func]),
306
347
  scrollElement: _propTypes.default.object,
307
348
  scrollLeft: _propTypes.default.number,
308
349
  scrollTop: _propTypes.default.number,
@@ -0,0 +1,68 @@
1
+ import * as React from 'react'
2
+ import { StandardProps, ListItemStandardProps } from '../@types/common'
3
+
4
+ type ReactNode = React.ReactNode;
5
+
6
+ interface BreadcrumbData {
7
+
8
+
9
+ /**
10
+ * The click event
11
+ *
12
+ * 点击事件
13
+ *
14
+ * default: (event)=>void
15
+ */
16
+ onClick?: (event: Event)=>void;
17
+
18
+
19
+ /**
20
+ * Displayed content
21
+ *
22
+ * 显示内容
23
+ *
24
+ * default: null
25
+ */
26
+ title?: string| ReactNode;
27
+
28
+
29
+ /**
30
+ * Link address
31
+ *
32
+ * 链接地址,onClick 属性二选一
33
+ *
34
+ * default: null
35
+ */
36
+ url?: string;
37
+
38
+
39
+ }
40
+
41
+
42
+ export interface BreadcrumbProps<Item> extends StandardProps, Pick<ListItemStandardProps<Item>, 'keygen'> {
43
+
44
+ /**
45
+ * The array of breadcrumb objects, see data
46
+ *
47
+ * 面包屑对象数组,见 data
48
+ *
49
+ * default: []
50
+ */
51
+ data?: Array<Item>;
52
+
53
+
54
+ /**
55
+ * A breadcrumb separator which can be strings or custom elements
56
+ *
57
+ * 面包屑分隔符,可以是字符串或自定义的元素
58
+ *
59
+ * default: "/"
60
+ */
61
+ separator?: string|ReactNode;
62
+ }
63
+
64
+
65
+ declare class Breadcrumb<Item = BreadcrumbData> extends React.PureComponent<BreadcrumbProps<Item>, {}> {}
66
+
67
+
68
+ export default Breadcrumb
@@ -0,0 +1,160 @@
1
+ import * as React from 'react'
2
+ import { StandardProps, RegularAttributes } from '../@types/common'
3
+
4
+ export type ButtonType = 'default' | 'primary' | 'secondary' | 'success' | 'warning' | 'danger' | 'link';
5
+
6
+ export interface ButtonProps extends StandardProps {
7
+
8
+ /**
9
+ * The content inside the button, can be a text icon, etc.
10
+ *
11
+ * 按钮里面的内容, 可以是文字图标等
12
+ *
13
+ * default: required
14
+ */
15
+ children?: React.ReactNode;
16
+
17
+ /**
18
+ * Specifies the button should be disabled
19
+ *
20
+ * 禁用
21
+ *
22
+ * default: false
23
+ */
24
+ disabled?: boolean;
25
+
26
+ /**
27
+ * If the href attribute is set, &lt;a> will be used instead of &lt;button>.
28
+ *
29
+ * 如果设置了 href 属性,将会用 <a> 代替 <button>
30
+ *
31
+ * default: -
32
+ */
33
+ href?: string;
34
+
35
+ /**
36
+ * If present, target will be set onto <a> element.(Effective only when href is been set)
37
+ *
38
+ * 当设置了 href 属性时,target 会被设置到 <a> 元素上
39
+ *
40
+ * default: -
41
+ */
42
+ target?: '_self' | '_blank' | '_parent' | '_top' | string;
43
+
44
+ /**
45
+ * When outline is true, the background is transparent.
46
+ *
47
+ * outline 为 true 时,显示透明背景的按钮
48
+ *
49
+ * default: false
50
+ */
51
+ outline?: boolean;
52
+
53
+ /**
54
+ * size of button
55
+ *
56
+ * 按钮尺寸
57
+ *
58
+ * default: 'default'
59
+ */
60
+ size?: RegularAttributes.Size;
61
+
62
+
63
+ /**
64
+ * type of button
65
+ *
66
+ * 按钮类型
67
+ *
68
+ * default: 'default'
69
+ */
70
+ type?: ButtonType;
71
+
72
+ /**
73
+ * text button
74
+ *
75
+ * 文字按钮,不展示边框和背景
76
+ *
77
+ * default: false
78
+ */
79
+ text?: boolean;
80
+
81
+ /**
82
+ * button click callback
83
+ *
84
+ * 按钮点击回调
85
+ *
86
+ * default: none
87
+ */
88
+ onClick?: (e: MouseEvent) => void;
89
+
90
+ /**
91
+ * For Button with only 2 Chinese characters, whether to insert a space between the two Chinese characters.
92
+ *
93
+ * 仅有2个汉字的按钮,是否在2个汉字中间插入空格
94
+ *
95
+ * default: false
96
+ */
97
+ space?: boolean;
98
+
99
+ /**
100
+ * loading
101
+ *
102
+ * loading状态
103
+ *
104
+ * default: null
105
+ */
106
+ loading?: boolean
107
+ }
108
+
109
+ export interface ButtonGroupProps {
110
+
111
+ /**
112
+ * array of Button
113
+ *
114
+ * 由 Button 组成的 array
115
+ *
116
+ * default: required
117
+ */
118
+ children?: React.ReactNode;
119
+
120
+ /**
121
+ * same as Button
122
+ *
123
+ * 同 Button;如果 Button 和 Group 同时设置 size,以 Group 为准
124
+ *
125
+ * default: -
126
+ */
127
+ size?: RegularAttributes.Size;
128
+
129
+ /**
130
+ * same as Button
131
+ *
132
+ * 同 Button;如果 Button 未设置,使用此值
133
+ *
134
+ * default: -
135
+ */
136
+ outline?: boolean;
137
+
138
+ /**
139
+ * same as Button
140
+ *
141
+ * 同 Button;如果 Button 和 Group 同时设置 type,以 Group 为准
142
+ *
143
+ * default: -
144
+ */
145
+ type?: ButtonType;
146
+
147
+ }
148
+
149
+
150
+ declare class ButtonGroup extends React.Component<ButtonGroupProps> {
151
+ render(): JSX.Element
152
+ }
153
+
154
+ declare class Button extends React.Component<ButtonProps> {
155
+ static Group: typeof ButtonGroup;
156
+
157
+ render(): JSX.Element
158
+ }
159
+
160
+ export default Button
@@ -0,0 +1,161 @@
1
+ import * as React from 'react'
2
+ import { ButtonProps } from '../Button/index'
3
+ import { RegularAttributes, StandardProps } from '../@types/common'
4
+
5
+ export interface CardProps extends StandardProps {
6
+
7
+ /**
8
+ * Whether can be collapsed,'bottom' can collaps on bottom
9
+ *
10
+ * 是否可折叠,'bottom' 表示从下方点击折叠
11
+ *
12
+ * default: false
13
+ */
14
+ collapsible?: boolean | 'bottom';
15
+
16
+ /**
17
+ * Whether to be collapsed.
18
+ *
19
+ * 是否折叠,用于受控状态
20
+ *
21
+ * default: -
22
+ */
23
+ collapsed?: boolean;
24
+
25
+ /**
26
+ * Initial collapsed state
27
+ *
28
+ * 初始折叠状态(仅在 collapsible 为 true 时有效)
29
+ *
30
+ * default: true
31
+ */
32
+ defaultCollapsed?: boolean;
33
+
34
+ /**
35
+ * Callback when collapsed state changed
36
+ *
37
+ * 折叠状态改变时回调事件
38
+ *
39
+ * default: -
40
+ */
41
+ onCollapse?: () => void;
42
+
43
+ /**
44
+ * Whether to show the shadow.'hover' - Display it when the mouse is over the element.true - Always show, false - Never show
45
+ *
46
+ * 是否显示阴影。'hover' - 鼠标移到元素上显示。true - 总是显示, false - 从不显示
47
+ *
48
+ * default: false
49
+ */
50
+ shadow?: true | false | 'hover';
51
+
52
+ /**
53
+ * Card.Accordion expand controlled key
54
+ *
55
+ * 手风琴下控制展开的值
56
+ *
57
+ * default: none
58
+ */
59
+ id?: any;
60
+
61
+ }
62
+
63
+ export interface CardHeaderProps extends StandardProps {
64
+
65
+ /**
66
+ * align
67
+ *
68
+ * 对齐方式
69
+ *
70
+ * default: none
71
+ */
72
+ align?: RegularAttributes.Align;
73
+
74
+ }
75
+
76
+ export interface CardBodyProps extends StandardProps {}
77
+
78
+ export interface CardFooterProps extends StandardProps {
79
+
80
+ /**
81
+ * align
82
+ *
83
+ * 对齐方式
84
+ *
85
+ * default: none
86
+ */
87
+ align?: RegularAttributes.Align;
88
+
89
+ }
90
+
91
+ export interface CardAccordionProps<T> {
92
+
93
+ /**
94
+ * Active value. It is -1 when fully closed. Used in controlled state. be id while Card.id setted
95
+ *
96
+ * 打开的值,全关闭时为 null,用于受控状态。默认为索引,若Card设置id后则为id。
97
+ *
98
+ * default: none
99
+ */
100
+ active?: T;
101
+
102
+ /**
103
+ * The default active value for uncontrolled state, be id while Card.id setted
104
+ *
105
+ * 默认打开的值,用于非受控状态。默认为索引,若Card设置id后则为id。
106
+ *
107
+ * default: 0
108
+ */
109
+ defaultActive?: T;
110
+
111
+ /**
112
+ * The callback function when the panel is opened
113
+ *
114
+ * 面板打开回调
115
+ *
116
+ * default: none
117
+ */
118
+ onChange?: () => void;
119
+
120
+ }
121
+
122
+ export interface CardSubmitProps extends ButtonProps {
123
+
124
+ }
125
+
126
+ declare class CardSubmit extends React.Component<CardSubmitProps, {}> {
127
+ render(): JSX.Element;
128
+ }
129
+
130
+ declare class CardAccordion<T> extends React.Component<CardAccordionProps<T>, {}> {
131
+ render(): JSX.Element;
132
+ }
133
+
134
+ declare class CardFooter extends React.Component<CardFooterProps, {}> {
135
+ render(): JSX.Element;
136
+ }
137
+
138
+ declare class CardBody extends React.Component<CardBodyProps, {}> {
139
+ render(): JSX.Element;
140
+ }
141
+
142
+ declare class CardHeader extends React.Component<CardHeaderProps, {}> {
143
+ render(): JSX.Element;
144
+ }
145
+
146
+
147
+ declare class Card extends React.Component<CardProps, {}> {
148
+ static Header: typeof CardHeader;
149
+
150
+ static Body: typeof CardBody;
151
+
152
+ static Footer: typeof CardFooter;
153
+
154
+ static Accordion: typeof CardAccordion;
155
+
156
+ static Submit: typeof CardSubmit;
157
+
158
+ render(): JSX.Element;
159
+ }
160
+
161
+ export default Card
@@ -112,7 +112,7 @@ CardGroup.defaultProps = {
112
112
  };
113
113
  CardGroup.propTypes = {
114
114
  style: _propTypes.default.object,
115
- children: _propTypes.default.array,
115
+ children: _propTypes.default.oneOfType([_propTypes.default.array, _propTypes.default.node]),
116
116
  className: _propTypes.default.string,
117
117
  height: _propTypes.default.number,
118
118
  cardWidth: _propTypes.default.number,