UNPKG

nsn-comp

Version:

NSN核心组件

24 lines (16 loc) 639 B
import { TooltipProps } from 'antd/es/tooltip'; import { CSSProperties } from 'react'; export interface EllipsisProps { /** 移动到文本展示完整内容的提示 */ tooltip?: boolean | Omit<TooltipProps, 'overlayStyle'>; /** 在按照长度截取下的文本最大字符数,超过则截取省略 */ length?: number; /** 在按照行数截取下最大的行数,超过则截取省略. 默认值: 1 */ lines?: number; /** 省略符号 */ tail?: string; style?: CSSProperties; className?: string; /** 是否将全角字符的长度视为2来计算字符串长度 */ fullWidthRecognition?: boolean; }