ant-design/components/tree-select/demo/multiple.tsx
thinkasany d5f0fc1941
feat: ConfigProvider support classNames and styles for treeSelect (#53229)
* feat: ConfigProvider support classNames and styles for treeSelect

* fix

* fix

* fix

* update zIndex

* fix

* add test
2025-03-25 19:14:35 +08:00

61 lines
1.2 KiB
TypeScript

import React, { useState } from 'react';
import { TreeSelect } from 'antd';
const treeData = [
{
value: 'parent 1',
title: 'parent 1',
children: [
{
value: 'parent 1-0',
title: 'parent 1-0',
children: [
{
value: 'leaf1',
title: 'my leaf',
},
{
value: 'leaf2',
title: 'your leaf',
},
],
},
{
value: 'parent 1-1',
title: 'parent 1-1',
children: [
{
value: 'sss',
title: <b style={{ color: '#08c' }}>sss</b>,
},
],
},
],
},
];
const App: React.FC = () => {
const [value, setValue] = useState<string>();
const onChange = (newValue: string) => {
console.log(newValue);
setValue(newValue);
};
return (
<TreeSelect
showSearch
style={{ width: '100%' }}
value={value}
styles={{ popup: { maxHeight: 400, overflow: 'auto' } }}
placeholder="Please select"
allowClear
multiple
treeDefaultExpandAll
onChange={onChange}
treeData={treeData}
/>
);
};
export default App;