rsuite 4.9.2 → 4.10.1

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 (45) hide show
  1. package/CHANGELOG.md +48 -17
  2. package/dist/rsuite.js +1568 -299
  3. package/dist/rsuite.min.js +2 -2
  4. package/dist/rsuite.min.js.map +1 -1
  5. package/dist/styles/rsuite-dark-rtl.css +2 -1
  6. package/dist/styles/rsuite-dark-rtl.min.css +1 -1
  7. package/dist/styles/rsuite-dark-rtl.min.css.map +1 -1
  8. package/dist/styles/rsuite-dark.css +2 -1
  9. package/dist/styles/rsuite-dark.min.css +1 -1
  10. package/dist/styles/rsuite-dark.min.css.map +1 -1
  11. package/dist/styles/rsuite-default-rtl.css +2 -1
  12. package/dist/styles/rsuite-default-rtl.min.css +1 -1
  13. package/dist/styles/rsuite-default-rtl.min.css.map +1 -1
  14. package/dist/styles/rsuite-default.css +2 -1
  15. package/dist/styles/rsuite-default.min.css +1 -1
  16. package/dist/styles/rsuite-default.min.css.map +1 -1
  17. package/es/MultiCascader/DropdownMenu.js +1 -1
  18. package/es/MultiCascader/MultiCascader.d.ts +8 -0
  19. package/es/MultiCascader/MultiCascader.js +6 -3
  20. package/es/Nav/Nav.js +5 -4
  21. package/es/Overlay/OverlayTrigger.d.ts +1 -1
  22. package/es/Overlay/OverlayTrigger.js +12 -1
  23. package/es/Table/styles/common.less +2 -1
  24. package/es/Uploader/Uploader.js +2 -0
  25. package/lib/MultiCascader/DropdownMenu.js +1 -1
  26. package/lib/MultiCascader/MultiCascader.d.ts +8 -0
  27. package/lib/MultiCascader/MultiCascader.js +6 -3
  28. package/lib/Nav/Nav.js +4 -3
  29. package/lib/Overlay/OverlayTrigger.d.ts +1 -1
  30. package/lib/Overlay/OverlayTrigger.js +12 -1
  31. package/lib/Table/styles/common.less +2 -1
  32. package/lib/Uploader/Uploader.js +2 -0
  33. package/package.json +2 -2
  34. package/src/MultiCascader/DropdownMenu.tsx +1 -1
  35. package/src/MultiCascader/MultiCascader.d.ts +8 -0
  36. package/src/MultiCascader/MultiCascader.tsx +4 -2
  37. package/src/MultiCascader/test/DropdownMenuSpec.js +17 -0
  38. package/src/MultiCascader/test/MultiCascaderSpec.js +14 -1
  39. package/src/Nav/Nav.tsx +10 -4
  40. package/src/Nav/test/NavSpec.js +35 -0
  41. package/src/Overlay/OverlayTrigger.d.ts +1 -1
  42. package/src/Overlay/OverlayTrigger.tsx +22 -1
  43. package/src/Overlay/test/OverlayTriggerSpec.js +155 -0
  44. package/src/Table/styles/common.less +2 -1
  45. package/src/Uploader/Uploader.tsx +1 -0
package/CHANGELOG.md CHANGED
@@ -1,43 +1,74 @@
1
- <a name="4.9.2"></a>
2
- ## [4.9.2](https://github.com/rsuite/rsuite/compare/4.9.1...4.9.2) (2021-02-24)
1
+ <a name="4.10.1"></a>
2
+
3
+ ## [4.10.1](https://github.com/rsuite/rsuite/compare/4.10.0...4.10.1) (2021-05-13)
4
+
5
+ ### Features
6
+
7
+ - feat: Added menuContext support to `<Popover>` and `<Tooltips>`
8
+
9
+ ### Dependencies
10
+
11
+ - build(deps): bump rsuite-table from 3.14.6 to 3.15.1
3
12
 
