@progress/kendo-angular-sortable
Version:
A Sortable Component for Angular
19 lines (18 loc) • 916 B
JavaScript
/**-----------------------------------------------------------------------------------------
* Copyright © 2025 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the project root for more information
*-------------------------------------------------------------------------------------------*/
import { SortableBindingDirective } from "./binding.directive";
import { DraggableDirective } from "./draggable.directive";
import { ItemTemplateDirective, PlaceholderTemplateDirective } from "./item-template.directive";
import { SortableComponent } from "./sortable.component";
/**
* Utility array that contains all `@progress/kendo-angular-sortable` related components and directives
*/
export const KENDO_SORTABLE = [
SortableComponent,
DraggableDirective,
PlaceholderTemplateDirective,
ItemTemplateDirective,
SortableBindingDirective
];