Skip to content

Commit c65bf29

Browse files
committed
Format markdown tables and documentation
1 parent 2a99ad1 commit c65bf29

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -96,6 +96,7 @@ online example: https://tree-select-react-component.vercel.app/
9696
| treeNodeLabelProp | which prop value of treeNode will render as content of select | String | 'title' |
9797
| treeData | treeNodes data Array, if set it then you need not to construct children TreeNode. (value should be unique across the whole array) | array<{value,label,children, [disabled,selectable]}> | [] |
9898
| treeDataSimpleMode | enable simple mode of treeData.(treeData should be like this: [{id:1, pId:0, value:'1', label:"test1",...},...], `pId` is parent node's id) | bool/object{id:'id', pId:'pId', rootPId:null} | false |
99+
| treeTitleRender | Custom render nodes | (nodeData: OptionType) => ReactNode | - |
99100
| loadData | load data asynchronously | function(node) | - |
100101
| getPopupContainer | container which popup select menu rendered into | function(trigger:Node):Node | function(){return document.body;} |
101102
| autoClearSearchValue | auto clear search input value when multiple select is selected/deselected | boolean | true |
@@ -104,7 +105,6 @@ online example: https://tree-select-react-component.vercel.app/
104105
| removeIcon | specify the remove icon | ReactNode \| (props: TreeProps) => ReactNode | - |
105106
| switcherIcon | specify the switcher icon | ReactNode \| (props: TreeProps) => ReactNode | - |
106107
| virtual | Disable virtual when `false` | false | - |
107-
| treeTitleRender | Custom render nodes | (nodeData: OptionType) => ReactNode | - |
108108

109109
### TreeNode props
110110

0 commit comments

Comments
 (0)