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 +7 -0
- package/Sidenav/styles/index.less +2 -1
- package/cjs/CheckTree/index.d.ts +2 -0
- package/dist/rsuite-rtl.css +2 -1
- package/dist/rsuite-rtl.min.css +1 -1
- package/dist/rsuite-rtl.min.css.map +1 -1
- package/dist/rsuite.css +2 -1
- package/dist/rsuite.js +2 -2
- package/dist/rsuite.min.css +1 -1
- package/dist/rsuite.min.css.map +1 -1
- package/dist/rsuite.min.js +1 -1
- package/dist/rsuite.min.js.map +1 -1
- package/esm/CheckTree/index.d.ts +2 -0
- package/package.json +2 -2
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)
|
package/cjs/CheckTree/index.d.ts
CHANGED
|
@@ -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;
|
package/dist/rsuite-rtl.css
CHANGED
|
@@ -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,
|