sard-uniapp
Version:
sard-uniapp 是一套基于 Uniapp + Vue3 框架开发的兼容多端的 UI 组件库
34 lines (33 loc) • 985 B
TypeScript
import { type StyleValue } from 'vue';
import { type DefaultProps } from '../config';
import { type InputProps } from '../input';
export interface PopoutInputProps {
rootStyle?: StyleValue;
rootClass?: string;
modelValue?: any;
placeholder?: string;
readonly?: boolean;
disabled?: boolean;
clearable?: boolean;
loading?: boolean;
multiline?: boolean;
arrow?: string;
arrowFamily?: string;
internalPrepend?: number;
internalAppend?: number;
internalArrow?: number;
inputProps?: InputProps;
}
export declare const defaultPopoutInputProps: () => DefaultProps<PopoutInputProps>;
export interface PopoutInputEmits {
(e: 'click', event: any): void;
(e: 'update:model-value', value: string): void;
(e: 'change', value: string): void;
(e: 'clear'): void;
}
export interface PopoutInputSlots {
prepend?(): any;
append?(): any;
arrow?(): any;
}
export declare const popoutInputContextSymbol: unique symbol;