UNPKG

@wufengteam/inputs

Version:

平台提供的右侧属性编辑器,需要在主工程中注册

22 lines (21 loc) 674 B
import type { FC } from 'react'; import './index.less'; interface ZeroCodeOrgTreeProps { treeData: any[]; onSearch?: (value: string) => void; initValues?: any[]; onCheck?: (values: any[], checkedKeys: any[]) => void; hasTabs?: boolean; checkable?: boolean; onSelect?: (value: string[], checkAll: boolean) => void; selectedKeys?: string[]; loadData?: (node: any) => Promise<void>; hasSearch?: boolean; recursive?: string; height?: number; emptyNode?: any; checkAllChange: (checked: boolean) => void; enableCheckList: any[]; } declare const ZeroCodeOrgTree: FC<ZeroCodeOrgTreeProps>; export default ZeroCodeOrgTree;