checkbox-group.d.ts 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. import { SuperComponent, RelationsOptions } from '../common/src/index';
  2. export default class CheckBoxGroup extends SuperComponent {
  3. externalClasses: string[];
  4. relations: RelationsOptions;
  5. data: {
  6. prefix: string;
  7. classPrefix: string;
  8. checkboxOptions: any[];
  9. };
  10. properties: import("./type").TdCheckboxGroupProps<import("./type").CheckboxGroupValue>;
  11. observers: {
  12. value(): void;
  13. options(): void;
  14. disabled(v: any): void;
  15. };
  16. lifetimes: {
  17. ready(): void;
  18. };
  19. controlledProps: {
  20. key: string;
  21. event: string;
  22. }[];
  23. $checkAll: any;
  24. methods: {
  25. getChildren(): any;
  26. updateChildren(): void;
  27. updateValue({ value, checked, checkAll, item, indeterminate }: {
  28. value: any;
  29. checked: any;
  30. checkAll: any;
  31. item: any;
  32. indeterminate: any;
  33. }): void;
  34. initWithOptions(): void;
  35. handleInnerChildChange(e: any): void;
  36. setCheckall(): void;
  37. };
  38. }