@progress/kendo-angular-treeview
Version:
Kendo UI TreeView for Angular
34 lines (33 loc) • 1.9 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 { TemplateRef } from '@angular/core';
import * as i0 from "@angular/core";
/**
* Represents the template for the TreeView drag clue when you drag an item.
*
* To define the drag clue template, nest an `<ng-template>` tag with the `kendoTreeViewDragClueTemplate` directive inside a `<kendo-treeview>` tag
* ([see example](slug:draganddrop_treeview#toc-templates)).
*
* The template context provides the following variables:
* - `let-text="text"` (`string`)—The display text of the item being dragged.
* - `let-action="action"` ([`DropAction`](slug:api_treeview_dropaction))—The type of drop action that will occur.
* - `let-sourceItem="sourceItem"` ([`TreeItemLookup`](slug:api_treeview_treeitemlookup))—The TreeView item that is being dragged from its original position.
* - `let-destinationItem="destinationItem"` ([`TreeItemLookup`](slug:api_treeview_treeitemlookup))—The TreeView item that serves as the target for the drop operation.
*
* @example
* ```html
* <kendo-treeview>
* <ng-template kendoTreeViewDragClueTemplate let-text="text">
* Dragging: {{ text }}
* </ng-template>
* </kendo-treeview>
* ```
*/
export declare class DragClueTemplateDirective {
templateRef: TemplateRef<any>;
constructor(templateRef: TemplateRef<any>);
static ɵfac: i0.ɵɵFactoryDeclaration<DragClueTemplateDirective, [{ optional: true; }]>;
static ɵdir: i0.ɵɵDirectiveDeclaration<DragClueTemplateDirective, "[kendoTreeViewDragClueTemplate]", never, {}, {}, never, never, true, never>;
}