sard-uniapp
Version:
sard-uniapp 是一套基于 Uniapp + Vue3 框架开发的兼容多端的 UI 组件库
29 lines (28 loc) • 920 B
TypeScript
import { type StyleValue } from 'vue';
import { type CheckboxGroupProps } from '../checkbox/common';
import { type TransitionHookEmits } from '../popup/common';
export interface CheckboxPopoutProps extends CheckboxGroupProps {
visible?: boolean;
title?: string;
popoutClass?: string;
popoutStyle?: StyleValue;
showCheckAll?: boolean;
searchable?: boolean;
filterPlaceholder?: string;
resettable?: boolean;
}
export declare const defaultCheckboxPopoutProps: () => {
options: () => never[];
validateEvent: boolean;
};
export interface CheckboxPopoutSlots {
default?(props: Record<string, never>): any;
}
export interface CheckboxPopoutEmits extends TransitionHookEmits {
(e: 'update:visible', visible: boolean): void;
(e: 'update:model-value', value: any): void;
(e: 'change', value: any): void;
(e: 'confirm'): void;
}
export interface CheckboxPopoutExpose {
}