mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-24 11:10:01 +08:00
31b2e53755
* fix: classname of the Radio & Checkbox would not follow CP * test: add test case * test: add test case * test: update path * fix: fix * chore: revert * chore: revert * chore: revert * chore: revert * chore: revert
18 lines
417 B
TypeScript
18 lines
417 B
TypeScript
import { defaultPrefixCls } from '../../config-provider';
|
|
import type { GlobalToken } from '../../theme';
|
|
|
|
export const TARGET_CLS = `${defaultPrefixCls}-wave-target`;
|
|
|
|
export type ShowWaveEffect = (
|
|
element: HTMLElement,
|
|
info: {
|
|
className: string;
|
|
token: GlobalToken;
|
|
component?: string;
|
|
event: MouseEvent;
|
|
hashId: string;
|
|
},
|
|
) => void;
|
|
|
|
export type ShowWave = (event: MouseEvent) => void;
|