fab.d.ts 714 B

123456789101112131415161718192021222324252627
  1. import { SuperComponent } from '../common/src/index';
  2. export default class Fab extends SuperComponent {
  3. behaviors: string[];
  4. properties: import("./type").TdFabProps;
  5. externalClasses: string[];
  6. data: {
  7. prefix: string;
  8. classPrefix: string;
  9. buttonData: {
  10. size: string;
  11. shape: string;
  12. theme: string;
  13. tClass: string;
  14. };
  15. moveStyle: any;
  16. };
  17. observers: {
  18. 'buttonProps.**, icon, text, ariaLabel, yBounds'(): void;
  19. };
  20. methods: {
  21. onTplButtonTap(e: any): void;
  22. onStart(e: any): void;
  23. onMove(e: any): void;
  24. onEnd(e: any): void;
  25. computedSize(): void;
  26. };
  27. }