You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
1.0 KiB
36 lines
1.0 KiB
import { FunctionalComponent } from 'vue';
|
|
import warning from '../_util/warning';
|
|
import Base, { baseProps, BlockProps, EllipsisConfig } from './Base';
|
|
import Omit from 'omit.js';
|
|
|
|
export interface TextProps extends BlockProps {
|
|
ellipsis?: boolean | Omit<EllipsisConfig, 'expandable' | 'rows' | 'onExpand'>;
|
|
}
|
|
|
|
const Text: FunctionalComponent<TextProps> = (props, { slots, attrs }) => {
|
|
const { ellipsis } = props;
|
|
warning(
|
|
typeof ellipsis !== 'object' ||
|
|
!ellipsis ||
|
|
(!('expandable' in ellipsis) && !('rows' in ellipsis)),
|
|
'Typography.Text',
|
|
'`ellipsis` do not support `expandable` or `rows` props.',
|
|
);
|
|
const textProps = {
|
|
...props,
|
|
ellipsis:
|
|
ellipsis && typeof ellipsis === 'object'
|
|
? Omit(ellipsis as any, ['expandable', 'rows'])
|
|
: ellipsis,
|
|
component: 'span',
|
|
...attrs,
|
|
};
|
|
return <Base {...textProps} v-slots={slots}></Base>;
|
|
};
|
|
|
|
Text.displayName = 'ATypographyText';
|
|
Text.inheritAttrs = false;
|
|
Text.props = Omit(baseProps(), ['component']);
|
|
|
|
export default Text;
|