UNPKG

adou-ui

Version:

feat:修复了TagInput无法清空的问题

24 lines (23 loc) 861 B
import "./index.css"; import { ChangeEvent } from "react"; import React from "react"; export interface SelectProps { defaultValue?: any; options: any[]; placeholder?: string; size?: "sm" | "lg"; className?: string; disabled?: boolean; onChangeOK?: (e?: ChangeEvent<HTMLSelectElement>, ...args: any) => void; } declare const _default: React.ComponentType<Omit<{ defaultValue?: any; onSelectOK: (value: string) => void; options: any[]; placeholder?: string | undefined; size?: "sm" | "lg" | undefined; className?: string | undefined; disabled?: boolean | undefined; onChangeOK?: ((e?: ChangeEvent<HTMLSelectElement> | undefined, ...args: any) => void) | undefined; }, keyof import("react-i18next").WithTranslation<N, undefined>> & import("react-i18next").WithTranslationProps>; export default _default;