grid-item.d.ts 792 B

12345678910111213141516171819202122232425262728
  1. import { SuperComponent } from '../common/src/index';
  2. export default class GridItem extends SuperComponent {
  3. externalClasses: string[];
  4. options: {
  5. multipleSlots: boolean;
  6. };
  7. relations: {
  8. './grid': {
  9. type: "ancestor";
  10. linked(this: GridItem, target: WechatMiniprogram.Component.TrivialInstance): void;
  11. };
  12. };
  13. properties: import("./type").TdGridItemProps;
  14. data: {
  15. classPrefix: string;
  16. gridItemStyle: string;
  17. gridItemWrapperStyle: string;
  18. gridItemContentStyle: string;
  19. align: string;
  20. layout: string;
  21. };
  22. updateStyle(): void;
  23. getWidthStyle(): string;
  24. getPaddingStyle(): string;
  25. getBorderStyle(): string;
  26. onClick(e: any): void;
  27. jumpLink(): void;
  28. }