UNPKG

@tplc/business

Version:

36 lines (34 loc) 872 B
import { LcbActionViewProps } from '../lcb-action-view/types' import { LcbBlockProps } from '../lcb-block/types' export interface LcbButtonProps extends LcbBlockProps { text: string action?: LcbActionViewProps mode: 'image' | 'text' | 'noStyle' url?: string imageWidth?: number imageHeight?: number dynamicKey?: string keyFromUser?: boolean customClass?: string fillWidth?: boolean fillHeight?: boolean icon?: string iconSize?: number iconColor?: string iconGap?: number // 动态值不存在就不显示 hideWhenDynamicKeyNotExist?: boolean // 动态值不存在时显示的默认值 textDefaultValue?: string enablePreview?: boolean itemAlign?: | 'top-left' | 'top-center' | 'top-right' | 'center-left' | 'center-center' | 'center-right' | 'bottom-left' | 'bottom-center' | 'bottom-right' }