rsuite 5.68.0 → 5.68.1
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 +9 -0
- package/cjs/CheckTree/utils.d.ts +1 -1
- package/cjs/CheckTree/utils.js +1 -1
- package/dist/rsuite.js +1 -1
- package/dist/rsuite.min.js +1 -1
- package/dist/rsuite.min.js.map +1 -1
- package/esm/CheckTree/utils.d.ts +1 -1
- package/esm/CheckTree/utils.js +1 -1
- package/package.json +1 -1
package/esm/CheckTree/utils.d.ts
CHANGED
|
@@ -36,7 +36,7 @@ export declare function getDisabledState(nodes: TreeNodeMap, node: TreeNode, pro
|
|
|
36
36
|
/**
|
|
37
37
|
* Returns the default value for the check tree.
|
|
38
38
|
*/
|
|
39
|
-
export declare function getCheckTreeDefaultValue<T = any>(value: T, uncheckableItemValues: T): any[];
|
|
39
|
+
export declare function getCheckTreeDefaultValue<T = any>(value: T, uncheckableItemValues: T): any[] | T;
|
|
40
40
|
/**
|
|
41
41
|
* Retrieves the selected items from the given nodes.
|
|
42
42
|
*/
|
package/esm/CheckTree/utils.js
CHANGED