rsuite 5.6.3 → 5.6.4

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 CHANGED
@@ -1,3 +1,10 @@
1
+ ## [5.6.4](https://github.com/rsuite/rsuite/compare/v5.6.3...v5.6.4) (2022-03-10)
2
+
3
+ ### Bug Fixes
4
+
5
+ - **CheckTree:** fix missing type definition [#2388](https://github.com/rsuite/rsuite/issues/2388) ([#2391](https://github.com/rsuite/rsuite/issues/2391)) ([0fe4e9f](https://github.com/rsuite/rsuite/commit/0fe4e9f34d7f07354541f4d23b0278cd1d892c2e))
6
+ - **Sidenav:** remove underline from focused sidenav item ([#2387](https://github.com/rsuite/rsuite/issues/2387)) ([a22f569](https://github.com/rsuite/rsuite/commit/a22f569a8c3f2b71513af20b4be6607cd1825783))
7
+
1
8
  ## [5.6.3](https://github.com/rsuite/rsuite/compare/v5.6.2...v5.6.3) (2022-03-05)
2
9
 
3
10
  ## [5.6.2](https://github.com/rsuite/rsuite/compare/v5.6.1...v5.6.2) (2022-02-24)
@@ -170,7 +170,8 @@
170
170
  outline: 0;
171
171
  overflow: hidden;
172
172
 
173
- &:hover {
173
+ &:hover,
174
+ &:focus {
174
175
  text-decoration: none;
175
176
  }
176
177
 
@@ -4,6 +4,8 @@ import { TreeBaseProps } from '../Tree/Tree';
4
4
  export interface CheckTreeProps extends TreeBaseProps<ValueType>, FormControlPickerProps<ValueType> {
5
5
  /** Tree node cascade */
6
6
  cascade?: boolean;
7
+ /** Set the option value for the check box not to be rendered */
8
+ uncheckableItemValues?: ValueType;
7
9
  }
8
10
  declare const CheckTree: RsRefForwardingComponent<'div', CheckTreeProps>;
9
11
  export default CheckTree;
@@ -12648,7 +12648,8 @@ textarea.rs-picker-menu .rs-picker-search-bar .rs-picker-search-bar-input {
12648
12648
  outline: 0;
12649
12649
  overflow: hidden;
12650
12650
  }
12651
- .rs-sidenav-item:hover {
12651
+ .rs-sidenav-item:hover,
12652
+ .rs-sidenav-item:focus {
12652
12653
  text-decoration: none;
12653
12654
  }
12654
12655
  .rs-sidenav-item:focus-visible,