yhui-yuanhuan
Version:
A Component Library for Vue 3 based on element-plus
31 lines (30 loc) • 1.66 kB
TypeScript
import type { ExtractPropTypes } from 'vue';
import type { Language } from 'yhui/es/locale';
export type ExperimentalFeatures = {};
export declare const configProviderProps: {
readonly emptyValues: ArrayConstructor;
readonly valueOnClear: import("yhui/es/utils").EpPropFinalized<readonly [StringConstructor, NumberConstructor, BooleanConstructor, FunctionConstructor], unknown, unknown, undefined, boolean>;
readonly a11y: import("yhui/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("yhui/es/utils").EpPropMergeType<StringConstructor, "" | "small" | "default" | "large", never>>;
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("yhui/es/utils").EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
readonly zIndex: NumberConstructor;
readonly namespace: import("yhui/es/utils").EpPropFinalized<StringConstructor, unknown, unknown, "yh", boolean>;
};
export type ConfigProviderProps = ExtractPropTypes<typeof configProviderProps>;