We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ee61105 commit d670ed0Copy full SHA for d670ed0
src/index.d.ts
@@ -9,6 +9,7 @@ declare module "react-checkbox-tree" {
9
disabled?: boolean;
10
icon?: JSX.Element;
11
showCheckbox?: boolean;
12
+ title?: string;
13
}
14
15
interface Icons {
src/js/shapes/nodeShape.js
@@ -7,6 +7,7 @@ const nodeShape = {
7
PropTypes.number,
8
]).isRequired,
+ disabled: PropTypes.bool,
icon: PropTypes.node,
showCheckbox: PropTypes.bool,
title: PropTypes.string,
0 commit comments