sard-uniapp
Version:
sard-uniapp 是一套基于 Uniapp + Vue3 框架开发的兼容多端的 UI 组件库
25 lines (24 loc) • 1.02 kB
TypeScript
import { type DefaultProps } from '../config';
import { type KeyboardProps, type KeyboardPlateMode, type KeyBoardExpose } from '../keyboard/common';
import { type TransitionHookEmits } from '../popup/common';
import { type FormPopoutProps } from '../../use/useFormPopout';
export interface KeyboardPopoutProps extends FormPopoutProps, KeyboardProps {
transparent?: boolean;
}
export declare const defaultKeyboardPopoutProps: () => DefaultProps<KeyboardPopoutProps>;
export interface KeyboardPopoutSlots {
default?(props: Record<string, never>): any;
}
export interface KeyboardPopoutEmits extends TransitionHookEmits {
(e: 'update:visible', visible: boolean): void;
(e: 'close'): void;
(e: 'cancel'): void;
(e: 'confirm'): void;
(e: 'back-press'): void;
(e: 'input', key: string): void;
(e: 'delete'): void;
(e: 'toggle', mode: KeyboardPlateMode): void;
(e: 'update:mode', mode: KeyboardPlateMode): void;
}
export interface KeyboardPopoutExpose extends KeyBoardExpose {
}