tree-select.d.ts 866 B

12345678910111213141516171819202122232425262728293031
  1. import { SuperComponent } from '../common/src/index';
  2. import type { TreeOptionData } from '../common/common';
  3. export default class TreeSelect extends SuperComponent {
  4. externalClasses: string[];
  5. options: {
  6. multipleSlots: boolean;
  7. };
  8. data: {
  9. prefix: string;
  10. classPrefix: string;
  11. scrollIntoView: any;
  12. };
  13. properties: import("./type").TdTreeSelectProps<TreeOptionData<string | number>>;
  14. controlledProps: {
  15. key: string;
  16. event: string;
  17. }[];
  18. observers: {
  19. 'value, customValue, options, keys, multiple'(): void;
  20. };
  21. lifetimes: {
  22. ready(): void;
  23. };
  24. methods: {
  25. buildTreeOptions(): void;
  26. getScrollIntoView(status: string): void;
  27. onRootChange(e: any): void;
  28. handleTreeClick(e: any): void;
  29. handleChange(e: any): void;
  30. };
  31. }