KENDO_DRAGANDDROP
Constant
Use this utility array to access all Drag and Drop-related components and directives in a standalone Angular component.
Definition
Package:@progress/kendo-angular-utils
Syntax:
TS
import { Component } from '@angular/core';
import { KENDO_DRAGANDDROP } from '@progress/kendo-angular-utils';
@Component({
selector: 'my-app',
standalone: true,
imports: [KENDO_DRAGANDDROP],
template: `
<div kendoDragTarget>Drag me</div>
<div kendoDropTarget>Drop here</div>
`
})
export class AppComponent {}