UNPKG

element-plus

Version:

A Component Library for Vue 3

45 lines (44 loc) 2.33 kB
import type { ExtractPropTypes } from 'vue'; import type { Language } from 'element-plus/es/locale'; import type { ButtonConfigContext } from 'element-plus/es/components/button'; import type { MessageConfigContext } from 'element-plus/es/components/message'; export type ExperimentalFeatures = {}; export declare const configProviderProps: { readonly emptyValues: ArrayConstructor; readonly valueOnClear: import("element-plus/es/utils").EpPropFinalized<readonly [StringConstructor, NumberConstructor, BooleanConstructor, FunctionConstructor], unknown, unknown, undefined, boolean>; readonly a11y: import("element-plus/es/utils").EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>; readonly locale: { readonly type: import("vue").PropType<Language>; readonly required: false; readonly validator: ((val: unknown) => boolean) | undefined; __epPropKey: true; }; readonly size: { readonly type: import("vue").PropType<import("element-plus/es/utils").EpPropMergeType<StringConstructor, "" | "small" | "default" | "large", never>>; readonly required: false; readonly validator: ((val: unknown) => boolean) | undefined; __epPropKey: true; }; readonly button: { readonly type: import("vue").PropType<ButtonConfigContext>; readonly required: false; readonly validator: ((val: unknown) => boolean) | undefined; __epPropKey: true; }; readonly experimentalFeatures: { readonly type: import("vue").PropType<ExperimentalFeatures>; readonly required: false; readonly validator: ((val: unknown) => boolean) | undefined; __epPropKey: true; }; readonly keyboardNavigation: import("element-plus/es/utils").EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>; readonly message: { readonly type: import("vue").PropType<MessageConfigContext>; readonly required: false; readonly validator: ((val: unknown) => boolean) | undefined; __epPropKey: true; }; readonly zIndex: NumberConstructor; readonly namespace: import("element-plus/es/utils").EpPropFinalized<StringConstructor, unknown, unknown, "el", boolean>; }; export type ConfigProviderProps = ExtractPropTypes<typeof configProviderProps>;