side-bar-item.d.ts 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. import { SuperComponent, RelationsOptions } from '../common/src/index';
  2. export default class SideBarItem extends SuperComponent {
  3. externalClasses: string[];
  4. properties: {
  5. tId: {
  6. type: StringConstructor;
  7. };
  8. badgeProps?: {
  9. type: ObjectConstructor;
  10. value?: import("../badge").BadgeProps;
  11. };
  12. disabled?: {
  13. type: BooleanConstructor;
  14. value?: boolean;
  15. };
  16. icon?: {
  17. type: null;
  18. value?: string | object;
  19. };
  20. label?: {
  21. type: StringConstructor;
  22. value?: string;
  23. };
  24. value?: {
  25. type: null;
  26. value?: string | number;
  27. };
  28. };
  29. relations: RelationsOptions;
  30. observers: {
  31. icon(v: any): void;
  32. disabled(v: any): void;
  33. };
  34. data: {
  35. classPrefix: string;
  36. prefix: string;
  37. active: boolean;
  38. isPre: boolean;
  39. isNext: boolean;
  40. };
  41. methods: {
  42. updateActive(value: any): void;
  43. handleClick(): void;
  44. };
  45. }