UNPKG

gtht-miniapp-sdk

Version:

gtht-miniapp-sdk 是一套基于 Uniapp + Vue3 框架开发的兼容多端的 UI 组件库

28 lines (27 loc) 894 B
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; } 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 { }