mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-30 22:39:34 +08:00
5836724dc4
* fix: dropdown menu item in danger Disable dropdown menu item when type is equal to danger increase disabled CSS specificity remove unnecessary changes fix: remove reordering functions Remove reordering functions by increasing `disable` class on line 350 CSS specificity Revert "fix: remove reordering functions " This reverts commit bd94daaddf973f5f8ef1641ea3081f5aab2fc3a2. * chore: update style * chore: update demo ref: https://github.com/ant-design/ant-design/issues/39322 * test: update snapshot Co-authored-by: samyar <75088294+samyarkd@users.noreply.github.com>
84 lines
1.9 KiB
TypeScript
84 lines
1.9 KiB
TypeScript
import React from 'react';
|
|
import { DownOutlined, UserOutlined } from '@ant-design/icons';
|
|
import type { MenuProps } from 'antd';
|
|
import { Button, Dropdown, message, Space, Tooltip } from 'antd';
|
|
|
|
const handleButtonClick = (e: React.MouseEvent<HTMLButtonElement>) => {
|
|
message.info('Click on left button.');
|
|
console.log('click left button', e);
|
|
};
|
|
|
|
const handleMenuClick: MenuProps['onClick'] = (e) => {
|
|
message.info('Click on menu item.');
|
|
console.log('click', e);
|
|
};
|
|
|
|
const items: MenuProps['items'] = [
|
|
{
|
|
label: '1st menu item',
|
|
key: '1',
|
|
icon: <UserOutlined />,
|
|
},
|
|
{
|
|
label: '2nd menu item',
|
|
key: '2',
|
|
icon: <UserOutlined />,
|
|
},
|
|
{
|
|
label: '3rd menu item',
|
|
key: '3',
|
|
icon: <UserOutlined />,
|
|
danger: true,
|
|
},
|
|
{
|
|
label: '4rd menu item',
|
|
key: '4',
|
|
icon: <UserOutlined />,
|
|
danger: true,
|
|
disabled: true,
|
|
},
|
|
];
|
|
|
|
const menuProps = {
|
|
items,
|
|
onClick: handleMenuClick,
|
|
};
|
|
|
|
const App: React.FC = () => (
|
|
<Space wrap>
|
|
<Dropdown.Button menu={menuProps} onClick={handleButtonClick}>
|
|
Dropdown
|
|
</Dropdown.Button>
|
|
<Dropdown.Button menu={menuProps} placement="bottom" icon={<UserOutlined />}>
|
|
Dropdown
|
|
</Dropdown.Button>
|
|
<Dropdown.Button menu={menuProps} onClick={handleButtonClick} disabled>
|
|
Dropdown
|
|
</Dropdown.Button>
|
|
<Dropdown.Button
|
|
menu={menuProps}
|
|
buttonsRender={([leftButton, rightButton]) => [
|
|
<Tooltip title="tooltip" key="leftButton">
|
|
{leftButton}
|
|
</Tooltip>,
|
|
React.cloneElement(rightButton as React.ReactElement<any, string>, { loading: true }),
|
|
]}
|
|
>
|
|
With Tooltip
|
|
</Dropdown.Button>
|
|
<Dropdown menu={menuProps}>
|
|
<Button>
|
|
<Space>
|
|
Button
|
|
<DownOutlined />
|
|
</Space>
|
|
</Button>
|
|
</Dropdown>
|
|
<Dropdown.Button menu={menuProps} onClick={handleButtonClick} danger>
|
|
Danger
|
|
</Dropdown.Button>
|
|
</Space>
|
|
);
|
|
|
|
export default App;
|