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

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 +37 -37
  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,34 +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 { Renderer2 } from "@angular/core";
6
- import { DragAndDropAction, DragTarget } from "@progress/kendo-draggable-common";
7
- /**
8
- * @hidden
9
- */
10
- export declare const getAction: (event: PointerEvent | MouseEvent | TouchEvent | Event, draggable: DragTarget) => DragAndDropAction;
11
- /**
12
- * @hidden
13
- */
14
- export declare const dragTargetTransition = "transform .3s ease-in-out";
15
- /**
16
- * @hidden
17
- */
18
- export declare const isPresent: (value: any) => boolean;
19
- /**
20
- * @hidden
21
- */
22
- export declare function closestBySelector(element: any, selector: string): any;
23
- /**
24
- * @hidden
25
- */
26
- export declare const intersect: (element: HTMLElement, candidates: HTMLElement[]) => HTMLElement | null;
27
- /**
28
- * @hidden
29
- */
30
- export declare const setElementStyles: (renderer: Renderer2, elem: HTMLElement, styles: object) => void;
31
- /**
32
- * @hidden
33
- */
34
- export declare const noop: () => void;
@@ -1,35 +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 * as i0 from "@angular/core";
6
- import * as i1 from "./drag-and-drop/dragtarget.directive";
7
- import * as i2 from "./drag-and-drop/draghandle.directive";
8
- import * as i3 from "./drag-and-drop/droptarget.directive";
9
- import * as i4 from "./drag-and-drop/dragtarget-container.directive";
10
- import * as i5 from "./drag-and-drop/droptarget-container.directive";
11
- import * as i6 from "./drag-and-drop/hint.component";
12
- /**
13
- * Represents the [`NgModule`](link:site.data.urls.angular['ngmodules'])
14
- * definition for the Drag and Drop directives.
15
- *
16
- * @example
17
- * ```ts
18
- * import { DragAndDropModule } from '@progress/kendo-angular-utils';
19
- * import { platformBrowserDynamic } from '@angular/platform-browser-dynamic';
20
- * import { NgModule } from '@angular/core';
21
- * import { AppComponent } from './app.component';
22
- *
23
- * @NgModule({
24
- * declarations: [AppComponent],
25
- * imports: [BrowserModule, DragAndDropModule],
26
- * bootstrap: [AppComponent]
27
- * })
28
- * export class AppModule {}
29
- * ```
30
- */
31
- export declare class DragAndDropModule {
32
- static ɵfac: i0.ɵɵFactoryDeclaration<DragAndDropModule, never>;
33
- static ɵmod: i0.ɵɵNgModuleDeclaration<DragAndDropModule, never, [typeof i1.DragTargetDirective, typeof i2.DragHandleDirective, typeof i3.DropTargetDirective, typeof i4.DragTargetContainerDirective, typeof i5.DropTargetContainerDirective, typeof i6.HintComponent], [typeof i1.DragTargetDirective, typeof i2.DragHandleDirective, typeof i3.DropTargetDirective, typeof i4.DragTargetContainerDirective, typeof i5.DropTargetContainerDirective, typeof i6.HintComponent]>;
34
- static ɵinj: i0.ɵɵInjectorDeclaration<DragAndDropModule>;
35
- }
@@ -1,9 +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 { type PackageMetadata } from '@progress/kendo-licensing';
6
- /**
7
- * @hidden
8
- */
9
- export declare const packageMetadata: PackageMetadata;
package/utils.module.d.ts DELETED
@@ -1,35 +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 * as i0 from "@angular/core";
6
- import * as i1 from "./drag-and-drop/dragtarget.directive";
7
- import * as i2 from "./drag-and-drop/draghandle.directive";
8
- import * as i3 from "./drag-and-drop/droptarget.directive";
9
- import * as i4 from "./drag-and-drop/dragtarget-container.directive";
10
- import * as i5 from "./drag-and-drop/droptarget-container.directive";
11
- import * as i6 from "./drag-and-drop/hint.component";
12
- /**
13
- * Represents the [`NgModule`](link:site.data.urls.angular['ngmodules'])
14
- * definition for the Utils components.
15
- *
16
- * @example
17
- * ```ts
18
- * import { UtilsModule } from '@progress/kendo-angular-utils';
19
- * import { platformBrowserDynamic } from '@angular/platform-browser-dynamic';
20
- * import { NgModule } from '@angular/core';
21
- * import { AppComponent } from './app.component';
22
- *
23
- * @NgModule({
24
- * declarations: [AppComponent],
25
- * imports: [BrowserModule, UtilsModule],
26
- * bootstrap: [AppComponent]
27
- * })
28
- * export class AppModule {}
29
- * ```
30
- */
31
- export declare class UtilsModule {
32
- static ɵfac: i0.ɵɵFactoryDeclaration<UtilsModule, never>;
33
- static ɵmod: i0.ɵɵNgModuleDeclaration<UtilsModule, never, [typeof i1.DragTargetDirective, typeof i2.DragHandleDirective, typeof i3.DropTargetDirective, typeof i4.DragTargetContainerDirective, typeof i5.DropTargetContainerDirective, typeof i6.HintComponent], [typeof i1.DragTargetDirective, typeof i2.DragHandleDirective, typeof i3.DropTargetDirective, typeof i4.DragTargetContainerDirective, typeof i5.DropTargetContainerDirective, typeof i6.HintComponent]>;
34
- static ɵinj: i0.ɵɵInjectorDeclaration<UtilsModule>;
35
- }