dndSourceComp.d.ts 591 B

12345678910111213141516
  1. import { Component } from "../widgets/component";
  2. import { RowNode } from "../entities/rowNode";
  3. import { Beans } from "./beans";
  4. import { Column } from "../entities/column";
  5. export declare class DndSourceComp extends Component {
  6. private readonly beans;
  7. private readonly rowNode;
  8. private readonly column;
  9. private readonly cellValue;
  10. private readonly eCell;
  11. constructor(rowNode: RowNode, column: Column, cellValue: string, beans: Beans, eCell: HTMLElement);
  12. private postConstruct;
  13. private addDragSource;
  14. private onDragStart;
  15. private checkVisibility;
  16. }