@progress/kendo-angular-treeview
Version:
Kendo UI TreeView for Angular
33 lines (32 loc) • 1.74 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 drop hint when you drag an item.
*
* To define the hint template, nest an `<ng-template>` tag with the `kendoTreeViewDropHintTemplate` directive inside a `<kendo-treeview>` tag
* ([see example](slug:draganddrop_treeview#toc-templates)).
*
* The template context provides the following variables:
* - `let-action="action"` ([`DropAction`](slug:api_treeview_dropaction))—The drop action being performed.
* - `let-sourceItem="sourceItem"` ([`TreeItemLookup`](slug:api_treeview_treeitemlookup))—The item being dragged.
* - `let-destinationItem="destinationItem"` ([`TreeItemLookup`](slug:api_treeview_treeitemlookup))—The target item for the drop operation.
*
* @example
* ```html
* <kendo-treeview>
* <ng-template kendoTreeViewDropHintTemplate let-action="action">
* Drop action: {{ action }}
* </ng-template>
* </kendo-treeview>
* ```
*/
export declare class DropHintTemplateDirective {
templateRef: TemplateRef<any>;
constructor(templateRef: TemplateRef<any>);
static ɵfac: i0.ɵɵFactoryDeclaration<DropHintTemplateDirective, [{ optional: true; }]>;
static ɵdir: i0.ɵɵDirectiveDeclaration<DropHintTemplateDirective, "[kendoTreeViewDropHintTemplate]", never, {}, {}, never, never, true, never>;
}