UNPKG

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>

49 lines (47 loc) 1.87 kB
import { ExtractPropTypes } from 'vue'; import { Alias, RadioOptionsItem } from '../../types'; export type RadioType = 'radio' | 'radio-button'; export declare const radioProps: { value: { type: (StringConstructor | NumberConstructor)[]; default: string; required: boolean; }; modelValue: { type: (StringConstructor | NumberConstructor)[]; default: string; required: boolean; }; options: { type: globalThis.PropType<RadioOptionsItem[]>; default: () => never[]; }; type: { type: StringConstructor; default: string; }; alias: { type: globalThis.PropType<Alias>; }; border: { type: BooleanConstructor; }; isCancel: { type: BooleanConstructor; }; ariaLabel: StringConstructor; id: import('element-plus/es/utils').EpPropFinalized<StringConstructor, unknown, unknown, undefined, boolean>; 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; }; disabled: BooleanConstructor; fill: import('element-plus/es/utils').EpPropFinalized<StringConstructor, unknown, unknown, "", boolean>; textColor: import('element-plus/es/utils').EpPropFinalized<StringConstructor, unknown, unknown, "", boolean>; name: import('element-plus/es/utils').EpPropFinalized<StringConstructor, unknown, unknown, undefined, boolean>; validateEvent: import('element-plus/es/utils').EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>; }; export type RadioProps = ExtractPropTypes<typeof radioProps>; export declare const FILTER_RADIO_PROPS: string[];