@progress/kendo-angular-utils 24.2.2 → 25.0.0-develop.12

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (39) hide show
  1. package/fesm2022/progress-kendo-angular-utils.mjs +40 -39
  2. package/index.d.ts +1093 -13
  3. package/package-metadata.mjs +2 -2
  4. package/package.json +8 -8
  5. package/adaptive-breakpoints/adaptive-settings.d.ts +0 -21
  6. package/adaptive-breakpoints/adaptive-settings.service.d.ts +0 -24
  7. package/adaptive-breakpoints/adaptive.service.d.ts +0 -57
  8. package/adaptive-breakpoints/index.d.ts +0 -9
  9. package/adaptive-breakpoints/models/adaptive-settings.d.ts +0 -24
  10. package/adaptive-breakpoints/models/adaptive-size.d.ts +0 -9
  11. package/directives.d.ts +0 -36
  12. package/drag-and-drop/drag-state.service.d.ts +0 -58
  13. package/drag-and-drop/draghandle.directive.d.ts +0 -31
  14. package/drag-and-drop/dragtarget-container.directive.d.ts +0 -179
  15. package/drag-and-drop/dragtarget.directive.d.ts +0 -149
  16. package/drag-and-drop/droptarget-container.directive.d.ts +0 -88
  17. package/drag-and-drop/droptarget.directive.d.ts +0 -65
  18. package/drag-and-drop/events/drag-target/drag-event.d.ts +0 -46
  19. package/drag-and-drop/events/drag-target/dragready-event.d.ts +0 -31
  20. package/drag-and-drop/events/drag-target/end-event.d.ts +0 -41
  21. package/drag-and-drop/events/drag-target/index.d.ts +0 -10
  22. package/drag-and-drop/events/drag-target/press-event.d.ts +0 -41
  23. package/drag-and-drop/events/drag-target/release-event.d.ts +0 -41
  24. package/drag-and-drop/events/drag-target/start-event.d.ts +0 -42
  25. package/drag-and-drop/events/drop-target-event.d.ts +0 -48
  26. package/drag-and-drop/events/index.d.ts +0 -6
  27. package/drag-and-drop/hint.component.d.ts +0 -21
  28. package/drag-and-drop/models/autoscroll-options.d.ts +0 -23
  29. package/drag-and-drop/models/coordinates.d.ts +0 -11
  30. package/drag-and-drop/models/drag-axis.d.ts +0 -8
  31. package/drag-and-drop/models/drag-mode.d.ts +0 -8
  32. package/drag-and-drop/models/functions.d.ts +0 -45
  33. package/drag-and-drop/models/hint-settings.d.ts +0 -22
  34. package/drag-and-drop/models/index.d.ts +0 -11
  35. package/drag-and-drop/models/scroll-direction.d.ts +0 -11
  36. package/drag-and-drop/util.d.ts +0 -34
  37. package/drag-and-drop.module.d.ts +0 -35
  38. package/package-metadata.d.ts +0 -9
  39. package/utils.module.d.ts +0 -35
