adou-ui
Version:
feat:修复了TagInput无法清空的问题
32 lines (31 loc) • 899 B
TypeScript
import React from "react";
import "./index.scss";
interface RadioProps {
valueKey?: string;
labelKey?: string;
returnType?: 'str' | 'obj';
name?: string;
key?: string;
width?: any;
isFormItem?: string;
errMsg?: string;
labelWidth?: any;
commonSuffixIcon?: string;
readOnly?: boolean;
defaultValue?: any;
checked?: boolean;
label?: string;
inputGroup?: boolean;
labelPosition?: 'left-top' | 'center' | 'top' | 'input-group';
labelColor?: string;
required?: boolean;
id?: string;
value?: string;
externalClassName?: string;
options?: any[];
inline?: boolean;
onChangeOK?: (item: any) => void;
onFormDataChange?: (key: string, value: any) => void;
}
declare const _default: React.ForwardRefExoticComponent<RadioProps & React.RefAttributes<any>>;
export default _default;