mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-04 00:49:39 +08:00
6e3a9080bf
* chore: fix checkbox * chore: checkbox support disabled * chore: radio support wave * test: update test case * chore: fix lint * test: update snapshot * test: update snapshot * test: fix test case * test: update test case
17 lines
343 B
TypeScript
17 lines
343 B
TypeScript
import type { GlobalToken } from '../../theme';
|
|
|
|
export const TARGET_CLS = 'ant-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;
|