step-item.d.ts 916 B

12345678910111213141516171819202122232425262728293031323334
  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. index: number;
  13. isDot: boolean;
  14. curStatus: string;
  15. layout: string;
  16. isLastChild: boolean;
  17. sequence: string;
  18. };
  19. observers: {
  20. status(value: any): void;
  21. };
  22. methods: {
  23. updateStatus({ current, currentStatus, index, theme, layout, items, sequence }: {
  24. current: any;
  25. currentStatus: any;
  26. index: any;
  27. theme: any;
  28. layout: any;
  29. items: any;
  30. sequence: any;
  31. }): void;
  32. onTap(): void;
  33. };
  34. }