@kdcloudjs/kdesign 1.6.34 → 1.6.35

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 (598) hide show
  1. package/dist/kdesign-complete.less +5 -0
  2. package/dist/kdesign.css +6 -1
  3. package/dist/kdesign.css.map +1 -1
  4. package/dist/kdesign.js +9170 -11861
  5. package/dist/kdesign.js.map +1 -1
  6. package/dist/kdesign.min.css +3 -3
  7. package/dist/kdesign.min.js +18 -18
  8. package/dist/kdesign.min.js.map +1 -1
  9. package/es/_utils/KeyCode.js +6 -119
  10. package/es/_utils/arrayUtil.js +0 -5
  11. package/es/_utils/devwarning.js +0 -1
  12. package/es/_utils/formatUtil.js +36 -99
  13. package/es/_utils/getStringLength.js +0 -2
  14. package/es/_utils/hooks.js +32 -72
  15. package/es/_utils/index.js +0 -2
  16. package/es/_utils/numberUtil.js +32 -55
  17. package/es/_utils/omit.js +0 -2
  18. package/es/_utils/raf.js +0 -6
  19. package/es/_utils/resizeObserver.js +2 -17
  20. package/es/_utils/testBrowserType.js +0 -2
  21. package/es/_utils/type.js +0 -2
  22. package/es/_utils/usePopper.js +84 -167
  23. package/es/alert/alert.js +20 -50
  24. package/es/anchor/anchor-link.js +12 -23
  25. package/es/anchor/anchor.js +69 -168
  26. package/es/avatar/avatar.js +29 -44
  27. package/es/badge/badge.js +33 -53
  28. package/es/base-data/base-data.js +89 -197
  29. package/es/button/button.js +30 -55
  30. package/es/button/group.js +27 -39
  31. package/es/card/card.js +19 -23
  32. package/es/carousel/carousel.js +31 -65
  33. package/es/carousel/displayList.js +2 -5
  34. package/es/carousel/fadeList.js +4 -7
  35. package/es/carousel/slideList.js +1 -7
  36. package/es/carousel/slidebar.js +5 -12
  37. package/es/cascader/cascader.js +56 -116
  38. package/es/cascader/util.js +10 -58
  39. package/es/checkbox/checkbox.js +22 -47
  40. package/es/checkbox/group.js +19 -35
  41. package/es/checkbox/style/index.css +2 -0
  42. package/es/checkbox/style/index.less +1 -0
  43. package/es/city-picker/city-group.js +5 -13
  44. package/es/city-picker/city-list.js +4 -9
  45. package/es/city-picker/city-panel-item.js +3 -8
  46. package/es/city-picker/city-panel.js +25 -50
  47. package/es/city-picker/city-picker.js +22 -46
  48. package/es/city-picker/city-search-panel.js +6 -13
  49. package/es/city-picker/no-data.js +3 -6
  50. package/es/city-picker/utils/grouping.js +0 -4
  51. package/es/collapse/collapse.js +17 -40
  52. package/es/collapse/panel.js +21 -44
  53. package/es/config-provider/SizeContext.js +1 -1
  54. package/es/config-provider/compDefaultProps.js +0 -1
  55. package/es/config-provider/configProvider.js +2 -7
  56. package/es/config-provider/defaultConfig.js +0 -1
  57. package/es/date-picker/calendar.js +12 -21
  58. package/es/date-picker/date-panel.js +20 -60
  59. package/es/date-picker/date-picker.js +145 -186
  60. package/es/date-picker/hooks/use-hover-value.js +5 -13
  61. package/es/date-picker/hooks/use-picker-input.js +17 -31
  62. package/es/date-picker/hooks/use-range-cls.js +8 -14
  63. package/es/date-picker/hooks/use-range-disabled.js +7 -21
  64. package/es/date-picker/hooks/use-range-view-dates.js +18 -39
  65. package/es/date-picker/hooks/use-state-memo.js +0 -2
  66. package/es/date-picker/hooks/use-text-value-mapping.js +6 -11
  67. package/es/date-picker/hooks/use-value-texts.js +0 -1
  68. package/es/date-picker/panel/date-time/date-time.js +7 -10
  69. package/es/date-picker/panel/header/header.js +9 -11
  70. package/es/date-picker/panel/month/month.js +11 -30
  71. package/es/date-picker/panel/quarter/quarter.js +8 -25
  72. package/es/date-picker/panel/time/time-column.js +8 -18
  73. package/es/date-picker/panel/time/time.js +62 -88
  74. package/es/date-picker/panel/week/week.js +25 -57
  75. package/es/date-picker/panel/year/year.js +19 -42
  76. package/es/date-picker/popper.js +28 -35
  77. package/es/date-picker/range/input-range.js +95 -129
  78. package/es/date-picker/range-picker.d.ts +1 -0
  79. package/es/date-picker/range-picker.js +196 -284
  80. package/es/date-picker/single/input-date.js +87 -111
  81. package/es/date-picker/utils/date-fns.js +32 -63
  82. package/es/date-picker/utils/get-extra-footer.js +0 -1
  83. package/es/date-picker/utils/get-ranges.js +13 -19
  84. package/es/date-picker/utils/index.js +9 -80
  85. package/es/drawer/drawer.js +50 -71
  86. package/es/dropdown/dropdown.js +26 -42
  87. package/es/dropdown/menu.d.ts +3 -2
  88. package/es/dropdown/menu.js +32 -43
  89. package/es/empty/defaultEmptyImg.js +2 -5
  90. package/es/empty/empty.js +15 -26
  91. package/es/empty/illustrationEmptyImg.js +2 -5
  92. package/es/filter/condition.js +5 -17
  93. package/es/filter/filter.js +29 -54
  94. package/es/filter/scheme.js +35 -71
  95. package/es/form/Field.js +36 -98
  96. package/es/form/FieldContext.js +0 -2
  97. package/es/form/FieldLabel.js +11 -17
  98. package/es/form/FieldWrapper.js +6 -9
  99. package/es/form/Form.js +28 -46
  100. package/es/form/FormContext.js +0 -4
  101. package/es/form/hooks/useForceUpdate.js +2 -5
  102. package/es/form/hooks/useForm.js +10 -84
  103. package/es/grid/col.js +23 -39
  104. package/es/grid/row.js +22 -36
  105. package/es/icon/icon.js +11 -29
  106. package/es/image/image.js +31 -49
  107. package/es/image/preview-group.js +25 -41
  108. package/es/image/preview.js +24 -39
  109. package/es/image-cropper/cropper.js +13 -23
  110. package/es/image-cropper/image-cropper.js +39 -69
  111. package/es/image-cropper/operation-bar.js +14 -27
  112. package/es/index.js +0 -2
  113. package/es/input/ClearableLabeledInput.js +27 -50
  114. package/es/input/TextArea.js +45 -86
  115. package/es/input/calculateNodeHeight.js +4 -16
  116. package/es/input/index.js +2 -2
  117. package/es/input/input.js +32 -67
  118. package/es/input-number/inputNumber.js +50 -109
  119. package/es/layout/layout.js +28 -49
  120. package/es/layout/sider.js +39 -73
  121. package/es/link/link.js +19 -33
  122. package/es/locale/locale.js +6 -44
  123. package/es/locale/zh-CN.js +0 -2
  124. package/es/menu/menu.js +29 -63
  125. package/es/menu/menuItem.js +27 -52
  126. package/es/menu/subMenu.js +44 -99
  127. package/es/menu/util.js +4 -13
  128. package/es/message/content.js +7 -23
  129. package/es/message/index.js +14 -26
  130. package/es/modal/confirm.js +3 -12
  131. package/es/modal/index.js +0 -4
  132. package/es/modal/modal.js +41 -63
  133. package/es/notification/content.js +13 -35
  134. package/es/notification/index.js +20 -35
  135. package/es/notification-base/index.js +4 -24
  136. package/es/notification-base/notice.js +12 -24
  137. package/es/notification-base/notification.js +3 -18
  138. package/es/pagination/pagination.js +76 -113
  139. package/es/popconfirm/popconfirm.js +22 -33
  140. package/es/progress/circle.js +9 -18
  141. package/es/progress/line.js +5 -9
  142. package/es/progress/progress.js +21 -44
  143. package/es/progress/utils.js +6 -22
  144. package/es/radio/group.js +19 -35
  145. package/es/radio/radio-button.js +6 -19
  146. package/es/radio/radio.js +19 -46
  147. package/es/rate/rate.js +30 -67
  148. package/es/search/option.js +10 -17
  149. package/es/search/quick-search.js +68 -155
  150. package/es/search/search-panel.js +28 -49
  151. package/es/search/search.js +23 -43
  152. package/es/select/interface.js +0 -1
  153. package/es/select/option.js +13 -25
  154. package/es/select/select.js +114 -221
  155. package/es/select/style/index.css +3 -0
  156. package/es/select/style/index.less +4 -0
  157. package/es/slider/marks.js +9 -15
  158. package/es/slider/slider.js +60 -104
  159. package/es/slider/sliderTooltip.js +9 -17
  160. package/es/slider/steps.js +8 -19
  161. package/es/slider/track.js +5 -8
  162. package/es/slider/utils.js +4 -14
  163. package/es/space/space.js +16 -34
  164. package/es/spin/spin.js +16 -32
  165. package/es/split-panel/split-panel.js +57 -83
  166. package/es/split-panel/trigger.js +8 -17
  167. package/es/stepper/stepper.js +27 -57
  168. package/es/steps/Step.js +18 -34
  169. package/es/steps/Steps.js +19 -38
  170. package/es/switch/switch.js +25 -43
  171. package/es/table/api.js +3 -37
  172. package/es/table/feature/autoRowSpan.js +0 -2
  173. package/es/table/feature/colGroupExtendable.js +0 -2
  174. package/es/table/feature/columnDrag.js +0 -2
  175. package/es/table/feature/columnResize.js +0 -2
  176. package/es/table/feature/contextMenu.js +0 -2
  177. package/es/table/feature/filter.js +0 -2
  178. package/es/table/feature/mergeCellHover.js +0 -2
  179. package/es/table/feature/rowDetail.js +0 -2
  180. package/es/table/feature/rowSelection.js +11 -21
  181. package/es/table/feature/sort.js +0 -2
  182. package/es/table/feature/treeMode.js +0 -2
  183. package/es/table/feature/useFooterDataSource.js +0 -2
  184. package/es/table/feature/useRangeSelection.js +0 -2
  185. package/es/table/table.js +36 -46
  186. package/es/tabs/active-line.js +6 -8
  187. package/es/tabs/arrow-button.js +5 -10
  188. package/es/tabs/index.js +2 -2
  189. package/es/tabs/tab-pane.js +7 -23
  190. package/es/tabs/tabs.js +42 -104
  191. package/es/tag/tag.js +34 -56
  192. package/es/timeline/Timeline.js +16 -33
  193. package/es/timeline/TimelineItem.js +15 -26
  194. package/es/tooltip/tooltip.js +7 -11
  195. package/es/transfer/list-body.js +12 -31
  196. package/es/transfer/list-item.js +10 -18
  197. package/es/transfer/list.js +35 -68
  198. package/es/transfer/operation.js +12 -14
  199. package/es/transfer/search.js +5 -11
  200. package/es/transfer/transfer.js +51 -100
  201. package/es/tree/tree.js +95 -156
  202. package/es/tree/treeHooks.js +18 -34
  203. package/es/tree/treeNode.js +57 -96
  204. package/es/tree/utils/treeUtils.js +22 -150
  205. package/es/typography/base.js +16 -33
  206. package/es/typography/index.js +2 -2
  207. package/es/typography/paragraph.js +0 -2
  208. package/es/typography/text.js +0 -2
  209. package/es/typography/title.js +3 -14
  210. package/es/typography/typography.js +14 -24
  211. package/es/upload/dragger.js +3 -12
  212. package/es/upload/request.js +6 -26
  213. package/es/upload/scan-files.js +2 -13
  214. package/es/upload/upload.js +63 -131
  215. package/es/upload/utils.js +0 -2
  216. package/es/upload/verify-file.js +0 -6
  217. package/es/view-container/view-container.js +7 -9
  218. package/es/virtual-list/Filler.js +3 -7
  219. package/es/virtual-list/utils/algorithmUtil.js +0 -13
  220. package/es/virtual-list/utils/itemUtil.js +18 -47
  221. package/es/virtual-list/virtual-list.js +64 -137
  222. package/lib/_utils/KeyCode.js +6 -120
  223. package/lib/_utils/arrayUtil.js +0 -9
  224. package/lib/_utils/devwarning.js +0 -5
  225. package/lib/_utils/formatUtil.js +36 -103
  226. package/lib/_utils/getStringLength.js +0 -3
  227. package/lib/_utils/hooks.js +32 -90
  228. package/lib/_utils/index.js +0 -6
  229. package/lib/_utils/numberUtil.js +32 -64
  230. package/lib/_utils/omit.js +0 -5
  231. package/lib/_utils/raf.js +0 -7
  232. package/lib/_utils/react-children.js +0 -5
  233. package/lib/_utils/reactNode.js +0 -9
  234. package/lib/_utils/resizeObserver.js +2 -25
  235. package/lib/_utils/testBrowserType.js +0 -3
  236. package/lib/_utils/type.js +0 -6
  237. package/lib/_utils/usePopper.js +84 -190
  238. package/lib/alert/alert.js +20 -74
  239. package/lib/alert/index.js +0 -3
  240. package/lib/alert/style/css.js +0 -1
  241. package/lib/alert/style/index.js +0 -1
  242. package/lib/anchor/anchor-link.js +12 -35
  243. package/lib/anchor/anchor.js +69 -204
  244. package/lib/anchor/context.js +0 -7
  245. package/lib/anchor/index.js +0 -4
  246. package/lib/anchor/style/css.js +0 -1
  247. package/lib/anchor/style/index.js +0 -1
  248. package/lib/avatar/avatar.js +29 -70
  249. package/lib/avatar/index.js +0 -9
  250. package/lib/avatar/style/css.js +0 -1
  251. package/lib/avatar/style/index.js +0 -1
  252. package/lib/badge/badge.js +33 -70
  253. package/lib/badge/index.js +0 -9
  254. package/lib/badge/style/css.js +0 -1
  255. package/lib/badge/style/index.js +0 -1
  256. package/lib/base-data/base-data.js +89 -218
  257. package/lib/base-data/index.js +0 -9
  258. package/lib/base-data/interface.js +0 -2
  259. package/lib/base-data/style/css.js +0 -1
  260. package/lib/base-data/style/index.js +0 -1
  261. package/lib/button/button.js +30 -72
  262. package/lib/button/group.js +27 -61
  263. package/lib/button/index.js +0 -4
  264. package/lib/button/style/css.js +0 -1
  265. package/lib/button/style/index.js +0 -1
  266. package/lib/card/card.js +19 -35
  267. package/lib/card/index.js +0 -9
  268. package/lib/card/style/css.js +0 -1
  269. package/lib/card/style/index.js +0 -1
  270. package/lib/carousel/carousel.js +31 -112
  271. package/lib/carousel/displayList.js +2 -14
  272. package/lib/carousel/fadeList.js +4 -16
  273. package/lib/carousel/index.js +0 -12
  274. package/lib/carousel/slideList.js +1 -14
  275. package/lib/carousel/slidebar.js +5 -22
  276. package/lib/carousel/style/css.js +0 -1
  277. package/lib/carousel/style/index.js +0 -1
  278. package/lib/cascader/cascader.js +56 -150
  279. package/lib/cascader/index.js +0 -9
  280. package/lib/cascader/style/css.js +0 -1
  281. package/lib/cascader/style/index.js +0 -1
  282. package/lib/cascader/util.js +10 -87
  283. package/lib/checkbox/checkbox.js +22 -69
  284. package/lib/checkbox/group.js +18 -59
  285. package/lib/checkbox/index.js +0 -9
  286. package/lib/checkbox/style/css.js +0 -1
  287. package/lib/checkbox/style/index.css +2 -0
  288. package/lib/checkbox/style/index.js +0 -1
  289. package/lib/checkbox/style/index.less +1 -0
  290. package/lib/city-picker/city-group.js +5 -24
  291. package/lib/city-picker/city-list.js +4 -21
  292. package/lib/city-picker/city-panel-item.js +3 -17
  293. package/lib/city-picker/city-panel.js +25 -64
  294. package/lib/city-picker/city-picker.js +22 -67
  295. package/lib/city-picker/city-search-panel.js +6 -25
  296. package/lib/city-picker/index.js +0 -9
  297. package/lib/city-picker/no-data.js +3 -15
  298. package/lib/city-picker/style/css.js +0 -1
  299. package/lib/city-picker/style/index.js +0 -1
  300. package/lib/city-picker/utils/grouping.js +0 -5
  301. package/lib/collapse/collapse.js +17 -62
  302. package/lib/collapse/index.js +0 -4
  303. package/lib/collapse/panel.js +21 -62
  304. package/lib/collapse/style/css.js +0 -1
  305. package/lib/collapse/style/index.js +0 -1
  306. package/lib/config-provider/ConfigContext.js +1 -4
  307. package/lib/config-provider/SizeContext.js +1 -6
  308. package/lib/config-provider/compDefaultProps.js +0 -8
  309. package/lib/config-provider/configProvider.js +3 -18
  310. package/lib/config-provider/defaultConfig.js +0 -5
  311. package/lib/config-provider/index.js +0 -6
  312. package/lib/date-picker/calendar.js +12 -35
  313. package/lib/date-picker/context.js +0 -7
  314. package/lib/date-picker/date-panel.js +20 -81
  315. package/lib/date-picker/date-picker.js +145 -214
  316. package/lib/date-picker/hooks/use-hover-value.js +5 -19
  317. package/lib/date-picker/hooks/use-picker-input.js +17 -37
  318. package/lib/date-picker/hooks/use-range-cls.js +8 -21
  319. package/lib/date-picker/hooks/use-range-disabled.js +7 -30
  320. package/lib/date-picker/hooks/use-range-view-dates.js +16 -49
  321. package/lib/date-picker/hooks/use-state-memo.js +0 -5
  322. package/lib/date-picker/hooks/use-text-value-mapping.js +6 -20
  323. package/lib/date-picker/hooks/use-value-texts.js +0 -5
  324. package/lib/date-picker/index.js +0 -4
  325. package/lib/date-picker/panel/date-time/date-time.js +7 -23
  326. package/lib/date-picker/panel/header/header.js +9 -21
  327. package/lib/date-picker/panel/month/month.js +11 -46
  328. package/lib/date-picker/panel/quarter/quarter.js +8 -40
  329. package/lib/date-picker/panel/time/time-column.js +8 -31
  330. package/lib/date-picker/panel/time/time.js +60 -106
  331. package/lib/date-picker/panel/week/week.js +25 -73
  332. package/lib/date-picker/panel/year/year.js +19 -56
  333. package/lib/date-picker/popper.js +28 -47
  334. package/lib/date-picker/range/input-range.js +95 -145
  335. package/lib/date-picker/range-picker.d.ts +1 -0
  336. package/lib/date-picker/range-picker.js +194 -324
  337. package/lib/date-picker/single/input-date.js +87 -127
  338. package/lib/date-picker/utils/date-fns.js +25 -136
  339. package/lib/date-picker/utils/get-extra-footer.js +0 -8
  340. package/lib/date-picker/utils/get-ranges.js +13 -24
  341. package/lib/date-picker/utils/index.js +9 -104
  342. package/lib/drawer/drawer.js +49 -95
  343. package/lib/drawer/index.js +0 -9
  344. package/lib/drawer/style/css.js +0 -1
  345. package/lib/drawer/style/index.js +0 -1
  346. package/lib/dropdown/dropdown.js +26 -56
  347. package/lib/dropdown/index.js +0 -9
  348. package/lib/dropdown/menu.d.ts +3 -2
  349. package/lib/dropdown/menu.js +29 -56
  350. package/lib/dropdown/style/css.js +0 -1
  351. package/lib/dropdown/style/index.js +0 -1
  352. package/lib/empty/defaultEmptyImg.js +2 -14
  353. package/lib/empty/empty.js +15 -42
  354. package/lib/empty/illustrationEmptyImg.js +2 -14
  355. package/lib/empty/index.js +0 -9
  356. package/lib/empty/style/css.js +0 -1
  357. package/lib/empty/style/index.js +0 -1
  358. package/lib/filter/condition.js +5 -28
  359. package/lib/filter/filter.js +29 -73
  360. package/lib/filter/index.js +0 -9
  361. package/lib/filter/scheme.js +35 -82
  362. package/lib/filter/style/css.js +0 -1
  363. package/lib/filter/style/index.js +0 -1
  364. package/lib/form/Field.js +36 -127
  365. package/lib/form/FieldContext.js +0 -6
  366. package/lib/form/FieldLabel.js +11 -29
  367. package/lib/form/FieldWrapper.js +6 -19
  368. package/lib/form/Form.js +28 -65
  369. package/lib/form/FormContext.js +0 -11
  370. package/lib/form/hooks/useForceUpdate.js +2 -9
  371. package/lib/form/hooks/useForm.js +10 -98
  372. package/lib/form/index.js +0 -12
  373. package/lib/form/style/css.js +0 -1
  374. package/lib/form/style/index.js +0 -1
  375. package/lib/grid/col.js +23 -51
  376. package/lib/grid/index.js +0 -3
  377. package/lib/grid/row.js +22 -49
  378. package/lib/grid/style/css.js +0 -1
  379. package/lib/grid/style/index.js +0 -1
  380. package/lib/icon/icon.js +11 -44
  381. package/lib/icon/index.js +0 -9
  382. package/lib/icon/interface.js +0 -6
  383. package/lib/icon/style/css.js +0 -1
  384. package/lib/icon/style/index.js +0 -1
  385. package/lib/image/image.js +31 -64
  386. package/lib/image/index.js +0 -9
  387. package/lib/image/preview-group.js +25 -54
  388. package/lib/image/preview.js +24 -57
  389. package/lib/image/style/css.js +0 -1
  390. package/lib/image/style/index.js +0 -1
  391. package/lib/image-cropper/cropper.js +11 -33
  392. package/lib/image-cropper/image-cropper.js +39 -89
  393. package/lib/image-cropper/index.js +0 -3
  394. package/lib/image-cropper/operation-bar.js +14 -44
  395. package/lib/image-cropper/style/css.js +0 -1
  396. package/lib/image-cropper/style/index.js +0 -1
  397. package/lib/index.js +2 -64
  398. package/lib/input/ClearableLabeledInput.js +27 -65
  399. package/lib/input/TextArea.js +45 -108
  400. package/lib/input/calculateNodeHeight.js +4 -23
  401. package/lib/input/index.js +0 -9
  402. package/lib/input/input.js +32 -87
  403. package/lib/input-number/index.js +0 -3
  404. package/lib/input-number/inputNumber.js +50 -129
  405. package/lib/input-number/style/css.js +0 -1
  406. package/lib/input-number/style/index.js +0 -1
  407. package/lib/layout/index.js +0 -9
  408. package/lib/layout/layout.js +28 -64
  409. package/lib/layout/sider.js +39 -89
  410. package/lib/layout/style/css.js +0 -1
  411. package/lib/layout/style/index.js +0 -1
  412. package/lib/link/index.js +0 -9
  413. package/lib/link/link.js +19 -50
  414. package/lib/link/style/css.js +0 -1
  415. package/lib/link/style/index.js +0 -1
  416. package/lib/locale/index.js +0 -7
  417. package/lib/locale/locale.js +6 -58
  418. package/lib/locale/zh-CN.js +0 -4
  419. package/lib/menu/index.js +0 -9
  420. package/lib/menu/menu.js +29 -83
  421. package/lib/menu/menuItem.js +27 -69
  422. package/lib/menu/style/css.js +0 -1
  423. package/lib/menu/style/index.js +0 -1
  424. package/lib/menu/subMenu.js +44 -122
  425. package/lib/menu/util.js +4 -28
  426. package/lib/message/content.js +7 -32
  427. package/lib/message/index.js +14 -33
  428. package/lib/message/style/css.js +0 -1
  429. package/lib/message/style/index.js +0 -1
  430. package/lib/modal/confirm.js +3 -21
  431. package/lib/modal/index.js +0 -14
  432. package/lib/modal/modal.js +41 -86
  433. package/lib/modal/style/css.js +0 -1
  434. package/lib/modal/style/index.js +0 -1
  435. package/lib/notification/content.js +15 -48
  436. package/lib/notification/index.js +20 -42
  437. package/lib/notification/style/css.js +0 -1
  438. package/lib/notification/style/index.js +0 -1
  439. package/lib/notification-base/index.js +4 -31
  440. package/lib/notification-base/notice.js +12 -38
  441. package/lib/notification-base/notification.js +3 -31
  442. package/lib/pagination/index.js +0 -3
  443. package/lib/pagination/pagination.js +76 -137
  444. package/lib/pagination/style/css.js +0 -1
  445. package/lib/pagination/style/index.js +0 -1
  446. package/lib/popconfirm/index.js +0 -9
  447. package/lib/popconfirm/popconfirm.js +22 -46
  448. package/lib/popconfirm/style/css.js +0 -1
  449. package/lib/popconfirm/style/index.js +0 -1
  450. package/lib/progress/circle.js +9 -25
  451. package/lib/progress/index.js +0 -3
  452. package/lib/progress/line.js +5 -11
  453. package/lib/progress/progress.js +21 -64
  454. package/lib/progress/style/css.js +0 -1
  455. package/lib/progress/style/index.js +0 -1
  456. package/lib/progress/utils.js +6 -30
  457. package/lib/radio/context.js +0 -7
  458. package/lib/radio/group.js +19 -53
  459. package/lib/radio/index.js +0 -5
  460. package/lib/radio/radio-button.js +6 -32
  461. package/lib/radio/radio.js +19 -66
  462. package/lib/radio/style/css.js +0 -1
  463. package/lib/radio/style/index.js +0 -1
  464. package/lib/rate/index.js +0 -3
  465. package/lib/rate/rate.js +30 -82
  466. package/lib/rate/style/css.js +0 -1
  467. package/lib/rate/style/index.js +0 -1
  468. package/lib/search/index.js +0 -7
  469. package/lib/search/interface.js +0 -2
  470. package/lib/search/option.js +10 -29
  471. package/lib/search/quick-search.js +68 -171
  472. package/lib/search/search-panel.js +28 -66
  473. package/lib/search/search.js +23 -63
  474. package/lib/search/style/css.js +0 -1
  475. package/lib/search/style/index.js +0 -1
  476. package/lib/select/index.js +0 -4
  477. package/lib/select/interface.js +0 -3
  478. package/lib/select/option.js +13 -40
  479. package/lib/select/select.js +114 -234
  480. package/lib/select/style/index.css +3 -0
  481. package/lib/select/style/index.less +4 -0
  482. package/lib/slider/index.js +0 -9
  483. package/lib/slider/marks.js +9 -22
  484. package/lib/slider/slider.js +58 -123
  485. package/lib/slider/sliderTooltip.js +9 -30
  486. package/lib/slider/steps.js +8 -24
  487. package/lib/slider/style/css.js +0 -1
  488. package/lib/slider/style/index.js +0 -1
  489. package/lib/slider/track.js +5 -11
  490. package/lib/slider/utils.js +4 -21
  491. package/lib/space/index.js +0 -9
  492. package/lib/space/space.js +16 -50
  493. package/lib/space/style/css.js +0 -1
  494. package/lib/space/style/index.js +0 -1
  495. package/lib/spin/index.js +0 -9
  496. package/lib/spin/spin.js +16 -50
  497. package/lib/spin/style/css.js +0 -1
  498. package/lib/spin/style/index.js +0 -1
  499. package/lib/split-panel/index.js +0 -9
  500. package/lib/split-panel/split-panel.js +57 -101
  501. package/lib/split-panel/style/css.js +0 -1
  502. package/lib/split-panel/style/index.js +0 -1
  503. package/lib/split-panel/trigger.js +8 -23
  504. package/lib/stepper/index.js +0 -9
  505. package/lib/stepper/stepper.js +27 -81
  506. package/lib/stepper/style/css.js +0 -1
  507. package/lib/stepper/style/index.js +0 -1
  508. package/lib/steps/Step.js +18 -40
  509. package/lib/steps/Steps.js +19 -55
  510. package/lib/steps/index.js +0 -5
  511. package/lib/steps/interface.js +0 -2
  512. package/lib/steps/style/css.js +0 -1
  513. package/lib/steps/style/index.js +0 -1
  514. package/lib/switch/index.js +0 -3
  515. package/lib/switch/style/css.js +0 -1
  516. package/lib/switch/style/index.js +0 -1
  517. package/lib/switch/switch.js +23 -59
  518. package/lib/table/api.js +3 -39
  519. package/lib/table/feature/autoRowSpan.js +0 -3
  520. package/lib/table/feature/colGroupExtendable.js +0 -3
  521. package/lib/table/feature/columnDrag.js +0 -3
  522. package/lib/table/feature/columnResize.js +0 -3
  523. package/lib/table/feature/contextMenu.js +0 -3
  524. package/lib/table/feature/filter.js +0 -6
  525. package/lib/table/feature/mergeCellHover.js +0 -3
  526. package/lib/table/feature/rowDetail.js +0 -5
  527. package/lib/table/feature/rowSelection.js +11 -24
  528. package/lib/table/feature/sort.js +0 -6
  529. package/lib/table/feature/treeMode.js +0 -5
  530. package/lib/table/feature/useFooterDataSource.js +0 -3
  531. package/lib/table/feature/useRangeSelection.js +0 -5
  532. package/lib/table/index.js +0 -3
  533. package/lib/table/style/css.js +0 -1
  534. package/lib/table/style/index.js +0 -1
  535. package/lib/table/table.js +36 -78
  536. package/lib/tabs/active-line.js +6 -17
  537. package/lib/tabs/arrow-button.js +5 -23
  538. package/lib/tabs/context.js +0 -7
  539. package/lib/tabs/index.js +2 -6
  540. package/lib/tabs/style/css.js +0 -1
  541. package/lib/tabs/style/index.js +0 -1
  542. package/lib/tabs/tab-pane.js +7 -38
  543. package/lib/tabs/tabs.js +42 -135
  544. package/lib/tag/index.js +0 -9
  545. package/lib/tag/style/css.js +0 -1
  546. package/lib/tag/style/index.js +0 -1
  547. package/lib/tag/tag.js +34 -74
  548. package/lib/timeline/Timeline.js +16 -45
  549. package/lib/timeline/TimelineItem.js +15 -39
  550. package/lib/timeline/index.js +0 -3
  551. package/lib/timeline/style/css.js +0 -1
  552. package/lib/timeline/style/index.js +0 -1
  553. package/lib/tooltip/index.js +0 -9
  554. package/lib/tooltip/style/css.js +0 -1
  555. package/lib/tooltip/style/index.js +0 -1
  556. package/lib/tooltip/tooltip.js +7 -24
  557. package/lib/transfer/index.js +0 -3
  558. package/lib/transfer/list-body.js +12 -48
  559. package/lib/transfer/list-item.js +10 -27
  560. package/lib/transfer/list.js +35 -89
  561. package/lib/transfer/operation.js +12 -18
  562. package/lib/transfer/search.js +5 -16
  563. package/lib/transfer/style/css.js +0 -1
  564. package/lib/transfer/style/index.js +0 -1
  565. package/lib/transfer/transfer.js +51 -122
  566. package/lib/tree/index.js +0 -11
  567. package/lib/tree/style/css.js +0 -1
  568. package/lib/tree/style/index.js +0 -1
  569. package/lib/tree/tree.js +95 -196
  570. package/lib/tree/treeHooks.js +18 -64
  571. package/lib/tree/treeNode.js +57 -126
  572. package/lib/tree/utils/treeUtils.js +22 -193
  573. package/lib/typography/base.js +16 -53
  574. package/lib/typography/index.js +2 -8
  575. package/lib/typography/paragraph.js +0 -11
  576. package/lib/typography/style/css.js +0 -1
  577. package/lib/typography/style/index.js +0 -1
  578. package/lib/typography/text.js +0 -6
  579. package/lib/typography/title.js +3 -21
  580. package/lib/typography/typography.js +12 -35
  581. package/lib/upload/dragger.js +3 -21
  582. package/lib/upload/index.js +0 -11
  583. package/lib/upload/request.js +6 -27
  584. package/lib/upload/scan-files.js +2 -15
  585. package/lib/upload/style/css.js +0 -1
  586. package/lib/upload/style/index.js +0 -1
  587. package/lib/upload/upload.js +63 -151
  588. package/lib/upload/utils.js +0 -6
  589. package/lib/upload/verify-file.js +0 -9
  590. package/lib/view-container/context.js +0 -7
  591. package/lib/view-container/index.js +0 -3
  592. package/lib/view-container/view-container.js +7 -21
  593. package/lib/virtual-list/Filler.js +3 -15
  594. package/lib/virtual-list/index.js +0 -9
  595. package/lib/virtual-list/utils/algorithmUtil.js +0 -15
  596. package/lib/virtual-list/utils/itemUtil.js +18 -60
  597. package/lib/virtual-list/virtual-list.js +63 -158
  598. package/package.json +3 -2
