@progress/kendo-angular-utils 22.1.0-develop.9 → 23.0.0-develop.10
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.
- package/adaptive-breakpoints/adaptive-settings.service.d.ts +1 -1
- package/drag-and-drop/dragtarget-container.directive.d.ts +5 -5
- package/drag-and-drop/dragtarget.directive.d.ts +6 -6
- package/drag-and-drop/droptarget-container.directive.d.ts +2 -2
- package/drag-and-drop/models/functions.d.ts +3 -3
- package/fesm2022/progress-kendo-angular-utils.mjs +15 -15
- package/package-metadata.mjs +2 -2
- package/package.json +4 -4
|
@@ -6,7 +6,7 @@ import { Subject } from 'rxjs';
|
|
|
6
6
|
import { AdaptiveSettings } from './models/adaptive-settings';
|
|
7
7
|
import * as i0 from "@angular/core";
|
|
8
8
|
/**
|
|
9
|
-
* A service that lets you change the current adaptive settings dynamically. Use the public `notify` method to update the settings. [See example](
|
|
9
|
+
* A service that lets you change the current adaptive settings dynamically. Use the public `notify` method to update the settings. [See example](https://www.telerik.com/kendo-angular-ui/components/utils/adaptive-settings#changing-the-adaptive-settings-dynamically).
|
|
10
10
|
*/
|
|
11
11
|
export declare class AdaptiveSettingsService {
|
|
12
12
|
/**
|
|
@@ -9,7 +9,7 @@ import { DragTargetIdFn } from './models/functions';
|
|
|
9
9
|
import { DragTargetDragEndEvent, DragTargetDragEvent, DragTargetDragReadyEvent, DragTargetDragStartEvent, DragTargetPressEvent, DragTargetReleaseEvent } from './events/drag-target';
|
|
10
10
|
import * as i0 from "@angular/core";
|
|
11
11
|
/**
|
|
12
|
-
* Represents the [Kendo UI DragTargetContainer directive for Angular](
|
|
12
|
+
* Represents the [Kendo UI DragTargetContainer directive for Angular](https://www.telerik.com/kendo-angular-ui/components/utils/api/dragtargetcontainerdirective).
|
|
13
13
|
* Use this directive to make multiple elements draggable inside a container.
|
|
14
14
|
*
|
|
15
15
|
* @example
|
|
@@ -29,14 +29,14 @@ export declare class DragTargetContainerDirective implements AfterViewInit, OnDe
|
|
|
29
29
|
private viewContainer;
|
|
30
30
|
private cdr;
|
|
31
31
|
/**
|
|
32
|
-
* Defines whether a hint will be used for dragging. By default, the hint is a copy of the current drag target. [See example](
|
|
32
|
+
* Defines whether a hint will be used for dragging. By default, the hint is a copy of the current drag target. [See example](https://www.telerik.com/kendo-angular-ui/components/utils/draganddrop/hint).
|
|
33
33
|
*
|
|
34
34
|
* @default false
|
|
35
35
|
*/
|
|
36
36
|
hint: boolean | HintSettings;
|
|
37
37
|
/**
|
|
38
38
|
* Sets a selector for elements in the container to make them draggable. The possible values include any
|
|
39
|
-
* DOM `selector`. [See example](
|
|
39
|
+
* DOM `selector`. [See example](https://www.telerik.com/kendo-angular-ui/components/utils/draganddrop/drag-container).
|
|
40
40
|
*/
|
|
41
41
|
set dragTargetFilter(value: string);
|
|
42
42
|
get dragTargetFilter(): string;
|
|
@@ -45,13 +45,13 @@ export declare class DragTargetContainerDirective implements AfterViewInit, OnDe
|
|
|
45
45
|
*/
|
|
46
46
|
dragHandle: string;
|
|
47
47
|
/**
|
|
48
|
-
* Sets the delay in milliseconds before dragging begins. [See example](
|
|
48
|
+
* Sets the delay in milliseconds before dragging begins. [See example](https://www.telerik.com/kendo-angular-ui/components/utils/draganddrop/drag-container#events).
|
|
49
49
|
*
|
|
50
50
|
* @default 0
|
|
51
51
|
*/
|
|
52
52
|
dragDelay: number;
|
|
53
53
|
/**
|
|
54
|
-
* Sets the number of pixels the pointer must move before dragging starts. [See example](
|
|
54
|
+
* Sets the number of pixels the pointer must move before dragging starts. [See example](https://www.telerik.com/kendo-angular-ui/components/utils/draganddrop/threshold).
|
|
55
55
|
*
|
|
56
56
|
* @default 0
|
|
57
57
|
*/
|
|
@@ -23,19 +23,19 @@ export declare class DragTargetDirective implements OnInit, AfterContentInit, On
|
|
|
23
23
|
private viewContainer;
|
|
24
24
|
get touchActionStyle(): string;
|
|
25
25
|
/**
|
|
26
|
-
* Defines whether a hint will be used for dragging. By default, the hint is a copy of the drag target. ([see example](
|
|
26
|
+
* Defines whether a hint will be used for dragging. By default, the hint is a copy of the drag target. ([see example](https://www.telerik.com/kendo-angular-ui/components/utils/draganddrop/hint)).
|
|
27
27
|
*
|
|
28
28
|
* @default false
|
|
29
29
|
*/
|
|
30
30
|
hint: boolean | HintSettings;
|
|
31
31
|
/**
|
|
32
|
-
* Sets the number of pixels the pointer must move before dragging starts. Applies when `manualDrag` is `false`. [See example](
|
|
32
|
+
* Sets the number of pixels the pointer must move before dragging starts. Applies when `manualDrag` is `false`. [See example](https://www.telerik.com/kendo-angular-ui/components/utils/draganddrop/threshold).
|
|
33
33
|
*
|
|
34
34
|
* @default 0
|
|
35
35
|
*/
|
|
36
36
|
threshold: number;
|
|
37
37
|
/**
|
|
38
|
-
* Sets the automatic container scrolling behavior when close to the edge. [See example](
|
|
38
|
+
* Sets the automatic container scrolling behavior when close to the edge. [See example](https://www.telerik.com/kendo-angular-ui/components/utils/draganddrop/autoscroll).
|
|
39
39
|
*
|
|
40
40
|
* @default true
|
|
41
41
|
*/
|
|
@@ -45,13 +45,13 @@ export declare class DragTargetDirective implements OnInit, AfterContentInit, On
|
|
|
45
45
|
*/
|
|
46
46
|
dragTargetId: string | DragTargetIdFn;
|
|
47
47
|
/**
|
|
48
|
-
* Sets the delay in milliseconds before dragging begins. [See example](
|
|
48
|
+
* Sets the delay in milliseconds before dragging begins. [See example](https://www.telerik.com/kendo-angular-ui/components/utils/draganddrop/delay).
|
|
49
49
|
*
|
|
50
50
|
* @default 0
|
|
51
51
|
*/
|
|
52
52
|
dragDelay: number;
|
|
53
53
|
/**
|
|
54
|
-
* Restricts dragging to horizontal or vertical only. Applies when `mode` is `auto`. [See example](
|
|
54
|
+
* Restricts dragging to horizontal or vertical only. Applies when `mode` is `auto`. [See example](https://www.telerik.com/kendo-angular-ui/components/utils/draganddrop/axis).
|
|
55
55
|
*/
|
|
56
56
|
restrictByAxis: DragAxis;
|
|
57
57
|
/**
|
|
@@ -62,7 +62,7 @@ export declare class DragTargetDirective implements OnInit, AfterContentInit, On
|
|
|
62
62
|
mode: DragMode;
|
|
63
63
|
/**
|
|
64
64
|
* Defines a callback function used for attaching custom data to the drag target.
|
|
65
|
-
* The data is available in the events of the respective [`DropTarget`](
|
|
65
|
+
* The data is 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.
|
|
66
66
|
* The current DragTarget HTML element and its `dragTargetId` will be available as arguments.
|
|
67
67
|
*/
|
|
68
68
|
set dragData(fn: DragTargetDataFn);
|
|
@@ -8,7 +8,7 @@ import { DragStateService } from './drag-state.service';
|
|
|
8
8
|
import { DropTargetEvent } from './events/drop-target-event';
|
|
9
9
|
import * as i0 from "@angular/core";
|
|
10
10
|
/**
|
|
11
|
-
* Represents the [Kendo UI DropTargetContainer directive for Angular](
|
|
11
|
+
* Represents the [Kendo UI DropTargetContainer directive for Angular](https://www.telerik.com/kendo-angular-ui/components/utils/api/droptargetcontainerdirective).
|
|
12
12
|
* Use this directive to make multiple elements drop targets inside a container.
|
|
13
13
|
*
|
|
14
14
|
* @example
|
|
@@ -26,7 +26,7 @@ export declare class DropTargetContainerDirective implements AfterViewInit {
|
|
|
26
26
|
private ngZone;
|
|
27
27
|
private cdr;
|
|
28
28
|
/**
|
|
29
|
-
* Sets a selector for elements in the container to make them drop targets. [See example](
|
|
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
30
|
*/
|
|
31
31
|
set dropTargetFilter(value: string);
|
|
32
32
|
get dropTargetFilter(): string;
|
|
@@ -3,13 +3,13 @@
|
|
|
3
3
|
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
|
4
4
|
*-------------------------------------------------------------------------------------------*/
|
|
5
5
|
/**
|
|
6
|
-
* Represents the callback used by the `dragData` property of the [`DragTarget`](
|
|
7
|
-
* It returns the custom data that will be available in the events of the respective [`DropTarget`](
|
|
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
8
|
*
|
|
9
9
|
*/
|
|
10
10
|
export type DragTargetDataFn = (args: DragTargetDataArgs) => any;
|
|
11
11
|
/**
|
|
12
|
-
* Represents the callback used by the `dragTargetId` property of the [`DragTargetContainer`](
|
|
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
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
14
|
*/
|
|
15
15
|
export type DragTargetIdFn = (args: DragTargetIdArgs) => any;
|
|
@@ -64,7 +64,7 @@ const packageMetadata = {
|
|
|
64
64
|
productCode: 'KENDOUIANGULAR',
|
|
65
65
|
productCodes: ['KENDOUIANGULAR'],
|
|
66
66
|
publishDate: 0,
|
|
67
|
-
version: '
|
|
67
|
+
version: '23.0.0-develop.10',
|
|
68
68
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
69
69
|
};
|
|
70
70
|
|
|
@@ -590,7 +590,7 @@ class DragTargetReleaseEvent {
|
|
|
590
590
|
let isDragStartPrevented$1 = false;
|
|
591
591
|
let isDragPrevented$1 = false;
|
|
592
592
|
/**
|
|
593
|
-
* Represents the [Kendo UI DragTargetContainer directive for Angular](
|
|
593
|
+
* Represents the [Kendo UI DragTargetContainer directive for Angular](https://www.telerik.com/kendo-angular-ui/components/utils/api/dragtargetcontainerdirective).
|
|
594
594
|
* Use this directive to make multiple elements draggable inside a container.
|
|
595
595
|
*
|
|
596
596
|
* @example
|
|
@@ -610,14 +610,14 @@ class DragTargetContainerDirective {
|
|
|
610
610
|
viewContainer;
|
|
611
611
|
cdr;
|
|
612
612
|
/**
|
|
613
|
-
* Defines whether a hint will be used for dragging. By default, the hint is a copy of the current drag target. [See example](
|
|
613
|
+
* Defines whether a hint will be used for dragging. By default, the hint is a copy of the current drag target. [See example](https://www.telerik.com/kendo-angular-ui/components/utils/draganddrop/hint).
|
|
614
614
|
*
|
|
615
615
|
* @default false
|
|
616
616
|
*/
|
|
617
617
|
hint = false;
|
|
618
618
|
/**
|
|
619
619
|
* Sets a selector for elements in the container to make them draggable. The possible values include any
|
|
620
|
-
* DOM `selector`. [See example](
|
|
620
|
+
* DOM `selector`. [See example](https://www.telerik.com/kendo-angular-ui/components/utils/draganddrop/drag-container).
|
|
621
621
|
*/
|
|
622
622
|
set dragTargetFilter(value) {
|
|
623
623
|
this._dragTargetFilter = value;
|
|
@@ -633,13 +633,13 @@ class DragTargetContainerDirective {
|
|
|
633
633
|
*/
|
|
634
634
|
dragHandle;
|
|
635
635
|
/**
|
|
636
|
-
* Sets the delay in milliseconds before dragging begins. [See example](
|
|
636
|
+
* Sets the delay in milliseconds before dragging begins. [See example](https://www.telerik.com/kendo-angular-ui/components/utils/draganddrop/drag-container#events).
|
|
637
637
|
*
|
|
638
638
|
* @default 0
|
|
639
639
|
*/
|
|
640
640
|
dragDelay = 0;
|
|
641
641
|
/**
|
|
642
|
-
* Sets the number of pixels the pointer must move before dragging starts. [See example](
|
|
642
|
+
* Sets the number of pixels the pointer must move before dragging starts. [See example](https://www.telerik.com/kendo-angular-ui/components/utils/draganddrop/threshold).
|
|
643
643
|
*
|
|
644
644
|
* @default 0
|
|
645
645
|
*/
|
|
@@ -1298,19 +1298,19 @@ class DragTargetDirective {
|
|
|
1298
1298
|
return this.dragHandles.length > 0 ? null : 'none';
|
|
1299
1299
|
}
|
|
1300
1300
|
/**
|
|
1301
|
-
* Defines whether a hint will be used for dragging. By default, the hint is a copy of the drag target. ([see example](
|
|
1301
|
+
* Defines whether a hint will be used for dragging. By default, the hint is a copy of the drag target. ([see example](https://www.telerik.com/kendo-angular-ui/components/utils/draganddrop/hint)).
|
|
1302
1302
|
*
|
|
1303
1303
|
* @default false
|
|
1304
1304
|
*/
|
|
1305
1305
|
hint = false;
|
|
1306
1306
|
/**
|
|
1307
|
-
* Sets the number of pixels the pointer must move before dragging starts. Applies when `manualDrag` is `false`. [See example](
|
|
1307
|
+
* Sets the number of pixels the pointer must move before dragging starts. Applies when `manualDrag` is `false`. [See example](https://www.telerik.com/kendo-angular-ui/components/utils/draganddrop/threshold).
|
|
1308
1308
|
*
|
|
1309
1309
|
* @default 0
|
|
1310
1310
|
*/
|
|
1311
1311
|
threshold = 0;
|
|
1312
1312
|
/**
|
|
1313
|
-
* Sets the automatic container scrolling behavior when close to the edge. [See example](
|
|
1313
|
+
* Sets the automatic container scrolling behavior when close to the edge. [See example](https://www.telerik.com/kendo-angular-ui/components/utils/draganddrop/autoscroll).
|
|
1314
1314
|
*
|
|
1315
1315
|
* @default true
|
|
1316
1316
|
*/
|
|
@@ -1320,13 +1320,13 @@ class DragTargetDirective {
|
|
|
1320
1320
|
*/
|
|
1321
1321
|
dragTargetId;
|
|
1322
1322
|
/**
|
|
1323
|
-
* Sets the delay in milliseconds before dragging begins. [See example](
|
|
1323
|
+
* Sets the delay in milliseconds before dragging begins. [See example](https://www.telerik.com/kendo-angular-ui/components/utils/draganddrop/delay).
|
|
1324
1324
|
*
|
|
1325
1325
|
* @default 0
|
|
1326
1326
|
*/
|
|
1327
1327
|
dragDelay = 0;
|
|
1328
1328
|
/**
|
|
1329
|
-
* Restricts dragging to horizontal or vertical only. Applies when `mode` is `auto`. [See example](
|
|
1329
|
+
* Restricts dragging to horizontal or vertical only. Applies when `mode` is `auto`. [See example](https://www.telerik.com/kendo-angular-ui/components/utils/draganddrop/axis).
|
|
1330
1330
|
*/
|
|
1331
1331
|
restrictByAxis;
|
|
1332
1332
|
/**
|
|
@@ -1337,7 +1337,7 @@ class DragTargetDirective {
|
|
|
1337
1337
|
mode = 'auto';
|
|
1338
1338
|
/**
|
|
1339
1339
|
* Defines a callback function used for attaching custom data to the drag target.
|
|
1340
|
-
* The data is available in the events of the respective [`DropTarget`](
|
|
1340
|
+
* The data is 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.
|
|
1341
1341
|
* The current DragTarget HTML element and its `dragTargetId` will be available as arguments.
|
|
1342
1342
|
*/
|
|
1343
1343
|
set dragData(fn) {
|
|
@@ -1912,7 +1912,7 @@ class DropTargetEvent {
|
|
|
1912
1912
|
}
|
|
1913
1913
|
|
|
1914
1914
|
/**
|
|
1915
|
-
* Represents the [Kendo UI DropTargetContainer directive for Angular](
|
|
1915
|
+
* Represents the [Kendo UI DropTargetContainer directive for Angular](https://www.telerik.com/kendo-angular-ui/components/utils/api/droptargetcontainerdirective).
|
|
1916
1916
|
* Use this directive to make multiple elements drop targets inside a container.
|
|
1917
1917
|
*
|
|
1918
1918
|
* @example
|
|
@@ -1930,7 +1930,7 @@ class DropTargetContainerDirective {
|
|
|
1930
1930
|
ngZone;
|
|
1931
1931
|
cdr;
|
|
1932
1932
|
/**
|
|
1933
|
-
* Sets a selector for elements in the container to make them drop targets. [See example](
|
|
1933
|
+
* 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).
|
|
1934
1934
|
*/
|
|
1935
1935
|
set dropTargetFilter(value) {
|
|
1936
1936
|
this._dropTargetFilter = value;
|
|
@@ -2365,7 +2365,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImpo
|
|
|
2365
2365
|
}] });
|
|
2366
2366
|
|
|
2367
2367
|
/**
|
|
2368
|
-
* A service that lets you change the current adaptive settings dynamically. Use the public `notify` method to update the settings. [See example](
|
|
2368
|
+
* A service that lets you change the current adaptive settings dynamically. Use the public `notify` method to update the settings. [See example](https://www.telerik.com/kendo-angular-ui/components/utils/adaptive-settings#changing-the-adaptive-settings-dynamically).
|
|
2369
2369
|
*/
|
|
2370
2370
|
class AdaptiveSettingsService {
|
|
2371
2371
|
/**
|
package/package-metadata.mjs
CHANGED
|
@@ -7,7 +7,7 @@ export const packageMetadata = {
|
|
|
7
7
|
"productCodes": [
|
|
8
8
|
"KENDOUIANGULAR"
|
|
9
9
|
],
|
|
10
|
-
"publishDate":
|
|
11
|
-
"version": "
|
|
10
|
+
"publishDate": 1770666621,
|
|
11
|
+
"version": "23.0.0-develop.10",
|
|
12
12
|
"licensingDocsUrl": "https://www.telerik.com/kendo-angular-ui/my-license/"
|
|
13
13
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progress/kendo-angular-utils",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "23.0.0-develop.10",
|
|
4
4
|
"description": "Kendo UI Angular utils component",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE.md",
|
|
6
6
|
"author": "Progress",
|
|
@@ -19,7 +19,7 @@
|
|
|
19
19
|
"package": {
|
|
20
20
|
"productName": "Kendo UI for Angular",
|
|
21
21
|
"productCode": "KENDOUIANGULAR",
|
|
22
|
-
"publishDate":
|
|
22
|
+
"publishDate": 1770666621,
|
|
23
23
|
"licensingDocsUrl": "https://www.telerik.com/kendo-angular-ui/my-license/"
|
|
24
24
|
}
|
|
25
25
|
},
|
|
@@ -29,12 +29,12 @@
|
|
|
29
29
|
"@angular/core": "19 - 21",
|
|
30
30
|
"@angular/platform-browser": "19 - 21",
|
|
31
31
|
"@progress/kendo-licensing": "^1.10.0",
|
|
32
|
-
"@progress/kendo-angular-common": "
|
|
32
|
+
"@progress/kendo-angular-common": "23.0.0-develop.10",
|
|
33
33
|
"rxjs": "^6.5.3 || ^7.0.0"
|
|
34
34
|
},
|
|
35
35
|
"dependencies": {
|
|
36
36
|
"tslib": "^2.3.1",
|
|
37
|
-
"@progress/kendo-angular-schematics": "
|
|
37
|
+
"@progress/kendo-angular-schematics": "23.0.0-develop.10",
|
|
38
38
|
"@progress/kendo-draggable-common": "^0.2.3"
|
|
39
39
|
},
|
|
40
40
|
"schematics": "./schematics/collection.json",
|