@@ -1,88 +0,0 @@
1
- /**-----------------------------------------------------------------------------------------
2
- * Copyright © 2026 Progress Software Corporation. All rights reserved.
3
- * Licensed under commercial license. See LICENSE.md in the project root for more information
4
- *-------------------------------------------------------------------------------------------*/
5
- import { AfterViewInit, ChangeDetectorRef, ElementRef, EventEmitter, NgZone } from '@angular/core';
6
- import { NormalizedDragEvent } from '@progress/kendo-draggable-common';
7
- import { DragStateService } from './drag-state.service';
8
- import { DropTargetEvent } from './events/drop-target-event';
9
- import * as i0 from "@angular/core";
10
- /**
11
- * Represents the [Kendo UI DropTargetContainer directive for Angular](https://www.telerik.com/kendo-angular-ui/components/utils/api/droptargetcontainerdirective).
12
- * Use this directive to make multiple elements drop targets inside a container.
13
- *
14
- * @example
15
- * ```html
16
- * <div kendoDropTargetContainer dropTargetFilter=".my-droptarget">
17
- * <div class="my-droptarget">
18
- * Drop here
19
- * </div>
20
- * </div>
21
- * ```
22
- */
23
- export declare class DropTargetContainerDirective implements AfterViewInit {
24
- private service;
25
- private element;
26
- private ngZone;
27
- private cdr;
28
- /**
29
- * Sets a selector for elements in the container to make them drop targets. [See example](https://www.telerik.com/kendo-angular-ui/components/utils/draganddrop/drop-container).
30
- */
31
- set dropTargetFilter(value: string);
32
- get dropTargetFilter(): string;
33
- /**
34
- * Specifies whether the drop targets within the container will emit the corresponding events upon interaction with a drag target.
35
- */
36
- set dropDisabled(value: boolean);
37
- get dropDisabled(): boolean;
38
- /**
39
- * Fires when a drag target enters a drop target.
40
- */
41
- onDragEnter: EventEmitter<DropTargetEvent>;
42
- /**
43
- * Fires when a drag target is dragged over a drop target.
44
- */
45
- onDragOver: EventEmitter<DropTargetEvent>;
46
- /**
47
- * Fires when a drag target leaves a drop target.
48
- */
49
- onDragLeave: EventEmitter<DropTargetEvent>;
50
- /**
51
- * Fires when a drag target is dropped over a drop target.
52
- */
53
- onDrop: EventEmitter<DropTargetEvent>;
54
- /**
55
- * Notifies the `DropTargetContainer` that its content has changed.
56
- */
57
- notify(): void;
58
- constructor(service: DragStateService, element: ElementRef, ngZone: NgZone, cdr: ChangeDetectorRef);
59
- private currentDropTargetElement;
60
- private previousDropTargets;
61
- private _dropTargetFilter;
62
- private _dropDisabled;
63
- private get nativeElement();
64
- ngAfterViewInit(): void;
65
- private get allDropTargets();
66
- /**
67
- * @hidden
68
- */
69
- handleDragEnter(event: NormalizedDragEvent): void;
70
- /**
71
- * @hidden
72
- */
73
- handleDragLeave(event: NormalizedDragEvent): void;
74
- /**
75
- * @hidden
76
- */
77
- handleDragOver(event: NormalizedDragEvent): void;
78
- /**
79
- * @hidden
80
- */
81
- handleDrop(event: NormalizedDragEvent): void;
82
- private initializeDropTargets;
83
- private emitZoneAwareEvent;
84
- private getDropIndex;
85
- private clearPreviousTargets;
86
- static ɵfac: i0.ɵɵFactoryDeclaration<DropTargetContainerDirective, never>;
87
- static ɵdir: i0.ɵɵDirectiveDeclaration<DropTargetContainerDirective, "[kendoDropTargetContainer]", ["kendoDropTargetContainer"], { "dropTargetFilter": { "alias": "dropTargetFilter"; "required": false; }; "dropDisabled": { "alias": "dropDisabled"; "required": false; }; }, { "onDragEnter": "onDragEnter"; "onDragOver": "onDragOver"; "onDragLeave": "onDragLeave"; "onDrop": "onDrop"; }, never, never, true, never>;
88
- }
@@ -1,65 +0,0 @@
1
- /**-----------------------------------------------------------------------------------------
2
- * Copyright © 2026 Progress Software Corporation. All rights reserved.
3
- * Licensed under commercial license. See LICENSE.md in the project root for more information
4
- *-------------------------------------------------------------------------------------------*/
5
- import { ElementRef, EventEmitter, NgZone, OnDestroy, OnInit } from "@angular/core";
6
- import { NormalizedDragEvent } from "@progress/kendo-draggable-common";
7
- import { DragStateService } from "./drag-state.service";
8
- import { DropTargetEvent } from './events/drop-target-event';
9
- import * as i0 from "@angular/core";
10
- /**
11
- * Represents the Kendo UI DropTarget directive for Angular.
12
- * Use this directive to make an element a drop target for draggable items.
13
- *
14
- * ```html
15
- * <div kendoDropTarget>
16
- * Drop here
17
- * </div>
18
- * ```
19
- *
20
- */
21
- export declare class DropTargetDirective implements OnInit, OnDestroy {
22
- private service;
23
- private element;
24
- private ngZone;
25
- /**
26
- * Fires when a drag target enters the drop target.
27
- */
28
- onDragEnter: EventEmitter<DropTargetEvent>;
29
- /**
30
- * Fires when a drag target is dragged over the drop target.
31
- */
32
- onDragOver: EventEmitter<DropTargetEvent>;
33
- /**
34
- * Fires when a drag target leaves the drop target.
35
- */
36
- onDragLeave: EventEmitter<DropTargetEvent>;
37
- /**
38
- * Fires when a drag target is dropped over the drop target.
39
- */
40
- onDrop: EventEmitter<DropTargetEvent>;
41
- constructor(service: DragStateService, element: ElementRef, ngZone: NgZone);
42
- private dropTarget;
43
- ngOnInit(): void;
44
- ngOnDestroy(): void;
45
- /**
46
- * @hidden
47
- */
48
- handleDragEnter(event: NormalizedDragEvent): void;
49
- /**
50
- * @hidden
51
- */
52
- handleDragLeave(event: NormalizedDragEvent): void;
53
- /**
54
- * @hidden
55
- */
56
- handleDragOver(event: NormalizedDragEvent): void;
57
- /**
58
- * @hidden
59
- */
60
- handleDrop(event: NormalizedDragEvent): void;
61
- private initializeDropTarget;
62
- private emitZoneAwareEvent;
63
- static ɵfac: i0.ɵɵFactoryDeclaration<DropTargetDirective, never>;
64
- static ɵdir: i0.ɵɵDirectiveDeclaration<DropTargetDirective, "[kendoDropTarget]", ["kendoDropTarget"], {}, { "onDragEnter": "onDragEnter"; "onDragOver": "onDragOver"; "onDragLeave": "onDragLeave"; "onDrop": "onDrop"; }, never, never, true, never>;
65
- }
@@ -1,46 +0,0 @@
1
- /**-----------------------------------------------------------------------------------------
2
- * Copyright © 2026 Progress Software Corporation. All rights reserved.
3
- * Licensed under commercial license. See LICENSE.md in the project root for more information
4
- *-------------------------------------------------------------------------------------------*/
5
- import { NormalizedDragEvent } from '@progress/kendo-draggable-common';
6
- import { PreventableEvent } from '@progress/kendo-angular-common';
7
- /**
8
- * Arguments for the drag event of the `DragTarget` and `DragTargetContainer`.
9
- */
10
- export declare class DragTargetDragEvent extends PreventableEvent {
11
- /**
12
- * The information related to the current drag event.
13
- * This is the normalized drag event that contains details about the drag operation.
14
- */
15
- dragEvent: NormalizedDragEvent;
16
- /**
17
- * The DOM element being dragged.
18
- */
19
- dragTarget: HTMLElement;
20
- /**
21
- * The hint element of the `DragTarget`.
22
- */
23
- hintElement?: HTMLElement;
24
- /**
25
- * The identifier passed to the `dragTargetId` input property of the `DragTarget` or `DragTargetContainer` directive.
26
- */
27
- dragTargetId?: any;
28
- /**
29
- * The index of the current drag target in the collection of drag targets. Applies to `DragTargetContainer` directive.
30
- */
31
- dragTargetIndex?: number;
32
- /**
33
- * Left for backward compatibility for the DragTarget deprecated events.
34
- * @hidden
35
- */
36
- get normalizedEvent(): NormalizedDragEvent;
37
- /**
38
- * Left for backward compatibility for the DragTarget deprecated events.
39
- * @hidden
40
- */
41
- get hostElement(): HTMLElement;
42
- /**
43
- * @hidden
44
- */
45
- constructor(args?: any);
46
- }
@@ -1,31 +0,0 @@
1
- /**-----------------------------------------------------------------------------------------
2
- * Copyright © 2026 Progress Software Corporation. All rights reserved.
3
- * Licensed under commercial license. See LICENSE.md in the project root for more information
4
- *-------------------------------------------------------------------------------------------*/
5
- import { NormalizedDragEvent } from '@progress/kendo-draggable-common';
6
- /**
7
- * Arguments for the dragReady event of the `DragTarget` and `DragTargetContainer`.
8
- */
9
- export declare class DragTargetDragReadyEvent {
10
- /**
11
- * The information related to the current drag event.
12
- * This is the normalized drag event that contains details about the drag operation.
13
- */
14
- dragEvent: NormalizedDragEvent;
15
- /**
16
- * The DOM element being dragged.
17
- */
18
- dragTarget: HTMLElement;
19
- /**
20
- * The identifier passed to the `dragTargetId` input property of the `DragTarget` or `DragTargetContainer` directive.
21
- */
22
- dragTargetId?: any;
23
- /**
24
- * The index of the current drag target in the collection of drag targets. Applies to `DragTargetContainer` directive.
25
- */
26
- dragTargetIndex?: number;
27
- /**
28
- * @hidden
29
- */
30
- constructor(args?: any);
31
- }
@@ -1,41 +0,0 @@
1
- /**-----------------------------------------------------------------------------------------
2
- * Copyright © 2026 Progress Software Corporation. All rights reserved.
3
- * Licensed under commercial license. See LICENSE.md in the project root for more information
4
- *-------------------------------------------------------------------------------------------*/
5
- import { NormalizedDragEvent } from '@progress/kendo-draggable-common';
6
- /**
7
- * Arguments for the dragEnd event of the `DragTarget` and `DragTargetContainer`.
8
- */
9
- export declare class DragTargetDragEndEvent {
10
- /**
11
- * The information related to the current drag event.
12
- * This is the normalized drag event that contains details about the drag operation.
13
- */
14
- dragEvent: NormalizedDragEvent;
15
- /**
16
- * The DOM element being dragged.
17
- */
18
- dragTarget: HTMLElement;
19
- /**
20
- * The identifier passed to the `dragTargetId` input property of the `DragTarget` or `DragTargetContainer` directive.
21
- */
22
- dragTargetId?: any;
23
- /**
24
- * The index of the current drag target in the collection of drag targets. Applies to `DragTargetContainer` directive.
25
- */
26
- dragTargetIndex?: number;
27
- /**
28
- * Left for backward compatibility for the DragTarget deprecated events.
29
- * @hidden
30
- */
31
- get normalizedEvent(): NormalizedDragEvent;
32
- /**
33
- * Left for backward compatibility for the DragTarget deprecated events.
34
- * @hidden
35
- */
36
- get hostElement(): HTMLElement;
37
- /**
38
- * @hidden
39
- */
40
- constructor(args?: any);
41
- }
@@ -1,10 +0,0 @@
1
- /**-----------------------------------------------------------------------------------------
2
- * Copyright © 2026 Progress Software Corporation. All rights reserved.
3
- * Licensed under commercial license. See LICENSE.md in the project root for more information
4
- *-------------------------------------------------------------------------------------------*/
5
- export { DragTargetPressEvent } from './press-event';
6
- export { DragTargetDragReadyEvent } from './dragready-event';
7
- export { DragTargetDragStartEvent } from './start-event';
8
- export { DragTargetDragEndEvent } from './end-event';
9
- export { DragTargetDragEvent } from './drag-event';
10
- export { DragTargetReleaseEvent } from './release-event';
@@ -1,41 +0,0 @@
1
- /**-----------------------------------------------------------------------------------------
2
- * Copyright © 2026 Progress Software Corporation. All rights reserved.
3
- * Licensed under commercial license. See LICENSE.md in the project root for more information
4
- *-------------------------------------------------------------------------------------------*/
5
- import { NormalizedDragEvent } from '@progress/kendo-draggable-common';
6
- /**
7
- * Arguments for the press event of the `DragTarget` and `DragTargetContainer`.
8
- */
9
- export declare class DragTargetPressEvent {
10
- /**
11
- * The information related to the current drag event.
12
- * This is the normalized drag event that contains details about the drag operation.
13
- */
14
- dragEvent: NormalizedDragEvent;
15
- /**
16
- * The DOM element being dragged.
17
- */
18
- dragTarget: HTMLElement;
19
- /**
20
- * The identifier passed to the `dragTargetId` input property of the `DragTarget` or `DragTargetContainer` directive.
21
- */
22
- dragTargetId?: any;
23
- /**
24
- * The index of the current drag target in the collection of drag targets. Applies to `DragTargetContainer` directive.
25
- */
26
- dragTargetIndex?: number;
27
- /**
28
- * Left for backward compatibility for the DragTarget deprecated events.
29
- * @hidden
30
- */
31
- get normalizedEvent(): NormalizedDragEvent;
32
- /**
33
- * Left for backward compatibility for the DragTarget deprecated events.
34
- * @hidden
35
- */
36
- get hostElement(): HTMLElement;
37
- /**
38
- * @hidden
39
- */
40
- constructor(args?: any);
41
- }
@@ -1,41 +0,0 @@
1
- /**-----------------------------------------------------------------------------------------
2
- * Copyright © 2026 Progress Software Corporation. All rights reserved.
3
- * Licensed under commercial license. See LICENSE.md in the project root for more information
4
- *-------------------------------------------------------------------------------------------*/
5
- import { NormalizedDragEvent } from '@progress/kendo-draggable-common';
6
- /**
7
- * Arguments for the release event of the `DragTarget` and `DragTargetContainer`.
8
- */
9
- export declare class DragTargetReleaseEvent {
10
- /**
11
- * The information related to the current drag event.
12
- * This is the normalized drag event that contains details about the drag operation.
13
- */
14
- dragEvent: NormalizedDragEvent;
15
- /**
16
- * The DOM element being dragged.
17
- */
18
- dragTarget: HTMLElement;
19
- /**
20
- * The identifier passed to the `dragTargetId` input property of the `DragTarget` or `DragTargetContainer` directive.
21
- */
22
- dragTargetId?: any;
23
- /**
24
- * The index of the current drag target in the collection of drag targets. Applies to `DragTargetContainer` directive.
25
- */
26
- dragTargetIndex?: number;
27
- /**
28
- * Left for backward compatibility for the DragTarget deprecated events.
29
- * @hidden
30
- */
31
- get normalizedEvent(): NormalizedDragEvent;
32
- /**
33
- * Left for backward compatibility for the DragTarget deprecated events.
34
- * @hidden
35
- */
36
- get hostElement(): HTMLElement;
37
- /**
38
- * @hidden
39
- */
40
- constructor(args?: any);
41
- }
@@ -1,42 +0,0 @@
1
- /**-----------------------------------------------------------------------------------------
2
- * Copyright © 2026 Progress Software Corporation. All rights reserved.
3
- * Licensed under commercial license. See LICENSE.md in the project root for more information
4
- *-------------------------------------------------------------------------------------------*/
5
- import { NormalizedDragEvent } from '@progress/kendo-draggable-common';
6
- import { PreventableEvent } from '@progress/kendo-angular-common';
7
- /**
8
- * Arguments for the `dragStart` event of the `DragTarget` and `DragTargetContainer`.
9
- */
10
- export declare class DragTargetDragStartEvent extends PreventableEvent {
11
- /**
12
- * The information related to the current drag event.
13
- * This is the normalized drag event that contains details about the drag operation.
14
- */
15
- dragEvent: NormalizedDragEvent;
16
- /**
17
- * The DOM element being dragged.
18
- */
19
- dragTarget: HTMLElement;
20
- /**
21
- * The identifier passed to the `dragTargetId` input property of the `DragTarget` or `DragTargetContainer` directive.
22
- */
23
- dragTargetId?: any;
24
- /**
25
- * The index of the current drag target in the collection of drag targets. Applies to `DragTargetContainer` directive.
26
- */
27
- dragTargetIndex?: number;
28
- /**
29
- * Left for backward compatibility for the DragTarget deprecated events.
30
- * @hidden
31
- */
32
- get normalizedEvent(): NormalizedDragEvent;
33
- /**
34
- * Left for backward compatibility for the DragTarget deprecated events.
35
- * @hidden
36
- */
37
- get hostElement(): HTMLElement;
38
- /**
39
- * @hidden
40
- */
41
- constructor(args?: any);
42
- }
@@ -1,48 +0,0 @@
1
- /**-----------------------------------------------------------------------------------------
2
- * Copyright © 2026 Progress Software Corporation. All rights reserved.
3
- * Licensed under commercial license. See LICENSE.md in the project root for more information
4
- *-------------------------------------------------------------------------------------------*/
5
- import { NormalizedDragEvent } from "@progress/kendo-draggable-common";
6
- /**
7
- * Arguments for the drag events of the `DropTarget` and `DropTargetContainer` directives.
8
- */
9
- export declare class DropTargetEvent {
10
- /**
11
- * The current drag target element.
12
- */
13
- dragTarget: HTMLElement;
14
- /**
15
- * The current drop target element.
16
- */
17
- dropTarget: HTMLElement;
18
- /**
19
- * The information related to the current drag event.
20
- */
21
- dragEvent: NormalizedDragEvent;
22
- /**
23
- * The data passed to the `dragData` input property of the `DragTarget` or `DragTargetContainer` directive.
24
- */
25
- dragData: any;
26
- /**
27
- * The index of the current drop target in the collection of drop targets. Applies to `DropTargetContainer` directive.
28
- */
29
- dropTargetIndex?: number;
30
- /**
31
- * The hint element of the `DragTarget`.
32
- */
33
- hintElement?: HTMLElement;
34
- /**
35
- * Left for backward compatibility for the DropTarget deprecated events.
36
- * @hidden
37
- */
38
- get normalizedEvent(): NormalizedDragEvent;
39
- /**
40
- * Left for backward compatibility for the DropTarget deprecated events.
41
- * @hidden
42
- */
43
- get hostElement(): HTMLElement;
44
- /**
45
- * @hidden
46
- */
47
- constructor(args?: any);
48
- }
@@ -1,6 +0,0 @@
1
- /**-----------------------------------------------------------------------------------------
2
- * Copyright © 2026 Progress Software Corporation. All rights reserved.
3
- * Licensed under commercial license. See LICENSE.md in the project root for more information
4
- *-------------------------------------------------------------------------------------------*/
5
- export { DropTargetEvent } from './drop-target-event';
6
- export * from './drag-target';
@@ -1,21 +0,0 @@
1
- /**-----------------------------------------------------------------------------------------
2
- * Copyright © 2026 Progress Software Corporation. All rights reserved.
3
- * Licensed under commercial license. See LICENSE.md in the project root for more information
4
- *-------------------------------------------------------------------------------------------*/
5
- import { ElementRef, TemplateRef } from "@angular/core";
6
- import * as i0 from "@angular/core";
7
- /**
8
- * @hidden
9
- */
10
- export declare class HintComponent {
11
- element: ElementRef;
12
- template: TemplateRef<any>;
13
- directive: any;
14
- targetIndex: number;
15
- contextData: any;
16
- customContext: any;
17
- pointerEvents: string;
18
- constructor(element: ElementRef);
19
- static ɵfac: i0.ɵɵFactoryDeclaration<HintComponent, never>;
20
- static ɵcmp: i0.ɵɵComponentDeclaration<HintComponent, "kendo-draghint", never, { "template": { "alias": "template"; "required": false; }; "directive": { "alias": "directive"; "required": false; }; "targetIndex": { "alias": "targetIndex"; "required": false; }; "contextData": { "alias": "contextData"; "required": false; }; "customContext": { "alias": "customContext"; "required": false; }; }, {}, never, never, true, never>;
21
- }
@@ -1,23 +0,0 @@
1
- /**-----------------------------------------------------------------------------------------
2
- * Copyright © 2026 Progress Software Corporation. All rights reserved.
3
- * Licensed under commercial license. See LICENSE.md in the project root for more information
4
- *-------------------------------------------------------------------------------------------*/
5
- import { ElementRef } from "@angular/core";
6
- import { ScrollDirection } from "./scroll-direction";
7
- /**
8
- * Represents additional configuration options for the autoScroll feature of the DragTarget.
9
- */
10
- export interface AutoScrollOptions {
11
- /**
12
- * Sets the element for boundary detection. Used to calculate the autoScroll velocity.
13
- */
14
- boundaryElementRef?: ElementRef;
15
- /**
16
- * Sets the direction for the autoScroll feature.
17
- */
18
- direction?: ScrollDirection;
19
- /**
20
- * Enables or disables the autoScroll feature.
21
- */
22
- enabled?: boolean;
23
- }
@@ -1,11 +0,0 @@
1
- /**-----------------------------------------------------------------------------------------
2
- * Copyright © 2026 Progress Software Corporation. All rights reserved.
3
- * Licensed under commercial license. See LICENSE.md in the project root for more information
4
- *-------------------------------------------------------------------------------------------*/
5
- /**
6
- * Represents a unified type for all coordinates.
7
- */
8
- export interface Coordinates {
9
- x: number;
10
- y: number;
11
- }
@@ -1,8 +0,0 @@
1
- /**-----------------------------------------------------------------------------------------
2
- * Copyright © 2026 Progress Software Corporation. All rights reserved.
3
- * Licensed under commercial license. See LICENSE.md in the project root for more information
4
- *-------------------------------------------------------------------------------------------*/
5
- /**
6
- * Represents the axis to which the dragging will be restricted.
7
- */
8
- export type DragAxis = 'horizontal' | 'vertical';
@@ -1,8 +0,0 @@
1
- /**-----------------------------------------------------------------------------------------
2
- * Copyright © 2026 Progress Software Corporation. All rights reserved.
3
- * Licensed under commercial license. See LICENSE.md in the project root for more information
4
- *-------------------------------------------------------------------------------------------*/
5
- /**
6
- * Represents the available modes for the drag action.
7
- */
8
- export type DragMode = 'auto' | 'manual';
@@ -1,45 +0,0 @@
1
- /**-----------------------------------------------------------------------------------------
2
- * Copyright © 2026 Progress Software Corporation. All rights reserved.
3
- * Licensed under commercial license. See LICENSE.md in the project root for more information
4
- *-------------------------------------------------------------------------------------------*/
5
- /**
6
- * Represents the callback used by the `dragData` property of the [`DragTarget`](https://www.telerik.com/kendo-angular-ui/components/utils/api/dragtargetdirective) and [`DragTargetContainer`](https://www.telerik.com/kendo-angular-ui/components/utils/api/dragtargetcontainerdirective) directives.
7
- * It returns the custom data that will be available in the events of the respective [`DropTarget`](https://www.telerik.com/kendo-angular-ui/components/utils/api/droptargetdirective) or [`DropTargetContainer`](https://www.telerik.com/kendo-angular-ui/components/utils/api/droptargetcontainerdirective) directives upon interaction.
8
- *
9
- */
10
- export type DragTargetDataFn = (args: DragTargetDataArgs) => any;
11
- /**
12
- * Represents the callback used by the `dragTargetId` property of the [`DragTargetContainer`](https://www.telerik.com/kendo-angular-ui/components/utils/api/dragtargetcontainerdirective) directive.
13
- * It returns a custom identifier that will be available in the events of the respective directive upon its interaction with a valid DropTarget.
14
- */
15
- export type DragTargetIdFn = (args: DragTargetIdArgs) => any;
16
- /**
17
- * Represents the callback arguments for the `dragData` property.
18
- */
19
- export interface DragTargetDataArgs {
20
- /**
21
- * The drag target HTML element.
22
- */
23
- dragTarget: HTMLElement;
24
- /**
25
- * The drag target unique identifier, result from executing the callback used by the `dragTargetId` property. Applies to `DragTargetContainerDirective`.
26
- */
27
- dragTargetId: any;
28
- /**
29
- * The index of the current drag target in the collection. Applies to `DragTargetContainerDirective`.
30
- */
31
- dragTargetIndex: number;
32
- }
33
- /**
34
- * Represents the callback arguments for the `dragTargetId` property.
35
- */
36
- export interface DragTargetIdArgs {
37
- /**
38
- * The drag target HTML element.
39
- */
40
- dragTarget: HTMLElement;
41
- /**
42
- * The index of the current drag target in the collection. Applies to `DragTargetContainerDirective`.
43
- */
44
- dragTargetIndex: number;
45
- }
@@ -1,22 +0,0 @@
1
- /**-----------------------------------------------------------------------------------------
2
- * Copyright © 2026 Progress Software Corporation. All rights reserved.
3
- * Licensed under commercial license. See LICENSE.md in the project root for more information
4
- *-------------------------------------------------------------------------------------------*/
5
- import { TemplateRef, ViewContainerRef } from "@angular/core";
6
- /**
7
- * Represents additional configuration options for the hint element of the DragTarget and DragTargetContainer directives.
8
- */
9
- export interface HintSettings {
10
- /**
11
- * Renders the given template as a hint for the current drag target.
12
- */
13
- hintTemplate?: TemplateRef<any>;
14
- /**
15
- * Sets the CSS classes for the hint host element when using the default hint. Supports values accepted by [`ngClass`](link:site.data.urls.angular['ngclassapi']).
16
- */
17
- hintClass?: any;
18
- /**
19
- * Controls the hint container. By default, the hint is appended to the document body.
20
- */
21
- appendTo?: ViewContainerRef;
22
- }
@@ -1,11 +0,0 @@
1
- /**-----------------------------------------------------------------------------------------
2
- * Copyright © 2026 Progress Software Corporation. All rights reserved.
3
- * Licensed under commercial license. See LICENSE.md in the project root for more information
4
- *-------------------------------------------------------------------------------------------*/
5
- export { AutoScrollOptions } from './autoscroll-options';
6
- export { DragTargetDataFn, DragTargetIdFn, DragTargetDataArgs, DragTargetIdArgs } from './functions';
7
- export { ScrollDirection } from './scroll-direction';
8
- export { Coordinates } from './coordinates';
9
- export { HintSettings } from './hint-settings';
10
- export { DragAxis } from './drag-axis';
11
- export { DragMode } from './drag-mode';
@@ -1,11 +0,0 @@
1
- /**-----------------------------------------------------------------------------------------
2
- * Copyright © 2026 Progress Software Corporation. All rights reserved.
3
- * Licensed under commercial license. See LICENSE.md in the project root for more information
4
- *-------------------------------------------------------------------------------------------*/
5
- /**
6
- * Represents the autoscroll direction during drag-and-drop operations.
7
- */
8
- export interface ScrollDirection {
9
- horizontal: boolean;
10
- vertical: boolean;
11
- }