@@ -10,37 +10,28 @@ import _includesInstanceProperty from "@babel/runtime-corejs3/core-js-stable/ins
10
10
  import _filterInstanceProperty from "@babel/runtime-corejs3/core-js-stable/instance/filter";
11
11
  import _Array$from from "@babel/runtime-corejs3/core-js-stable/array/from";
12
12
  import _spliceInstanceProperty from "@babel/runtime-corejs3/core-js-stable/instance/splice";
13
-
14
13
  var __rest = this && this.__rest || function (s, e) {
15
14
  var t = {};
16
-
17
- for (var p in s) {
18
- if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0) t[p] = s[p];
19
- }
20
-
15
+ for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0) t[p] = s[p];
21
16
  if (s != null && typeof _Object$getOwnPropertySymbols === "function") for (var i = 0, p = _Object$getOwnPropertySymbols(s); i < p.length; i++) {
22
17
  if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i])) t[p[i]] = s[p[i]];
23
18
  }
24
19
  return t;
25
20
  };
26
-
27
21
  import { useEffect, useState, useMemo } from 'react';
28
22
  import cloneDeep from 'lodash/cloneDeep';
29
23
  export var useChecked = function useChecked(value, flattenData, keysData, isMultiple) {
30
24
  var initialCheckedState = useMemo(function () {
31
25
  return setNodeCheckedByValue(value, flattenData, keysData);
32
26
  }, [value, flattenData, keysData]);
33
-
34
27
  var _useState = useState(initialCheckedState.checkedKeys),
35
- _useState2 = _slicedToArray(_useState, 2),
36
- checkedKeys = _useState2[0],
37
- setCheckedKeys = _useState2[1];
38
-
28
+ _useState2 = _slicedToArray(_useState, 2),
29
+ checkedKeys = _useState2[0],
30
+ setCheckedKeys = _useState2[1];
39
31
  var _useState3 = useState(initialCheckedState.halfCheckedKeys),
40
- _useState4 = _slicedToArray(_useState3, 2),
41
- halfCheckedKeys = _useState4[0],
42
- setHalfCheckedKeys = _useState4[1];
43
-
32
+ _useState4 = _slicedToArray(_useState3, 2),
33
+ halfCheckedKeys = _useState4[0],
34
+ setHalfCheckedKeys = _useState4[1];
44
35
  useEffect(function () {
45
36
  setCheckedKeys(initialCheckedState.checkedKeys);
46
37
  }, [initialCheckedState.checkedKeys]);
@@ -54,24 +45,19 @@ export var flattenAll = function flattenAll(data) {
54
45
  var newTreeData = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : [];
55
46
  var keysData = {};
56
47
  var formatData = cloneDeep(data);
57
-
58
48
  var fn = function fn(data) {
59
49
  var newTreeData = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : [];
60
50
  var parent = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : null;
61
51
  var newParent = cloneDeep(parent);
62
-
63
52
  if (newParent) {
64
53
  newParent.children = null;
65
54
  }
66
-
67
55
  data && data.forEach(function (item) {
68
56
  var _context, _context2;
69
-
70
57
  var children = item.children,
71
- label = item.label,
72
- value = item.value,
73
- others = __rest(item, ["children", "label", "value"]);
74
-
58
+ label = item.label,
59
+ value = item.value,
60
+ others = __rest(item, ["children", "label", "value"]);
75
61
  var flattenNode = _extends({
76
62
  label: label,
77
63
  value: value,
@@ -81,7 +67,6 @@ export var flattenAll = function flattenAll(data) {
81
67
  pathKeys: _concatInstanceProperty(_context = []).call(_context, _toConsumableArray((parent === null || parent === void 0 ? void 0 : parent.pathKeys) || []), [value]),
82
68
  _level: parent ? parent._level + 1 : 0
83
69
  }, others);
84
-
85
70
  item.parent = newParent;
86
71
  item.parentKey = (parent === null || parent === void 0 ? void 0 : parent.value) || null;
87
72
  item.pathKeys = _concatInstanceProperty(_context2 = []).call(_context2, _toConsumableArray((parent === null || parent === void 0 ? void 0 : parent.pathKeys) || []), [value]);
@@ -92,7 +77,6 @@ export var flattenAll = function flattenAll(data) {
92
77
  });
93
78
  return newTreeData;
94
79
  };
95
-
96
80
  var flattenData = fn(formatData, newTreeData);
97
81
  return {
98
82
  formatData: formatData,
@@ -110,48 +94,38 @@ export var isHalfChecked = function isHalfChecked(data) {
110
94
  export var ValueSeparator = '__kdm_cascader__';
111
95
  export var transformValuesToSet = function transformValuesToSet(values) {
112
96
  var _values = values || [];
113
-
114
97
  var valuesSet = _values.reduce(function (set, next) {
115
98
  var _context3;
116
-
117
99
  set.add(_concatInstanceProperty(_context3 = []).call(_context3, next).join(ValueSeparator));
118
100
  return set;
119
101
  }, new _Set());
120
-
121
102
  return valuesSet;
122
103
  };
123
104
  export var valueInSet = function valueInSet(set, value) {
124
105
  var _value = value || [];
125
-
126
106
  return set.has(_value.join(ValueSeparator));
127
107
  };
128
108
  export function getChildNodeKeys(node, keysNodeProps) {
129
109
  var nodes = new _Set();
130
-
131
110
  var loop = function loop(children) {
132
111
  _mapInstanceProperty(children).call(children, function (child) {
133
112
  var key = child.value;
134
113
  if (!key) return;
135
114
  var item = keysNodeProps[key];
136
-
137
115
  if (!item || item.disabled) {
138
116
  return;
139
117
  }
140
-
141
118
  key && nodes.add(key);
142
119
  loop(item.children || []);
143
120
  });
144
121
  };
145
-
146
122
  if (node) {
147
123
  loop(node.children || []);
148
124
  }
149
-
150
125
  return nodes;
151
126
  }
152
127
  export var setNodeCheckedByValue = function setNodeCheckedByValue(initValues, flatNodes, keysNodeProps) {
153
128
  var _context4, _context5;
154
-
155
129
  var valuesSet = transformValuesToSet(initValues);
156
130
  var checkedSet = new _Set();
157
131
  var halfCheckedSet = new _Set();
@@ -163,7 +137,6 @@ export var setNodeCheckedByValue = function setNodeCheckedByValue(initValues, fl
163
137
  checkedSet.add(node.value);
164
138
  }
165
139
  });
166
-
167
140
  _mapInstanceProperty(_context4 = _toConsumableArray(checkedSet)).call(_context4, function (value) {
168
141
  if (!childCheckedKeysSet.has(value)) {
169
142
  var childKeys = getChildNodeKeys(keysNodeProps[value], keysNodeProps);
@@ -171,36 +144,28 @@ export var setNodeCheckedByValue = function setNodeCheckedByValue(initValues, fl
171
144
  childCheckedKeysSet.add(v);
172
145
  });
173
146
  }
174
-
175
147
  updateParent(value, keysNodeProps, checkedSet, halfCheckedSet);
176
148
  });
177
-
178
149
  return {
179
150
  checkedKeys: _toConsumableArray(new _Set(_concatInstanceProperty(_context5 = []).call(_context5, _toConsumableArray(checkedSet), _toConsumableArray(childCheckedKeysSet)))),
180
151
  halfCheckedKeys: _toConsumableArray(halfCheckedSet)
181
152
  };
182
153
  };
183
-
184
154
  var updateParent = function updateParent(key, keysNodeProps, allKeys, halfCheckedKeysSet) {
185
155
  var pathKeys = _toConsumableArray(keysNodeProps[key].pathKeys);
186
-
187
156
  pathKeys.pop();
188
157
  pathKeys.reverse().forEach(function (itemKey) {
189
158
  var parent = keysNodeProps[itemKey];
190
-
191
159
  if (parent && !parent.disabled) {
192
160
  var total = 0;
193
161
  var number = 0;
194
162
  parent.children.some(function (_ref) {
195
163
  var value = _ref.value;
196
164
  var item = keysNodeProps[value];
197
-
198
165
  if (!item || item.disabled) {
199
166
  return false;
200
167
  }
201
-
202
168
  total++;
203
-
204
169
  if (allKeys.has(value)) {
205
170
  number++;
206
171
  } else if (halfCheckedKeysSet.has(value)) {
@@ -208,13 +173,11 @@ var updateParent = function updateParent(key, keysNodeProps, allKeys, halfChecke
208
173
  return true;
209
174
  }
210
175
  });
211
-
212
176
  if (!number || number === total) {
213
177
  halfCheckedKeysSet.delete(itemKey);
214
178
  } else {
215
179
  halfCheckedKeysSet.add(itemKey);
216
180
  }
217
-
218
181
  if (number && number === total) {
219
182
  allKeys.add(itemKey);
220
183
  } else {
@@ -223,30 +186,25 @@ var updateParent = function updateParent(key, keysNodeProps, allKeys, halfChecke
223
186
  }
224
187
  });
225
188
  };
226
-
227
189
  export var getHalfChecked = function getHalfChecked(halfCheckedKeys, key) {
228
190
  return halfCheckedKeys === null || halfCheckedKeys === void 0 ? void 0 : _includesInstanceProperty(halfCheckedKeys).call(halfCheckedKeys, key);
229
191
  };
230
192
  export var getChecked = function getChecked(checkedKeys, key) {
231
193
  return checkedKeys === null || checkedKeys === void 0 ? void 0 : _includesInstanceProperty(checkedKeys).call(checkedKeys, key);
232
194
  };
233
-
234
195
  var getCheckedNodes = function getCheckedNodes(flatNodes, checkedKeys) {
235
196
  return _filterInstanceProperty(flatNodes).call(flatNodes, function (node) {
236
197
  return checkedKeys === null || checkedKeys === void 0 ? void 0 : _includesInstanceProperty(checkedKeys).call(checkedKeys, node.value);
237
198
  });
238
199
  };
239
-
240
200
  export var addKeys = function addKeys() {
241
201
  var _context6;
242
-
243
202
  var prevKeys = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : [];
244
203
  var newKeys = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : [];
245
204
  return _Array$from(new _Set(_concatInstanceProperty(_context6 = []).call(_context6, _toConsumableArray(prevKeys), _toConsumableArray(newKeys))));
246
205
  };
247
206
  export var delKey = function delKey(prevKeys, delKeys) {
248
207
  var keys = _extends([], prevKeys);
249
-
250
208
  delKeys.forEach(function (item) {
251
209
  var index = keys.indexOf(item);
252
210
  index > -1 && _spliceInstanceProperty(keys).call(keys, index, 1);
@@ -255,15 +213,12 @@ export var delKey = function delKey(prevKeys, delKeys) {
255
213
  };
256
214
  export var getMultipleCheckValue = function getMultipleCheckValue(_propsValue, _option, _checked, flatNodes, checkedKeys) {
257
215
  var _context7;
258
-
259
216
  var checkedNodes = getCheckedNodes(flatNodes, checkedKeys);
260
-
261
217
  var currentValue = _filterInstanceProperty(_context7 = _mapInstanceProperty(checkedNodes).call(checkedNodes, function (node) {
262
218
  return !node.children && node.pathKeys;
263
219
  })).call(_context7, function (node) {
264
220
  return node;
265
221
  });
266
-
267
222
  return currentValue;
268
223
  };
269
224
  export function getAllCheckedKeys(key, checked, checkedKeys, keysNodeProps, halfCheckedKeys) {
@@ -273,12 +228,10 @@ export function getAllCheckedKeys(key, checked, checkedKeys, keysNodeProps, half
273
228
  halfCheckedKeys: halfCheckedKeys
274
229
  };
275
230
  }
276
-
277
231
  var checkedKeysSet = new _Set(checkedKeys);
278
232
  var halfCheckedKeysSet = new _Set(halfCheckedKeys);
279
233
  var childKeys = getChildNodeKeys(keysNodeProps[key], keysNodeProps);
280
234
  var allKeys = checkedKeysSet;
281
-
282
235
  if (checked) {
283
236
  allKeys.add(key);
284
237
  halfCheckedKeysSet.delete(key);
@@ -292,7 +245,6 @@ export function getAllCheckedKeys(key, checked, checkedKeys, keysNodeProps, half
292
245
  allKeys.delete(v);
293
246
  });
294
247
  }
295
-
296
248
  updateParent(key, keysNodeProps, checkedKeysSet, halfCheckedKeysSet);
297
249
  return {
298
250
  checkedKeys: _toConsumableArray(allKeys),
@@ -3,20 +3,14 @@ import _defineProperty from "@babel/runtime-corejs3/helpers/defineProperty";
3
3
  import _slicedToArray from "@babel/runtime-corejs3/helpers/slicedToArray";
4
4
  import _Object$getOwnPropertySymbols from "@babel/runtime-corejs3/core-js-stable/object/get-own-property-symbols";
5
5
  import _concatInstanceProperty from "@babel/runtime-corejs3/core-js-stable/instance/concat";
6
-
7
6
  var __rest = this && this.__rest || function (s, e) {
8
7
  var t = {};
9
-
10
- for (var p in s) {
11
- if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0) t[p] = s[p];
12
- }
13
-
8
+ for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0) t[p] = s[p];
14
9
  if (s != null && typeof _Object$getOwnPropertySymbols === "function") for (var i = 0, p = _Object$getOwnPropertySymbols(s); i < p.length; i++) {
15
10
  if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i])) t[p[i]] = s[p[i]];
16
11
  }
17
12
  return t;
18
13
  };
19
-
20
14
  import React, { useCallback, useContext, useEffect, useState, useRef } from 'react';
21
15
  import classNames from 'classnames';
22
16
  import { GroupContext, CheckboxTypes, CheckboxSizes } from './group';
@@ -25,43 +19,36 @@ import { getCompProps } from '../_utils';
25
19
  import isBoolean from 'lodash/isBoolean';
26
20
  import Icon from '../icon';
27
21
  import devWarning from '../_utils/devwarning';
28
-
29
22
  var InternalCheckbox = function InternalCheckbox(props, ref) {
30
23
  var _context, _context2, _context3, _classNames, _context4, _context5, _context6, _classNames2, _context7, _context8, _context9, _context10, _context11, _context12, _context13, _context14, _classNames4, _context15, _context16, _context17, _classNames5, _context18;
31
-
32
24
  var _useContext = useContext(ConfigContext),
33
- getPrefixCls = _useContext.getPrefixCls,
34
- prefixCls = _useContext.prefixCls,
35
- userDefaultProps = _useContext.compDefaultProps;
36
-
25
+ getPrefixCls = _useContext.getPrefixCls,
26
+ prefixCls = _useContext.prefixCls,
27
+ userDefaultProps = _useContext.compDefaultProps;
37
28
  var CheckboxProps = getCompProps('Checkbox', userDefaultProps, props);
38
-
39
29
  var checkboxType = CheckboxProps.checkboxType,
40
- className = CheckboxProps.className,
41
- customPrefixcls = CheckboxProps.prefixCls,
42
- defaultChecked = CheckboxProps.defaultChecked,
43
- checked = CheckboxProps.checked,
44
- size = CheckboxProps.size,
45
- onChange = CheckboxProps.onChange,
46
- disabled = CheckboxProps.disabled,
47
- children = CheckboxProps.children,
48
- style = CheckboxProps.style,
49
- value = CheckboxProps.value,
50
- indeterminate = CheckboxProps.indeterminate,
51
- name = CheckboxProps.name,
52
- rest = __rest(CheckboxProps, ["checkboxType", "className", "prefixCls", "defaultChecked", "checked", "size", "onChange", "disabled", "children", "style", "value", "indeterminate", "name"]);
53
-
30
+ className = CheckboxProps.className,
31
+ customPrefixcls = CheckboxProps.prefixCls,
32
+ defaultChecked = CheckboxProps.defaultChecked,
33
+ checked = CheckboxProps.checked,
34
+ size = CheckboxProps.size,
35
+ onChange = CheckboxProps.onChange,
36
+ disabled = CheckboxProps.disabled,
37
+ children = CheckboxProps.children,
38
+ style = CheckboxProps.style,
39
+ value = CheckboxProps.value,
40
+ indeterminate = CheckboxProps.indeterminate,
41
+ name = CheckboxProps.name,
42
+ rest = __rest(CheckboxProps, ["checkboxType", "className", "prefixCls", "defaultChecked", "checked", "size", "onChange", "disabled", "children", "style", "value", "indeterminate", "name"]);
54
43
  var checkboxGroup = React.useContext(GroupContext);
55
44
  var mergedDisabled = (checkboxGroup === null || checkboxGroup === void 0 ? void 0 : checkboxGroup.disabled) || disabled;
56
45
  var mergedCheckboxType = (checkboxGroup === null || checkboxGroup === void 0 ? void 0 : checkboxGroup.checkboxType) || checkboxType;
57
46
  var mergedName = (checkboxGroup === null || checkboxGroup === void 0 ? void 0 : checkboxGroup.name) || name;
58
47
  var initChecked = (checkboxGroup === null || checkboxGroup === void 0 ? void 0 : checkboxGroup.groupValue) ? (checkboxGroup === null || checkboxGroup === void 0 ? void 0 : checkboxGroup.groupValue.indexOf(value)) > -1 : isBoolean(checked) ? checked : defaultChecked;
59
-
60
48
  var _useState = useState(initChecked),
61
- _useState2 = _slicedToArray(_useState, 2),
62
- selected = _useState2[0],
63
- setSelected = _useState2[1];
64
-
49
+ _useState2 = _slicedToArray(_useState, 2),
50
+ selected = _useState2[0],
51
+ setSelected = _useState2[1];
65
52
  var labelRef = useRef(null);
66
53
  React.useEffect(function () {
67
54
  setSelected((checkboxGroup === null || checkboxGroup === void 0 ? void 0 : checkboxGroup.groupValue) ? (checkboxGroup === null || checkboxGroup === void 0 ? void 0 : checkboxGroup.groupValue.indexOf(value)) > -1 : isBoolean(checked) ? checked : defaultChecked);
@@ -69,15 +56,12 @@ var InternalCheckbox = function InternalCheckbox(props, ref) {
69
56
  devWarning(CheckboxTypes.indexOf(mergedCheckboxType) === -1, 'checkbox', "cannot found checkbox type '".concat(mergedCheckboxType, "'"));
70
57
  devWarning(CheckboxSizes.indexOf(size) === -1, 'checkbox', "cannot found size type '".concat(size, "'"));
71
58
  var checkboxPrefixCls = getPrefixCls(prefixCls, 'checkbox', customPrefixcls);
72
-
73
59
  var isDefaultType = function isDefaultType() {
74
60
  return mergedCheckboxType === 'default';
75
61
  };
76
-
77
62
  var getIndeterminate = function getIndeterminate() {
78
63
  return selected ? false : indeterminate;
79
64
  };
80
-
81
65
  var getDefaultClassName = classNames(className, (_classNames = {}, _defineProperty(_classNames, "".concat(checkboxPrefixCls), true), _defineProperty(_classNames, "".concat(checkboxPrefixCls, "-no-child"), !children), _defineProperty(_classNames, _concatInstanceProperty(_context = "".concat(checkboxPrefixCls, "-")).call(_context, size), true && !!children), _defineProperty(_classNames, _concatInstanceProperty(_context2 = "".concat(checkboxPrefixCls, "-")).call(_context2, mergedCheckboxType), true), _defineProperty(_classNames, _concatInstanceProperty(_context3 = "".concat(checkboxPrefixCls, "-")).call(_context3, mergedCheckboxType, "-disabled"), mergedDisabled), _defineProperty(_classNames, "checked", selected), _classNames));
82
66
  var getSquareClassName = classNames(className, (_classNames2 = {}, _defineProperty(_classNames2, "".concat(checkboxPrefixCls), true), _defineProperty(_classNames2, _concatInstanceProperty(_context4 = "".concat(checkboxPrefixCls, "-")).call(_context4, mergedCheckboxType), true), _defineProperty(_classNames2, _concatInstanceProperty(_context5 = "".concat(checkboxPrefixCls, "-")).call(_context5, mergedCheckboxType, "-disabled"), mergedDisabled), _defineProperty(_classNames2, _concatInstanceProperty(_context6 = "".concat(checkboxPrefixCls, "-")).call(_context6, mergedCheckboxType, "-checked"), selected && !mergedDisabled), _defineProperty(_classNames2, "checked", selected), _classNames2));
83
67
  var getRootClassName = isDefaultType() ? getDefaultClassName : getSquareClassName;
@@ -88,7 +72,6 @@ var InternalCheckbox = function InternalCheckbox(props, ref) {
88
72
  var handleChange = useCallback(function (e) {
89
73
  onChange && onChange(e);
90
74
  (checkboxGroup === null || checkboxGroup === void 0 ? void 0 : checkboxGroup.onCheckboxGroupChange) && (checkboxGroup === null || checkboxGroup === void 0 ? void 0 : checkboxGroup.onCheckboxGroupChange(value, e.target.checked, e));
91
-
92
75
  if (!(checkboxGroup === null || checkboxGroup === void 0 ? void 0 : checkboxGroup.isControlled)) {
93
76
  setSelected(e.target.checked);
94
77
  }
@@ -98,27 +81,21 @@ var InternalCheckbox = function InternalCheckbox(props, ref) {
98
81
  }, [checked, selected]);
99
82
  useEffect(function () {
100
83
  var _a;
101
-
102
84
  var handleRepeatClick = function handleRepeatClick(e) {
103
85
  var element = e.target;
104
-
105
86
  if (element.tagName !== 'INPUT') {
106
87
  e.stopPropagation();
107
88
  }
108
89
  };
109
-
110
90
  (_a = labelRef === null || labelRef === void 0 ? void 0 : labelRef.current) === null || _a === void 0 ? void 0 : _a.addEventListener('click', handleRepeatClick);
111
91
  return function () {
112
- var _a; // eslint-disable-next-line react-hooks/exhaustive-deps
113
-
114
-
92
+ var _a;
93
+ // eslint-disable-next-line react-hooks/exhaustive-deps
115
94
  (_a = labelRef === null || labelRef === void 0 ? void 0 : labelRef.current) === null || _a === void 0 ? void 0 : _a.removeEventListener('click', handleRepeatClick);
116
95
  };
117
96
  }, []);
118
-
119
97
  var getDefaultCheckbox = function getDefaultCheckbox() {
120
98
  var _context19, _context20;
121
-
122
99
  return (
123
100
  /*#__PURE__*/
124
101
  // eslint-disable-next-line
@@ -154,10 +131,8 @@ var InternalCheckbox = function InternalCheckbox(props, ref) {
154
131
  }))))
155
132
  );
156
133
  };
157
-
158
134
  return getDefaultCheckbox();
159
135
  };
160
-
161
136
  var Checkbox = /*#__PURE__*/React.forwardRef(InternalCheckbox);
162
137
  Checkbox.displayName = 'Checkbox';
163
138
  export default Checkbox;
@@ -2,8 +2,8 @@ import _slicedToArray from "@babel/runtime-corejs3/helpers/slicedToArray";
2
2
  import _filterInstanceProperty from "@babel/runtime-corejs3/core-js-stable/instance/filter";
3
3
  import _concatInstanceProperty from "@babel/runtime-corejs3/core-js-stable/instance/concat";
4
4
  import _mapInstanceProperty from "@babel/runtime-corejs3/core-js-stable/instance/map";
5
- import React, { useContext } from 'react'; // import { Icon } from '../index'
6
-
5
+ import React, { useContext } from 'react';
6
+ // import { Icon } from '../index'
7
7
  import classnames from 'classnames';
8
8
  import ConfigContext from '../config-provider/ConfigContext';
9
9
  import { getCompProps } from '../_utils';
@@ -17,31 +17,27 @@ export var GroupContext = /*#__PURE__*/React.createContext(null);
17
17
  var CheckboxGroup = /*#__PURE__*/React.forwardRef(function (props, ref) {
18
18
  // const CheckboxGroup = (props: CheckboxGroupProps): FunctionComponentElement<CheckboxGroupProps> => {
19
19
  var _useContext = useContext(ConfigContext),
20
- getPrefixCls = _useContext.getPrefixCls,
21
- prefixCls = _useContext.prefixCls,
22
- userDefaultProps = _useContext.compDefaultProps;
23
-
20
+ getPrefixCls = _useContext.getPrefixCls,
21
+ prefixCls = _useContext.prefixCls,
22
+ userDefaultProps = _useContext.compDefaultProps;
24
23
  var CheckboxProps = getCompProps('Checkbox', userDefaultProps, props); // 按钮属性需要合并一遍用户定义的默认属性
25
-
26
24
  var checkboxType = CheckboxProps.checkboxType,
27
- className = CheckboxProps.className,
28
- style = CheckboxProps.style,
29
- customPrefixcls = CheckboxProps.prefixCls,
30
- options = CheckboxProps.options,
31
- size = CheckboxProps.size,
32
- onChange = CheckboxProps.onChange,
33
- disabled = CheckboxProps.disabled,
34
- children = CheckboxProps.children,
35
- defaultValue = CheckboxProps.defaultValue,
36
- value = CheckboxProps.value,
37
- name = CheckboxProps.name;
25
+ className = CheckboxProps.className,
26
+ style = CheckboxProps.style,
27
+ customPrefixcls = CheckboxProps.prefixCls,
28
+ options = CheckboxProps.options,
29
+ size = CheckboxProps.size,
30
+ onChange = CheckboxProps.onChange,
31
+ disabled = CheckboxProps.disabled,
32
+ children = CheckboxProps.children,
33
+ defaultValue = CheckboxProps.defaultValue,
34
+ value = CheckboxProps.value,
35
+ name = CheckboxProps.name;
38
36
  var initData = value || (Array.isArray(defaultValue) ? defaultValue : typeof defaultValue !== 'undefined' ? [defaultValue] : []);
39
-
40
37
  var _React$useState = React.useState([]),
41
- _React$useState2 = _slicedToArray(_React$useState, 2),
42
- groupValue = _React$useState2[0],
43
- setGroupValue = _React$useState2[1];
44
-
38
+ _React$useState2 = _slicedToArray(_React$useState, 2),
39
+ groupValue = _React$useState2[0],
40
+ setGroupValue = _React$useState2[1];
45
41
  var innerValue = React.useRef(initData);
46
42
  React.useEffect(function () {
47
43
  innerValue.current = value || (Array.isArray(defaultValue) ? defaultValue : typeof defaultValue !== 'undefined' ? [defaultValue] : []);
@@ -49,39 +45,29 @@ var CheckboxGroup = /*#__PURE__*/React.forwardRef(function (props, ref) {
49
45
  }, [value, defaultValue]);
50
46
  var isControlled = typeof value !== 'undefined';
51
47
  var checkboxGroupPrefixCls = getPrefixCls(prefixCls, 'checkbox-group', customPrefixcls); // 按钮样式前缀
52
-
53
48
  devWarning(isArrayValueRepeat(groupValue), 'checkboxGroup', "variable value's value should be unique ");
54
-
55
49
  var getReduceItem = function getReduceItem(targetValue) {
56
50
  var _context;
57
-
58
51
  return _filterInstanceProperty(_context = innerValue.current).call(_context, function (d) {
59
52
  return d !== targetValue;
60
53
  });
61
54
  };
62
-
63
55
  var getAddItem = function getAddItem(targetValue) {
64
56
  var _context2;
65
-
66
57
  return innerValue.current.indexOf(targetValue) > -1 ? innerValue.current : _concatInstanceProperty(_context2 = innerValue.current).call(_context2, targetValue);
67
58
  };
68
-
69
59
  var onCheckboxChange = function onCheckboxChange(checkedValue, isChecked, e) {
70
60
  var newVal = [];
71
-
72
61
  if (isChecked) {
73
62
  newVal = getAddItem(checkedValue);
74
63
  } else {
75
64
  newVal = getReduceItem(checkedValue);
76
65
  }
77
-
78
66
  if (!isControlled) {
79
67
  innerValue.current = newVal;
80
68
  }
81
-
82
69
  onChange && onChange(newVal, e);
83
70
  };
84
-
85
71
  var context = {
86
72
  groupValue: groupValue,
87
73
  disabled: disabled,
@@ -92,7 +78,6 @@ var CheckboxGroup = /*#__PURE__*/React.forwardRef(function (props, ref) {
92
78
  onCheckboxChange(checkedValue, isChecked, e);
93
79
  }
94
80
  };
95
-
96
81
  var renderByOptions = function renderByOptions() {
97
82
  return _mapInstanceProperty(options).call(options, function (option, index) {
98
83
  return /*#__PURE__*/React.createElement(Checkbox, {
@@ -108,7 +93,6 @@ var CheckboxGroup = /*#__PURE__*/React.forwardRef(function (props, ref) {
108
93
  }, option.label || option);
109
94
  });
110
95
  };
111
-
112
96
  return /*#__PURE__*/React.createElement("ul", {
113
97
  className: classnames(checkboxGroupPrefixCls, className),
114
98
  style: style,
@@ -307,6 +307,8 @@
307
307
  box-sizing: border-box;
308
308
  -webkit-transition: color var(--kd-c-checkbox-motion-duration, var(--kd-g-duration, 0.3s)), border-color var(--kd-c-checkbox-motion-duration, var(--kd-g-duration, 0.3s));
309
309
  transition: color var(--kd-c-checkbox-motion-duration, var(--kd-g-duration, 0.3s)), border-color var(--kd-c-checkbox-motion-duration, var(--kd-g-duration, 0.3s));
310
+ -ms-flex-negative: 0;
311
+ flex-shrink: 0;
310
312
  }
311
313
  .kd-checkbox-default-wrapper:not(.kd-checkbox-default-wrapper-disabled)::after {
312
314
  content: '';
@@ -176,6 +176,7 @@
176
176
  border-radius: @checkbox-default-input-border-radius;
177
177
  box-sizing: border-box;
178
178
  transition: color @checkbox-transition-duration, border-color @checkbox-transition-duration;
179
+ flex-shrink: 0;
179
180
  &:not(&-disabled)::after {
180
181
  content: '';
181
182
  position: absolute;
@@ -3,37 +3,30 @@ import _concatInstanceProperty from "@babel/runtime-corejs3/core-js-stable/insta
3
3
  import React, { useContext } from 'react';
4
4
  import classNames from 'classnames';
5
5
  import ConfigContext from '../config-provider/ConfigContext';
6
-
7
6
  var CityGroup = function CityGroup(props) {
8
7
  var _useContext = useContext(ConfigContext),
9
- getPrefixCls = _useContext.getPrefixCls,
10
- prefixCls = _useContext.prefixCls;
11
-
8
+ getPrefixCls = _useContext.getPrefixCls,
9
+ prefixCls = _useContext.prefixCls;
12
10
  var groups = props.groups,
13
- _props$activedIndex = props.activedIndex,
14
- current = _props$activedIndex === void 0 ? 0 : _props$activedIndex,
15
- changeIndex = props.changeIndex;
11
+ _props$activedIndex = props.activedIndex,
12
+ current = _props$activedIndex === void 0 ? 0 : _props$activedIndex,
13
+ changeIndex = props.changeIndex;
16
14
  var cityPickerPrefixCls = getPrefixCls(prefixCls, 'city-picker');
17
15
  var containerCls = classNames("".concat(cityPickerPrefixCls, "-group-container"));
18
-
19
16
  var handleClick = function handleClick(groupIndex) {
20
17
  changeIndex && changeIndex(groupIndex);
21
18
  };
22
-
23
19
  return /*#__PURE__*/React.createElement("div", {
24
20
  className: containerCls
25
21
  }, _mapInstanceProperty(groups).call(groups, function (item, index) {
26
22
  var _context;
27
-
28
23
  var itemCls = classNames("".concat(cityPickerPrefixCls, "-group-item"), {
29
24
  active: current === index,
30
25
  last: index === groups.length - 1
31
26
  });
32
-
33
27
  var handleTitleClick = function handleTitleClick() {
34
28
  handleClick(index);
35
29
  };
36
-
37
30
  return /*#__PURE__*/React.createElement("div", {
38
31
  className: itemCls,
39
32
  title: item,
@@ -42,5 +35,4 @@ var CityGroup = function CityGroup(props) {
42
35
  }, item);
43
36
  }));
44
37
  };
45
-
46
38
  export default CityGroup;
@@ -4,15 +4,13 @@ import classNames from 'classnames';
4
4
  import ConfigContext from '../config-provider/ConfigContext';
5
5
  import CityPanelItem from './city-panel-item';
6
6
  import NoData from './no-data';
7
-
8
7
  var CityList = function CityList(props) {
9
8
  var _useContext = useContext(ConfigContext),
10
- getPrefixCls = _useContext.getPrefixCls,
11
- prefixCls = _useContext.prefixCls;
12
-
9
+ getPrefixCls = _useContext.getPrefixCls,
10
+ prefixCls = _useContext.prefixCls;
13
11
  var groupKeys = props.groupKeys,
14
- cityList = props.cityList,
15
- handleSelect = props.onSelect;
12
+ cityList = props.cityList,
13
+ handleSelect = props.onSelect;
16
14
  var cityPickerPrefixCls = getPrefixCls(prefixCls, 'city-picker');
17
15
  var tableCls = classNames("".concat(cityPickerPrefixCls, "-city-table"));
18
16
  var tableGroupCls = classNames("".concat(cityPickerPrefixCls, "-city-table-group"));
@@ -21,13 +19,11 @@ var CityList = function CityList(props) {
21
19
  var hasData = cityList && cityList.some(function (citys) {
22
20
  return citys.length > 0;
23
21
  });
24
-
25
22
  if (!hasData) {
26
23
  return /*#__PURE__*/React.createElement("div", {
27
24
  className: tableCls
28
25
  }, /*#__PURE__*/React.createElement(NoData, null));
29
26
  }
30
-
31
27
  return /*#__PURE__*/React.createElement("div", {
32
28
  className: tableCls
33
29
  }, groupKeys && groupKeys.length > 0 && _mapInstanceProperty(groupKeys).call(groupKeys, function (key, index) {
@@ -56,5 +52,4 @@ var CityList = function CityList(props) {
56
52
  });
57
53
  }));
58
54
  };
59
-
60
55
  export default CityList;
@@ -1,21 +1,17 @@
1
1
  import React, { useContext } from 'react';
2
2
  import classNames from 'classnames';
3
3
  import ConfigContext from '../config-provider/ConfigContext';
4
-
5
4
  var CityPanelItem = function CityPanelItem(props) {
6
5
  var _useContext = useContext(ConfigContext),
7
- getPrefixCls = _useContext.getPrefixCls,
8
- prefixCls = _useContext.prefixCls;
9
-
6
+ getPrefixCls = _useContext.getPrefixCls,
7
+ prefixCls = _useContext.prefixCls;
10
8
  var city = props.city,
11
- onSelect = props.onSelect;
9
+ onSelect = props.onSelect;
12
10
  var cityPickerPrefixCls = getPrefixCls(prefixCls, 'city-picker');
13
11
  var cls = classNames("".concat(cityPickerPrefixCls, "-city-table-cell"));
14
-
15
12
  var handleCitySelect = function handleCitySelect() {
16
13
  onSelect === null || onSelect === void 0 ? void 0 : onSelect(city);
17
14
  };
18
-
19
15
  return /*#__PURE__*/React.createElement("div", {
20
16
  className: cls,
21
17
  key: city.id,
@@ -23,5 +19,4 @@ var CityPanelItem = function CityPanelItem(props) {
23
19
  onClick: handleCitySelect
24
20
  }, city.name);
25
21
  };
26
-
27
22
  export default CityPanelItem;