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.
expandAll
collapseAll
1 parent f8751e3 commit d31cc67Copy full SHA for d31cc67
src/index.d.ts
@@ -17,6 +17,8 @@ declare module "react-checkbox-tree" {
17
uncheck?: JSX.Element;
18
halfCheck?: JSX.Element;
19
expandClose?: JSX.Element;
20
+ expandAll?: JSX.Element;
21
+ collapseAll?: JSX.Element;
22
parentClose?: JSX.Element;
23
parentOpen?: JSX.Element;
24
leaf?: JSX.Element;
src/js/shapes/iconsShape.js
@@ -6,6 +6,8 @@ const icons = PropTypes.shape({
6
halfCheck: PropTypes.node,
7
expandClose: PropTypes.node,
8
expandOpen: PropTypes.node,
9
+ expandAll: PropTypes.node,
10
+ collapseAll: PropTypes.node,
11
parentClose: PropTypes.node,
12
parentOpen: PropTypes.node,
13
leaf: PropTypes.node,
0 commit comments