navbar.d.ts 956 B

12345678910111213141516171819202122232425262728293031323334
  1. import { SuperComponent } from '../common/src/index';
  2. export default class Navbar extends SuperComponent {
  3. externalClasses: string[];
  4. timer: any;
  5. options: {
  6. addGlobalClass: boolean;
  7. multipleSlots: boolean;
  8. };
  9. properties: import("./type").TdNavbarProps;
  10. observers: {
  11. visible(this: Navbar, visible: any): void;
  12. fixed(this: Navbar, fixed: any): void;
  13. background(this: Navbar, background: any): void;
  14. 'homeIcon, leftIcon'(this: Navbar): void;
  15. 'title,titleMaxLength'(this: any): void;
  16. };
  17. data: {
  18. hasHomeIcon: boolean;
  19. hasBackIcon: boolean;
  20. classPrefix: string;
  21. fixedClass: string;
  22. contentStyle: string;
  23. boxStyle: string;
  24. opacity: number;
  25. ios: boolean;
  26. showTitle: string;
  27. };
  28. attached(): void;
  29. methods: {
  30. calcLeftBtn(): void;
  31. goHome(): void;
  32. goBack(): void;
  33. };
  34. }