ideaz-element
Version:
<p align="center"> <a href="" target="_blank" rel="noopener noreferrer"> <img src="./docs/public/logo.svg" alt="Ideaz Element" width="180" style="width: 180px;" /> </a> </p>
46 lines (44 loc) • 1.56 kB
TypeScript
import { ExtractPropTypes } from 'vue';
import { Alias, CheckboxOptionsItem, CheckboxType } from '../../types';
export declare const checkboxProps: {
value: {
type: globalThis.PropType<any>;
default: () => never[];
required: boolean;
};
modelValue: {
type: globalThis.PropType<any>;
default: () => never[];
required: boolean;
};
options: {
type: globalThis.PropType<CheckboxOptionsItem[]>;
default: () => never[];
};
type: {
type: globalThis.PropType<CheckboxType>;
default: string;
};
alias: {
type: globalThis.PropType<Alias>;
};
border: {
type: BooleanConstructor;
};
ariaLabel: StringConstructor;
disabled: BooleanConstructor;
min: NumberConstructor;
max: NumberConstructor;
size: {
readonly type: globalThis.PropType<import('element-plus/es/utils').EpPropMergeType<StringConstructor, "" | "small" | "default" | "large", never>>;
readonly required: false;
readonly validator: ((val: unknown) => boolean) | undefined;
__epPropKey: true;
};
fill: StringConstructor;
textColor: StringConstructor;
tag: import('element-plus/es/utils').EpPropFinalized<StringConstructor, unknown, unknown, "div", boolean>;
validateEvent: import('element-plus/es/utils').EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
};
export type CheckboxProps = ExtractPropTypes<typeof checkboxProps>;
export declare const CHECKBOX_FILTER_PROPS: string[];