46 lines
1.9 KiB
TypeScript
46 lines
1.9 KiB
TypeScript
import * as React from 'react';
|
|
import { PresetColorType, PresetStatusColorType } from '../_util/colors';
|
|
import { ConfigConsumerProps } from '../config-provider';
|
|
import { LiteralUnion } from '../_util/type';
|
|
export { ScrollNumberProps } from './ScrollNumber';
|
|
export interface BadgeProps {
|
|
/** Number to show in badge */
|
|
count?: React.ReactNode;
|
|
showZero?: boolean;
|
|
/** Max count to show */
|
|
overflowCount?: number;
|
|
/** whether to show red dot without number */
|
|
dot?: boolean;
|
|
style?: React.CSSProperties;
|
|
prefixCls?: string;
|
|
scrollNumberPrefixCls?: string;
|
|
className?: string;
|
|
status?: PresetStatusColorType;
|
|
color?: LiteralUnion<PresetColorType, string>;
|
|
text?: React.ReactNode;
|
|
offset?: [number | string, number | string];
|
|
title?: string;
|
|
}
|
|
export default class Badge extends React.Component<BadgeProps, any> {
|
|
static defaultProps: {
|
|
count: null;
|
|
showZero: boolean;
|
|
dot: boolean;
|
|
overflowCount: number;
|
|
};
|
|
getNumberedDisplayCount(): string | number | null;
|
|
getDisplayCount(): string | number | null;
|
|
getScrollNumberTitle(): string | number | undefined;
|
|
getStyleWithOffset(): React.CSSProperties | undefined;
|
|
getBadgeClassName(prefixCls: string, direction?: string): string;
|
|
hasStatus(): boolean;
|
|
isZero(): boolean;
|
|
isDot(): boolean;
|
|
isHidden(): boolean;
|
|
renderStatusText(prefixCls: string): JSX.Element | null;
|
|
renderDisplayComponent(): React.ReactElement<any, string | ((props: any) => React.ReactElement<any, string | any | (new (props: any) => React.Component<any, any, any>)> | null) | (new (props: any) => React.Component<any, any, any>)> | undefined;
|
|
renderBadgeNumber(prefixCls: string, scrollNumberPrefixCls: string): JSX.Element | null;
|
|
renderBadge: ({ getPrefixCls, direction }: ConfigConsumerProps) => JSX.Element;
|
|
render(): JSX.Element;
|
|
}
|