1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
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;
| };
| }
|
|