tab-bar-item.d.ts 915 B

1234567891011121314151617181920212223242526272829303132333435
  1. import { SuperComponent, RelationsOptions } from '../common/src/index';
  2. export default class TabBarItem extends SuperComponent {
  3. parent: any;
  4. relations: RelationsOptions;
  5. options: {
  6. multipleSlots: boolean;
  7. };
  8. data: {
  9. prefix: string;
  10. classPrefix: string;
  11. isSpread: boolean;
  12. isChecked: boolean;
  13. hasChildren: boolean;
  14. currentName: string;
  15. split: boolean;
  16. iconOnly: boolean;
  17. theme: string;
  18. crowded: boolean;
  19. shape: string;
  20. };
  21. properties: import("./type").TdTabBarItemProps;
  22. observers: {
  23. subTabBar(value: Record<string, any>[]): void;
  24. };
  25. lifetimes: {
  26. attached(): Promise<void>;
  27. };
  28. methods: {
  29. showSpread(): void;
  30. toggle(): void;
  31. selectChild(event: any): void;
  32. checkActive(value: any): void;
  33. closeSpread(): void;
  34. };
  35. }