rsuite 4.10.5 → 4.10.8
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 +31 -0
- package/dist/rsuite.js +29 -5
- package/dist/rsuite.min.js +10 -2
- package/dist/rsuite.min.js.map +1 -1
- package/es/CheckTreePicker/CheckTreePicker.js +23 -26
- package/es/InputNumber/InputNumber.js +11 -0
- package/es/Modal/BaseModal.js +24 -4
- package/es/Modal/ModalDialog.js +1 -0
- package/lib/CheckTreePicker/CheckTreePicker.js +23 -26
- package/lib/InputNumber/InputNumber.js +11 -0
- package/lib/Modal/BaseModal.js +24 -4
- package/lib/Modal/ModalDialog.js +1 -0
- package/package.json +3 -3
- package/src/CheckTreePicker/CheckTreePicker.tsx +2 -3
- package/src/CheckTreePicker/test/CheckTreePickerSpec.js +42 -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/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,34 @@
|
|
|
1
|
+
<a name="4.10.8"></a>
|
|
2
|
+
## [4.10.8](https://github.com/rsuite/rsuite/compare/v4.10.7...v4.10.8) (2022-02-24)
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
### Bug Fixes
|
|
6
|
+
|
|
7
|
+
* **CheckTreePicker:** fix CheckTreePicker replacement data expand failure ([#2372](https://github.com/rsuite/rsuite/issues/2372)) ([91e9215](https://github.com/rsuite/rsuite/commit/91e9215))
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
<a name="4.10.7"></a>
|
|
12
|
+
## [4.10.7](https://github.com/rsuite/rsuite/compare/v4.10.6...v4.10.7) (2022-01-28)
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
### Bug Fixes
|
|
16
|
+
|
|
17
|
+
* fix inputNumber uncontrolled ([#2331](https://github.com/rsuite/rsuite/issues/2331)) ([fe4a742](https://github.com/rsuite/rsuite/commit/fe4a742))
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
<a name="4.10.6"></a>
|
|
22
|
+
## [4.10.6](https://github.com/rsuite/rsuite/compare/v4.10.5...v4.10.6) (2021-12-17)
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
### Bug Fixes
|
|
26
|
+
|
|
27
|
+
* **Modal:** fix Modal not focused when opened ([#2221](https://github.com/rsuite/rsuite/issues/2221)) ([25cf056](https://github.com/rsuite/rsuite/commit/25cf056))
|
|
28
|
+
* **Table:** bump rsuite-table 3.16.0 ([#2232](https://github.com/rsuite/rsuite/issues/2232)) ([ff6ae0f](https://github.com/rsuite/rsuite/commit/ff6ae0f))
|
|
29
|
+
|
|
30
|
+
|
|
31
|
+
|
|
1
32
|
<a name="4.10.5"></a>
|
|
2
33
|
## [4.10.5](https://github.com/rsuite/rsuite/compare/v4.10.4...v4.10.5) (2021-11-26)
|
|
3
34
|
|