step-item.d.ts 996 B

123456789101112131415161718192021222324252627282930313233343536
  1. import { SuperComponent, RelationsOptions } from '../common/src/index';
  2. export default class StepItem extends SuperComponent {
  3. options: {
  4. multipleSlots: boolean;
  5. };
  6. relations: RelationsOptions;
  7. externalClasses: string[];
  8. properties: import("./type").TdStepItemProps;
  9. data: {
  10. classPrefix: string;
  11. prefix: string;
  12. rootClassName: string;
  13. parent: any;
  14. index: number;
  15. isDot: boolean;
  16. curStatus: string;
  17. curSubStepItems: any[];
  18. curSubStepItemsStatus: any[];
  19. layout: string;
  20. type: string;
  21. isLastChild: boolean;
  22. isLarge: boolean;
  23. readonly: boolean;
  24. computedIcon: string;
  25. };
  26. observers: {
  27. icon(val: any): void;
  28. };
  29. lifetimes: {
  30. ready(): void;
  31. };
  32. methods: {
  33. updateStatus(current: any, currentStatus: any, index: any, theme: any, layout: any, steps: any, readonly: any): void;
  34. click(): void;
  35. };
  36. }