Add name prop for checkbox group

This commit is contained in:
ztplz 2019-03-30 10:47:03 +08:00
parent 55c1be3b54
commit 2a875ee149

View File

@ -25,6 +25,7 @@ export interface AbstractCheckboxGroupProps {
}
export interface CheckboxGroupProps extends AbstractCheckboxGroupProps {
name?: string;
defaultValue?: Array<CheckboxValueType>;
value?: Array<CheckboxValueType>;
onChange?: (checkedValue: Array<CheckboxValueType>) => void;