| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293 |
- import type { CSSProperties } from 'vue';
- import type { PosInfo } from './hooks/useTarget';
- export interface MaskProps {
- prefixCls?: string;
- pos: PosInfo;
- rootClassName?: string;
- showMask?: boolean;
- style?: CSSProperties;
- fill?: string;
- open?: boolean;
- animated?: boolean | {
- placeholder: boolean;
- };
- zIndex?: number;
- }
- declare const Mask: import("vue").DefineComponent<{
- prefixCls: {
- type: StringConstructor;
- };
- pos: {
- type: import("vue").PropType<PosInfo>;
- default: PosInfo;
- };
- rootClassName: {
- type: StringConstructor;
- };
- showMask: {
- type: BooleanConstructor;
- default: boolean;
- };
- fill: {
- type: StringConstructor;
- default: string;
- };
- open: {
- type: BooleanConstructor;
- default: boolean;
- };
- animated: {
- type: import("vue").PropType<boolean | {
- placeholder: boolean;
- }>;
- default: boolean | {
- placeholder: boolean;
- };
- };
- zIndex: {
- type: NumberConstructor;
- };
- }, () => import("vue/jsx-runtime").JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
- prefixCls: {
- type: StringConstructor;
- };
- pos: {
- type: import("vue").PropType<PosInfo>;
- default: PosInfo;
- };
- rootClassName: {
- type: StringConstructor;
- };
- showMask: {
- type: BooleanConstructor;
- default: boolean;
- };
- fill: {
- type: StringConstructor;
- default: string;
- };
- open: {
- type: BooleanConstructor;
- default: boolean;
- };
- animated: {
- type: import("vue").PropType<boolean | {
- placeholder: boolean;
- }>;
- default: boolean | {
- placeholder: boolean;
- };
- };
- zIndex: {
- type: NumberConstructor;
- };
- }>>, {
- fill: string;
- open: boolean;
- pos: PosInfo;
- showMask: boolean;
- animated: boolean | {
- placeholder: boolean;
- };
- }, {}>;
- export default Mask;
|