chore: empty props add `class` and `style`
parent
f3c5166197
commit
51e03f3edd
|
@ -1,12 +1,4 @@
|
||||||
import {
|
import { CSSProperties, VNodeTypes, inject, App, SetupContext, FunctionalComponent } from 'vue';
|
||||||
CSSProperties,
|
|
||||||
VNodeTypes,
|
|
||||||
inject,
|
|
||||||
App,
|
|
||||||
SetupContext,
|
|
||||||
FunctionalComponent,
|
|
||||||
HTMLAttributes,
|
|
||||||
} from 'vue';
|
|
||||||
import classNames from '../_util/classNames';
|
import classNames from '../_util/classNames';
|
||||||
import { defaultConfigProvider, ConfigConsumerProps } from '../config-provider';
|
import { defaultConfigProvider, ConfigConsumerProps } from '../config-provider';
|
||||||
import LocaleReceiver from '../locale-provider/LocaleReceiver';
|
import LocaleReceiver from '../locale-provider/LocaleReceiver';
|
||||||
|
@ -22,8 +14,10 @@ export interface TransferLocale {
|
||||||
description: string;
|
description: string;
|
||||||
}
|
}
|
||||||
|
|
||||||
export interface EmptyProps extends HTMLAttributes {
|
export interface EmptyProps {
|
||||||
prefixCls?: string;
|
prefixCls?: string;
|
||||||
|
class?: any;
|
||||||
|
style?: string | CSSProperties;
|
||||||
imageStyle?: CSSProperties;
|
imageStyle?: CSSProperties;
|
||||||
image?: VNodeTypes | null;
|
image?: VNodeTypes | null;
|
||||||
description?: VNodeTypes;
|
description?: VNodeTypes;
|
||||||
|
@ -42,7 +36,7 @@ const Empty: EmptyType = (props: EmptyProps, { slots = {}, attrs }: SetupContext
|
||||||
const {
|
const {
|
||||||
prefixCls: customizePrefixCls,
|
prefixCls: customizePrefixCls,
|
||||||
image = defaultEmptyImg,
|
image = defaultEmptyImg,
|
||||||
description = (slots.description && slots.description()) || undefined,
|
description = slots.description?.() || undefined,
|
||||||
imageStyle,
|
imageStyle,
|
||||||
class: className = '',
|
class: className = '',
|
||||||
...restProps
|
...restProps
|
||||||
|
|
Loading…
Reference in New Issue