@progress/kendo-angular-pivotgrid
Version:
PivotGrid package for Angular
35 lines (34 loc) • 1.65 kB
TypeScript
/**-----------------------------------------------------------------------------------------
* Copyright © 2025 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the project root for more information
*-------------------------------------------------------------------------------------------*/
import { ElementRef, OnInit, NgZone, OnDestroy, Renderer2 } from '@angular/core';
import { DraggableDirective } from '@progress/kendo-angular-common';
import { PivotGridAxis } from '@progress/kendo-pivotgrid-common';
import { ConfiguratorService } from './configurator.service';
import { DropCueService } from './drop-cue.service';
import * as i0 from "@angular/core";
/**
* @hidden
*/
export declare class DraggableChipDirective implements OnInit, OnDestroy {
draggable: DraggableDirective;
private element;
private zone;
private service;
private cue;
private renderer;
get pointerEvents(): any;
touchActions: string;
item: PivotGridAxis;
initialX: any;
initialY: any;
private drag;
private invalidTarget;
private subs;
constructor(draggable: DraggableDirective, element: ElementRef, zone: NgZone, service: ConfiguratorService, cue: DropCueService, renderer: Renderer2);
ngOnInit(): void;
ngOnDestroy(): void;
static ɵfac: i0.ɵɵFactoryDeclaration<DraggableChipDirective, [{ optional: true; }, null, null, null, null, null]>;
static ɵdir: i0.ɵɵDirectiveDeclaration<DraggableChipDirective, "[kendoChipDraggable]", never, { "item": { "alias": "item"; "required": false; }; }, {}, never, never, true, never>;
}