rsuite 4.8.8 → 4.8.9

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 (37) hide show
  1. package/CHANGELOG.md +14 -5
  2. package/dist/rsuite.js +7 -7
  3. package/dist/rsuite.min.js +1 -1
  4. package/dist/rsuite.min.js.map +1 -1
  5. package/dist/styles/rsuite-dark-rtl.css +2 -5
  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 -5
  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 -5
  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 -5
  15. package/dist/styles/rsuite-default.min.css +1 -1
  16. package/dist/styles/rsuite-default.min.css.map +1 -1
  17. package/es/InputPicker/InputAutosize.js +11 -6
  18. package/es/InputPicker/styles/common.less +2 -2
  19. package/es/Modal/BaseModal.js +1 -1
  20. package/es/Modal/ModalDialog.js +3 -1
  21. package/es/Picker/propTypes.js +1 -1
  22. package/es/Table/styles/common.less +0 -4
  23. package/lib/InputPicker/InputAutosize.js +11 -6
  24. package/lib/InputPicker/styles/common.less +2 -2
  25. package/lib/Modal/BaseModal.js +1 -1
  26. package/lib/Modal/ModalDialog.js +3 -1
  27. package/lib/Picker/propTypes.js +1 -1
  28. package/lib/Table/styles/common.less +0 -4
  29. package/package.json +2 -2
  30. package/src/Drawer/test/DrawerSpec.js +14 -0
  31. package/src/InputPicker/InputAutosize.tsx +15 -10
  32. package/src/InputPicker/styles/common.less +2 -2
  33. package/src/Modal/BaseModal.tsx +1 -6
  34. package/src/Modal/ModalDialog.tsx +3 -1
  35. package/src/Modal/test/ModalSpec.js +13 -0
  36. package/src/Picker/propTypes.ts +1 -1
  37. package/src/Table/styles/common.less +0 -4
package/CHANGELOG.md CHANGED
@@ -1,14 +1,23 @@
1
- <a name="4.8.8"></a>
2
- ## [4.8.8](https://github.com/rsuite/rsuite/compare/4.8.7...4.8.8) (2021-01-14)
1
+ <a name="4.8.9"></a>
3
2
 
3
+ ## [4.8.9](https://github.com/rsuite/rsuite/compare/4.8.8...4.8.9) (2021-02-02)
4
4
 
5
5
  ### Bug Fixes
6
6
 
7
- * **dropdown:** fix the issue of Dropdown close event ([#1455](https://github.com/rsuite/rsuite/issues/1455)) ([76e060d](https://github.com/rsuite/rsuite/commit/76e060d)), closes [#1435](https://github.com/rsuite/rsuite/issues/1435)
8
- * **picker:** fixed the non-unique key in the Picker option when groupBy ([#1453](https://github.com/rsuite/rsuite/issues/1453)) ([1f9f790](https://github.com/rsuite/rsuite/commit/1f9f790)), closes [#1419](https://github.com/rsuite/rsuite/issues/1419)
9
- * **whisper:** fix overlay jittering when the cursor is hovered ([#1454](https://github.com/rsuite/rsuite/issues/1454)) ([6537057](https://github.com/rsuite/rsuite/commit/6537057)), closes [#1402](https://github.com/rsuite/rsuite/issues/1402)
7
+ - **drawer:** accepts id and aria-labelledby attributes ([#1464](https://github.com/rsuite/rsuite/issues/1464)) ([c7a1194](https://github.com/rsuite/rsuite/commit/c7a1194))
8
+ - **modal:** remove duplicated dialog role ([#1463](https://github.com/rsuite/rsuite/issues/1463)) ([42c456f](https://github.com/rsuite/rsuite/commit/42c456f))
9
+ - **table:** fixed unhandled scroll bar width when Cell is fixed on right ([#1482](https://github.com/rsuite/rsuite/issues/1482)) ([45363bc](https://github.com/rsuite/rsuite/commit/45363bc)), closes [#1446](https://github.com/rsuite/rsuite/issues/1446)
10
+ - **tag-picker:** fix TagPicker clear button not work ([#1480](https://github.com/rsuite/rsuite/issues/1480)) ([aadcb51](https://github.com/rsuite/rsuite/commit/aadcb51)), closes [#1467](https://github.com/rsuite/rsuite/issues/1467)
11
+
12
+ <a name="4.8.8"></a>
10
13
 
14
+ ## [4.8.8](https://github.com/rsuite/rsuite/compare/4.8.7...4.8.8) (2021-01-14)
15
+
16
+ ### Bug Fixes
11
17
 
18
+ - **dropdown:** fix the issue of Dropdown close event ([#1455](https://github.com/rsuite/rsuite/issues/1455)) ([76e060d](https://github.com/rsuite/rsuite/commit/76e060d)), closes [#1435](https://github.com/rsuite/rsuite/issues/1435)
19
+ - **picker:** fixed the non-unique key in the Picker option when groupBy ([#1453](https://github.com/rsuite/rsuite/issues/1453)) ([1f9f790](https://github.com/rsuite/rsuite/commit/1f9f790)), closes [#1419](https://github.com/rsuite/rsuite/issues/1419)
20
+ - **whisper:** fix overlay jittering when the cursor is hovered ([#1454](https://github.com/rsuite/rsuite/issues/1454)) ([6537057](https://github.com/rsuite/rsuite/commit/6537057)), closes [#1402](https://github.com/rsuite/rsuite/issues/1402)
12
21
 
13
22
  # 4.8.7
14
23