New Huajishe Check ChaoXing
This commit is contained in:
38
HuajisheCheckChaoXing/miniprogram_npm/tdesign-miniprogram/checkbox-group/checkbox-group.d.ts
vendored
Normal file
38
HuajisheCheckChaoXing/miniprogram_npm/tdesign-miniprogram/checkbox-group/checkbox-group.d.ts
vendored
Normal file
@@ -0,0 +1,38 @@
|
||||
import { SuperComponent, RelationsOptions } from '../common/src/index';
|
||||
export default class CheckBoxGroup extends SuperComponent {
|
||||
externalClasses: string[];
|
||||
relations: RelationsOptions;
|
||||
data: {
|
||||
prefix: string;
|
||||
classPrefix: string;
|
||||
checkboxOptions: any[];
|
||||
};
|
||||
properties: import("./type").TdCheckboxGroupProps<import("./type").CheckboxGroupValue>;
|
||||
observers: {
|
||||
value(): void;
|
||||
options(): void;
|
||||
disabled(v: any): void;
|
||||
};
|
||||
lifetimes: {
|
||||
ready(): void;
|
||||
};
|
||||
controlledProps: {
|
||||
key: string;
|
||||
event: string;
|
||||
}[];
|
||||
$checkAll: any;
|
||||
methods: {
|
||||
getChildren(): any;
|
||||
updateChildren(): void;
|
||||
updateValue({ value, checked, checkAll, item, indeterminate }: {
|
||||
value: any;
|
||||
checked: any;
|
||||
checkAll: any;
|
||||
item: any;
|
||||
indeterminate: any;
|
||||
}): void;
|
||||
initWithOptions(): void;
|
||||
handleInnerChildChange(e: any): void;
|
||||
setCheckall(): void;
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user