side-bar-item.d.ts 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  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. };
  33. data: {
  34. classPrefix: string;
  35. prefix: string;
  36. active: boolean;
  37. isPre: boolean;
  38. isNext: boolean;
  39. };
  40. methods: {
  41. updateActive(value: any): void;
  42. handleClick(): void;
  43. };
  44. }