devexpress-reporting
Version:
DevExpress Reporting provides the capability to develop a reporting application to create and customize reports.
24 lines (23 loc) • 1.46 kB
TypeScript
/**
* DevExpress HTML/JS Reporting (designer\internal\dragdrop\_objectExplorerDragDropHandler.d.ts)
* Version: 24.2.6
* Build date: Mar 18, 2025
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
* License: https://www.devexpress.com/Support/EULAs/universal.xml
*/
/// <reference types="jquery" />
import { ISurfaceContext } from '@devexpress/analytics-core/analytics-elements';
import { DragDropHandler, DragHelperContent, SurfaceSelection } from '@devexpress/analytics-core/analytics-internal';
import { UndoEngine } from '@devexpress/analytics-core/analytics-utils';
import { TreeListItemViewModel } from '@devexpress/analytics-core/analytics-widgets-internal';
import * as ko from 'knockout';
import { ObjectExplorerDragDropHelper } from './_objectExplorerDragDropHelper';
export declare class ObjectExplorerDragDropHandler extends DragDropHandler {
private _canAddItems;
protected undoEngine: ko.Observable<UndoEngine> | ko.Computed<UndoEngine>;
protected _lastList: TreeListItemViewModel;
protected _timeout: any;
constructor(_canAddItems: ko.Computed<boolean>, surface: ko.Observable<ISurfaceContext> | ko.Computed<ISurfaceContext>, selection: SurfaceSelection, undoEngine: ko.Observable<UndoEngine> | ko.Computed<UndoEngine>, dragHelperContent: DragHelperContent);
drag(event: MouseEvent | JQueryEventObject, ui: HTMLElement): void;
reportControlsDragDropHelper: ObjectExplorerDragDropHelper;
}