rsuite 4.10.3 → 4.10.7
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.
- package/CHANGELOG.md +42 -0
- package/dist/rsuite.js +30 -6
- package/dist/rsuite.min.js +10 -2
- package/dist/rsuite.min.js.map +1 -1
- package/es/Cascader/Cascader.js +8 -4
- package/es/InputNumber/InputNumber.js +11 -0
- package/es/Modal/BaseModal.js +24 -4
- package/es/Modal/ModalDialog.js +1 -0
- package/es/Slider/Slider.d.ts +4 -11
- package/es/Uploader/Uploader.js +1 -1
- package/lib/Cascader/Cascader.js +8 -4
- package/lib/InputNumber/InputNumber.js +11 -0
- package/lib/Modal/BaseModal.js +24 -4
- package/lib/Modal/ModalDialog.js +1 -0
- package/lib/Slider/Slider.d.ts +4 -11
- package/lib/Uploader/Uploader.js +1 -1
- package/package.json +5 -4
- package/src/Cascader/Cascader.tsx +7 -4
- package/src/Cascader/test/CascaderSpec.js +56 -1
- package/src/InputNumber/InputNumber.tsx +9 -0
- package/src/InputNumber/test/InputNumberSpec.js +25 -0
- package/src/Modal/BaseModal.tsx +26 -4
- package/src/Modal/ModalDialog.tsx +1 -0
- package/src/Modal/test/ModalSpec.js +5 -0
- package/src/Slider/Slider.d.ts +4 -11
- package/src/Uploader/Uploader.tsx +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,45 @@
|
|
|
1
|
+
<a name="4.10.7"></a>
|
|
2
|
+
## [4.10.7](https://github.com/rsuite/rsuite/compare/v4.10.6...v4.10.7) (2022-01-28)
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
### Bug Fixes
|
|
6
|
+
|
|
7
|
+
* fix inputNumber uncontrolled ([#2331](https://github.com/rsuite/rsuite/issues/2331)) ([fe4a742](https://github.com/rsuite/rsuite/commit/fe4a742))
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
<a name="4.10.6"></a>
|
|
12
|
+
## [4.10.6](https://github.com/rsuite/rsuite/compare/v4.10.5...v4.10.6) (2021-12-17)
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
### Bug Fixes
|
|
16
|
+
|
|
17
|
+
* **Modal:** fix Modal not focused when opened ([#2221](https://github.com/rsuite/rsuite/issues/2221)) ([25cf056](https://github.com/rsuite/rsuite/commit/25cf056))
|
|
18
|
+
* **Table:** bump rsuite-table 3.16.0 ([#2232](https://github.com/rsuite/rsuite/issues/2232)) ([ff6ae0f](https://github.com/rsuite/rsuite/commit/ff6ae0f))
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
<a name="4.10.5"></a>
|
|
23
|
+
## [4.10.5](https://github.com/rsuite/rsuite/compare/v4.10.4...v4.10.5) (2021-11-26)
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
### Bug Fixes
|
|
27
|
+
|
|
28
|
+
* **Uploader:** uploader fileMap is not updated when status is error ([#2158](https://github.com/rsuite/rsuite/issues/2158)) ([7d80b55](https://github.com/rsuite/rsuite/commit/7d80b55))
|
|
29
|
+
|
|
30
|
+
|
|
31
|
+
|
|
32
|
+
<a name="4.10.4"></a>
|
|
33
|
+
## [4.10.4](https://github.com/rsuite/rsuite/compare/4.10.3...4.10.4) (2021-10-22)
|
|
34
|
+
|
|
35
|
+
|
|
36
|
+
### Bug Fixes
|
|
37
|
+
|
|
38
|
+
* **cascader:** search not working with custom childreKey ([#2020](https://github.com/rsuite/rsuite/issues/2020)) ([ef957c3](https://github.com/rsuite/rsuite/commit/ef957c3))
|
|
39
|
+
* **Slider:** fix onChange argument types ([#2021](https://github.com/rsuite/rsuite/issues/2021)) ([4707d8b](https://github.com/rsuite/rsuite/commit/4707d8b))
|
|
40
|
+
|
|
41
|
+
|
|
42
|
+
|
|
1
43
|
<a name="4.10.3"></a>
|
|
2
44
|
## [4.10.3](https://github.com/rsuite/rsuite/compare/4.10.2...4.10.3) (2021-09-13)
|
|
3
45
|
|