mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-25 11:40:04 +08:00
2341a25d91
* more refactor * chore: motion support * chore: tmp test * test: Hooks * chore: static function * tmp of it * all of it * mv prefix * chore: clean up * chore: clean up * more test case * test: all base test * test: all test case * init * refactor: rm notification.open instance related code * follow up * refactor: singlton * test: notification test case * refactor to destroy * refactor: message base * test: part test case * test: more * test: more * test: all test * chore: clean up * docs: reorder * chore: fix lint * test: fix test case * chore: add act * chore: back * chore: fix style * test: notification test * test: more and more * test: fix more test * test: index * test: more & more * test: fix placement * test: fix coverage * chore: clean up * chore: bundle size * fix: 17 * chore: more * test: message * test: more test * fix: lint * test: rm class in static * chore: clean up * test: coverage * chore: fix lint
58 lines
1.3 KiB
TypeScript
58 lines
1.3 KiB
TypeScript
import type * as React from 'react';
|
|
|
|
export type NotificationPlacement =
|
|
| 'top'
|
|
| 'topLeft'
|
|
| 'topRight'
|
|
| 'bottom'
|
|
| 'bottomLeft'
|
|
| 'bottomRight';
|
|
|
|
export type IconType = 'success' | 'info' | 'error' | 'warning';
|
|
|
|
export interface ArgsProps {
|
|
message: React.ReactNode;
|
|
description?: React.ReactNode;
|
|
btn?: React.ReactNode;
|
|
key?: React.Key;
|
|
onClose?: () => void;
|
|
duration?: number | null;
|
|
icon?: React.ReactNode;
|
|
placement?: NotificationPlacement;
|
|
style?: React.CSSProperties;
|
|
className?: string;
|
|
readonly type?: IconType;
|
|
onClick?: () => void;
|
|
closeIcon?: React.ReactNode;
|
|
}
|
|
|
|
export interface NotificationInstance {
|
|
success(args: ArgsProps): void;
|
|
error(args: ArgsProps): void;
|
|
info(args: ArgsProps): void;
|
|
warning(args: ArgsProps): void;
|
|
open(args: ArgsProps): void;
|
|
destroy(key?: React.Key): void;
|
|
}
|
|
|
|
export interface GlobalConfigProps {
|
|
top?: number;
|
|
bottom?: number;
|
|
duration?: number;
|
|
prefixCls?: string;
|
|
getContainer?: () => HTMLElement;
|
|
placement?: NotificationPlacement;
|
|
closeIcon?: React.ReactNode;
|
|
rtl?: boolean;
|
|
maxCount?: number;
|
|
}
|
|
|
|
export interface NotificationConfig {
|
|
top?: number;
|
|
bottom?: number;
|
|
prefixCls?: string;
|
|
getContainer?: () => HTMLElement;
|
|
maxCount?: number;
|
|
rtl?: boolean;
|
|
}
|