mirror of
https://github.com/ant-design/ant-design.git
synced 2025-01-23 09:54:16 +08:00
2a21f7ba88
Some checks are pending
Publish Any Commit / build (push) Waiting to run
🔀 Sync mirror to Gitee / mirror (push) Waiting to run
✅ test / lint (push) Waiting to run
✅ test / test-react-legacy (16, 1/2) (push) Waiting to run
✅ test / test-react-legacy (16, 2/2) (push) Waiting to run
✅ test / test-react-legacy (17, 1/2) (push) Waiting to run
✅ test / test-react-legacy (17, 2/2) (push) Waiting to run
✅ test / test-node (push) Waiting to run
✅ test / test-react-latest (dom, 1/2) (push) Waiting to run
✅ test / test-react-latest (dom, 2/2) (push) Waiting to run
✅ test / test-react-latest-dist (dist, 1/2) (push) Blocked by required conditions
✅ test / test-react-latest-dist (dist, 2/2) (push) Blocked by required conditions
✅ test / test-react-latest-dist (dist-min, 1/2) (push) Blocked by required conditions
✅ test / test-react-latest-dist (dist-min, 2/2) (push) Blocked by required conditions
✅ test / test-coverage (push) Blocked by required conditions
✅ test / build (push) Waiting to run
✅ test / test lib/es module (es, 1/2) (push) Waiting to run
✅ test / test lib/es module (es, 2/2) (push) Waiting to run
✅ test / test lib/es module (lib, 1/2) (push) Waiting to run
✅ test / test lib/es module (lib, 2/2) (push) Waiting to run
👁️ Visual Regression Persist Start / test image (push) Waiting to run
* feat:[Tree]对不可check的文本,select时候背景色改为灰色 * feat:[Tree] 修改disabled 选中的文本背景颜色 * feat: 对整行disable 的文本调整select背景色 * fix:恢复误改内容 * feat:删除不需要的多增加的注释内容 * feat:合并css选择器 * feat:更新 Tree snapshot * feat:删除不需要的提交 --------- Co-authored-by: 刘欢 <lh01217311@antgroup.com> Co-authored-by: afc163 <afc163@gmail.com>
58 lines
1.2 KiB
TypeScript
58 lines
1.2 KiB
TypeScript
import React from 'react';
|
|
import { Tree } from 'antd';
|
|
import type { TreeDataNode, TreeProps } from 'antd';
|
|
|
|
const treeData: TreeDataNode[] = [
|
|
{
|
|
title: 'parent 1',
|
|
key: '0-0',
|
|
children: [
|
|
{
|
|
title: 'parent 1-0',
|
|
key: '0-0-0',
|
|
disabled: true,
|
|
children: [
|
|
{
|
|
title: 'leaf',
|
|
key: '0-0-0-0',
|
|
disableCheckbox: true,
|
|
},
|
|
{
|
|
title: 'leaf',
|
|
key: '0-0-0-1',
|
|
},
|
|
],
|
|
},
|
|
{
|
|
title: 'parent 1-1',
|
|
key: '0-0-1',
|
|
children: [{ title: <span style={{ color: '#1677ff' }}>sss</span>, key: '0-0-1-0' }],
|
|
},
|
|
],
|
|
},
|
|
];
|
|
|
|
const App: React.FC = () => {
|
|
const onSelect: TreeProps['onSelect'] = (selectedKeys, info) => {
|
|
console.log('selected', selectedKeys, info);
|
|
};
|
|
|
|
const onCheck: TreeProps['onCheck'] = (checkedKeys, info) => {
|
|
console.log('onCheck', checkedKeys, info);
|
|
};
|
|
|
|
return (
|
|
<Tree
|
|
checkable
|
|
defaultExpandedKeys={['0-0-0', '0-0-1']}
|
|
defaultSelectedKeys={['0-0-1']}
|
|
defaultCheckedKeys={['0-0-0', '0-0-1']}
|
|
onSelect={onSelect}
|
|
onCheck={onCheck}
|
|
treeData={treeData}
|
|
/>
|
|
);
|
|
};
|
|
|
|
export default App;
|