mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
types(CheckboxGroup): toggleAll should allow boolean type (#8133)
This commit is contained in:
parent
58cb5b6d6b
commit
1019463e89
@ -9,10 +9,12 @@ const [createComponent, bem] = createNamespace('checkbox-group');
|
||||
|
||||
export const CHECKBOX_GROUP_KEY = 'vanCheckboxGroup';
|
||||
|
||||
export type CheckboxGroupToggleAllOptions = {
|
||||
checked?: boolean;
|
||||
skipDisabled?: boolean;
|
||||
};
|
||||
export type CheckboxGroupToggleAllOptions =
|
||||
| boolean
|
||||
| {
|
||||
checked?: boolean;
|
||||
skipDisabled?: boolean;
|
||||
};
|
||||
|
||||
export type CheckboxGroupProvide = CheckerParent & {
|
||||
props: {
|
||||
|
Loading…
x
Reference in New Issue
Block a user