13
+ <a name="4.10.0"></a>
14
+
15
+ # [4.10.0](https://github.com/rsuite/rsuite/compare/4.9.4...4.10.0) (2021-05-08)
4
16
 
5
17
  ### Bug Fixes
6
18
 
7
- * **inputpicker:** fix can’t click option on InputPicker ([#1529](https://github.com/rsuite/rsuite/issues/1529)) ([4c2bc6f](https://github.com/rsuite/rsuite/commit/4c2bc6f))
19
+ - **multi-cascader:** the value of event in onSelect is incorrect ([502be2e](https://github.com/rsuite/rsuite/commit/502be2e))
20
+ - **table:** fix long strings in table cells were incorrectly truncated ([#1647](https://github.com/rsuite/rsuite/issues/1647)) ([926111e](https://github.com/rsuite/rsuite/commit/926111e))
8
21
 
22
+ ### Features
9
23
 
24
+ - **multi-cascader:** support `onCheck` on `MultiCascader` ([#1646](https://github.com/rsuite/rsuite/issues/1646)) ([e19cd47](https://github.com/rsuite/rsuite/commit/e19cd47))
10
25
 
11
- <a name="4.9.1"></a>
12
- ## [4.9.1](https://github.com/rsuite/rsuite/compare/4.9.0...4.9.1) (2021-02-24)
26
+ ## 4.9.4
13
27
 
28
+ - build(deps): bump rsuite-table from 3.14.4 to 3.14.6
29
+
30
+ <a name="4.9.3"></a>
31
+
32
+ ## [4.9.3](https://github.com/rsuite/rsuite/compare/4.9.2...4.9.3) (2021-03-11)
14
33
 
15
34
  ### Bug Fixes
16
35
 
17
- * **tagpicker:** fix the input does not work when focused by keyboard ([#1525](https://github.com/rsuite/rsuite/issues/1525)) ([f5805c0](https://github.com/rsuite/rsuite/commit/f5805c0))
36
+ - **nav:** fix `onSelect` not working on Nav.Item ([#1561](https://github.com/rsuite/rsuite/issues/1561)) ([9b6bb9f](https://github.com/rsuite/rsuite/commit/9b6bb9f))
37
+ - **uploader:** fixed Uploader unable to upload removed files ([#1548](https://github.com/rsuite/rsuite/issues/1548)) ([69d32d1](https://github.com/rsuite/rsuite/commit/69d32d1))
18
38
 
39
+ <a name="4.9.2"></a>
19
40
 
41
+ ## [4.9.2](https://github.com/rsuite/rsuite/compare/4.9.1...4.9.2) (2021-02-24)
20
42
 
21
- <a name="4.9.0"></a>
22
- # [4.9.0](https://github.com/rsuite/rsuite/compare/4.8.9...4.9.0) (2021-02-24)
43
+ ### Bug Fixes
44
+
45
+ - **inputpicker:** fix can’t click option on InputPicker ([#1529](https://github.com/rsuite/rsuite/issues/1529)) ([4c2bc6f](https://github.com/rsuite/rsuite/commit/4c2bc6f))
46
+
47
+ <a name="4.9.1"></a>
23
48
 
49
+ ## [4.9.1](https://github.com/rsuite/rsuite/compare/4.9.0...4.9.1) (2021-02-24)
24
50
 
25
51
  ### Bug Fixes
26
52
 
27
- * **footer:** use footer tag for Footer ([#1490](https://github.com/rsuite/rsuite/issues/1490)) ([296df45](https://github.com/rsuite/rsuite/commit/296df45))
28
- * **inputpicker:** fix the input does not work when focused by keyboard ([#1520](https://github.com/rsuite/rsuite/issues/1520)) ([476d5c7](https://github.com/rsuite/rsuite/commit/476d5c7)), closes [#1487](https://github.com/rsuite/rsuite/issues/1487)
29
- * **inputpicker:** inputPicker should clear search keywords when closed ([#1522](https://github.com/rsuite/rsuite/issues/1522)) ([d9108ea](https://github.com/rsuite/rsuite/commit/d9108ea))
30
- * **pickers:** picker should not be interactive during animation exit ([#1521](https://github.com/rsuite/rsuite/issues/1521)) ([e201e78](https://github.com/rsuite/rsuite/commit/e201e78)), closes [#1491](https://github.com/rsuite/rsuite/issues/1491)
31
- * **rangeslider:** fix RangeSlider style problem ([#1519](https://github.com/rsuite/rsuite/issues/1519)) ([a422b7d](https://github.com/rsuite/rsuite/commit/a422b7d)), closes [#1485](https://github.com/rsuite/rsuite/issues/1485)
32
- * **rtl:** fixed the docs not work when using `rtl` ([#1503](https://github.com/rsuite/rsuite/issues/1503)) ([9c132a9](https://github.com/rsuite/rsuite/commit/9c132a9))
53
+ - **tagpicker:** fix the input does not work when focused by keyboard ([#1525](https://github.com/rsuite/rsuite/issues/1525)) ([f5805c0](https://github.com/rsuite/rsuite/commit/f5805c0))
33
54
 
55
+ <a name="4.9.0"></a>
34
56
 
35
- ### Features
57
+ # [4.9.0](https://github.com/rsuite/rsuite/compare/4.8.9...4.9.0) (2021-02-24)
36
58
 
37
- * **uploader:** support file async check on Uploader ([#1489](https://github.com/rsuite/rsuite/issues/1489)) ([25f5b3a](https://github.com/rsuite/rsuite/commit/25f5b3a))
38
- * **whisper:** support `onClose` on the `speaker` prop of Whisper ([#1523](https://github.com/rsuite/rsuite/issues/1523)) ([5b25e3f](https://github.com/rsuite/rsuite/commit/5b25e3f)), closes [#1458](https://github.com/rsuite/rsuite/issues/1458)
59
+ ### Bug Fixes
60
+
61
+ - **footer:** use footer tag for Footer ([#1490](https://github.com/rsuite/rsuite/issues/1490)) ([296df45](https://github.com/rsuite/rsuite/commit/296df45))
62
+ - **inputpicker:** fix the input does not work when focused by keyboard ([#1520](https://github.com/rsuite/rsuite/issues/1520)) ([476d5c7](https://github.com/rsuite/rsuite/commit/476d5c7)), closes [#1487](https://github.com/rsuite/rsuite/issues/1487)
63
+ - **inputpicker:** inputPicker should clear search keywords when closed ([#1522](https://github.com/rsuite/rsuite/issues/1522)) ([d9108ea](https://github.com/rsuite/rsuite/commit/d9108ea))
64
+ - **pickers:** picker should not be interactive during animation exit ([#1521](https://github.com/rsuite/rsuite/issues/1521)) ([e201e78](https://github.com/rsuite/rsuite/commit/e201e78)), closes [#1491](https://github.com/rsuite/rsuite/issues/1491)
65
+ - **rangeslider:** fix RangeSlider style problem ([#1519](https://github.com/rsuite/rsuite/issues/1519)) ([a422b7d](https://github.com/rsuite/rsuite/commit/a422b7d)), closes [#1485](https://github.com/rsuite/rsuite/issues/1485)
66
+ - **rtl:** fixed the docs not work when using `rtl` ([#1503](https://github.com/rsuite/rsuite/issues/1503)) ([9c132a9](https://github.com/rsuite/rsuite/commit/9c132a9))
39
67
 
68
+ ### Features
40
69
 
70
+ - **uploader:** support file async check on Uploader ([#1489](https://github.com/rsuite/rsuite/issues/1489)) ([25f5b3a](https://github.com/rsuite/rsuite/commit/25f5b3a))
71
+ - **whisper:** support `onClose` on the `speaker` prop of Whisper ([#1523](https://github.com/rsuite/rsuite/issues/1523)) ([5b25e3f](https://github.com/rsuite/rsuite/commit/5b25e3f)), closes [#1458](https://github.com/rsuite/rsuite/issues/1458)
41
72
 
42
73
  <a name="4.8.9"></a>
43
74