@progress/kendo-angular-utils 13.0.0-develop.2 → 13.0.0-develop.21
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/drag-and-drop/draghandle.directive.d.ts +1 -1
- package/drag-and-drop/dragtarget-container.directive.d.ts +10 -10
- package/drag-and-drop/dragtarget.directive.d.ts +7 -7
- package/drag-and-drop/droptarget-container.directive.d.ts +5 -5
- package/drag-and-drop/droptarget.directive.d.ts +6 -6
- package/drag-and-drop/models/functions.d.ts +32 -2
- package/esm2020/drag-and-drop/draghandle.directive.mjs +4 -4
- package/esm2020/drag-and-drop/dragtarget-container.directive.mjs +41 -36
- package/esm2020/drag-and-drop/dragtarget.directive.mjs +32 -30
- package/esm2020/drag-and-drop/droptarget-container.directive.mjs +14 -14
- package/esm2020/drag-and-drop/droptarget.directive.mjs +17 -23
- package/esm2020/package-metadata.mjs +2 -2
- package/fesm2015/progress-kendo-angular-utils.mjs +112 -111
- package/fesm2020/progress-kendo-angular-utils.mjs +110 -109
- package/package.json +3 -3
|
@@ -61,27 +61,27 @@ export class DragTargetDirective {
|
|
|
61
61
|
/**
|
|
62
62
|
* Fires when the user presses the DragTarget element.
|
|
63
63
|
*/
|
|
64
|
-
this.
|
|
64
|
+
this.onPress = new EventEmitter();
|
|
65
65
|
/**
|
|
66
66
|
* Fires when the dragging of the DragTarget element begins.
|
|
67
67
|
*/
|
|
68
|
-
this.
|
|
68
|
+
this.onDragStart = new EventEmitter();
|
|
69
69
|
/**
|
|
70
70
|
* Fires while the user drags the DragTarget element.
|
|
71
71
|
*/
|
|
72
|
-
this.
|
|
72
|
+
this.onDrag = new EventEmitter();
|
|
73
73
|
/**
|
|
74
74
|
* Fires when the DragTarget's `dragDelay` has passed and the user is able to drag the element.
|
|
75
75
|
*/
|
|
76
|
-
this.
|
|
76
|
+
this.onDragReady = new EventEmitter();
|
|
77
77
|
/**
|
|
78
78
|
* Fires when the user releases the DragTarget element after being pressed.
|
|
79
79
|
*/
|
|
80
|
-
this.
|
|
80
|
+
this.onRelease = new EventEmitter();
|
|
81
81
|
/**
|
|
82
82
|
* Fires when the dragging of the DragTarget ends and the element is released.
|
|
83
83
|
*/
|
|
84
|
-
this.
|
|
84
|
+
this.onDragEnd = new EventEmitter();
|
|
85
85
|
this.dragTarget = null;
|
|
86
86
|
this.domSubscriptions = [];
|
|
87
87
|
this.hintComponent = null;
|
|
@@ -148,7 +148,7 @@ export class DragTargetDirective {
|
|
|
148
148
|
if (isPresent(this.element) || isPresent(this.dragTarget)) {
|
|
149
149
|
this.attachDomHandlers();
|
|
150
150
|
if (!this.dragHandles.length) {
|
|
151
|
-
this.renderer.
|
|
151
|
+
this.renderer.setStyle(this.nativeElement, 'cursor', 'move');
|
|
152
152
|
}
|
|
153
153
|
}
|
|
154
154
|
this.service.dragTargets.push(this.dragTarget);
|
|
@@ -160,14 +160,14 @@ export class DragTargetDirective {
|
|
|
160
160
|
if (this.dragDelay > 0) {
|
|
161
161
|
this.dragTimeout = window.setTimeout(() => {
|
|
162
162
|
this.pressed = true;
|
|
163
|
-
this.emitZoneAwareEvent('
|
|
163
|
+
this.emitZoneAwareEvent('onDragReady', event);
|
|
164
164
|
}, this.dragDelay);
|
|
165
165
|
}
|
|
166
166
|
else {
|
|
167
167
|
this.pressed = true;
|
|
168
168
|
}
|
|
169
169
|
this.scrollableParent = this.dragTarget.element ? getScrollableParent(this.dragTarget.element) : null;
|
|
170
|
-
this.emitZoneAwareEvent('
|
|
170
|
+
this.emitZoneAwareEvent('onPress', event);
|
|
171
171
|
}
|
|
172
172
|
handleDragStart(event) {
|
|
173
173
|
if (!this.pressed) {
|
|
@@ -177,7 +177,7 @@ export class DragTargetDirective {
|
|
|
177
177
|
}
|
|
178
178
|
return;
|
|
179
179
|
}
|
|
180
|
-
isDragStartPrevented = this.emitZoneAwareEvent('
|
|
180
|
+
isDragStartPrevented = this.emitZoneAwareEvent('onDragStart', event).isDefaultPrevented();
|
|
181
181
|
if (isDragStartPrevented) {
|
|
182
182
|
return;
|
|
183
183
|
}
|
|
@@ -194,13 +194,13 @@ export class DragTargetDirective {
|
|
|
194
194
|
this.dragStarted = this.threshold === 0;
|
|
195
195
|
this.service.dragTarget = this.dragTarget;
|
|
196
196
|
this.service.dragTargetDirective = this;
|
|
197
|
-
this.service.dragData = this.dragData(this.dragTarget.element, this.dragTargetIdResult);
|
|
197
|
+
this.service.dragData = this.dragData({ dragTarget: this.dragTarget.element, dragTargetId: this.dragTargetIdResult, dragTargetIndex: null });
|
|
198
198
|
}
|
|
199
199
|
handleDrag(event) {
|
|
200
200
|
if (!this.pressed || isDragStartPrevented) {
|
|
201
201
|
return;
|
|
202
202
|
}
|
|
203
|
-
isDragPrevented = this.emitZoneAwareEvent('
|
|
203
|
+
isDragPrevented = this.emitZoneAwareEvent('onDrag', event).isDefaultPrevented();
|
|
204
204
|
if (isDragPrevented) {
|
|
205
205
|
return;
|
|
206
206
|
}
|
|
@@ -217,7 +217,7 @@ export class DragTargetDirective {
|
|
|
217
217
|
this.dragTimeout = null;
|
|
218
218
|
this.pressed = false;
|
|
219
219
|
}
|
|
220
|
-
this.emitZoneAwareEvent('
|
|
220
|
+
this.emitZoneAwareEvent('onRelease', event);
|
|
221
221
|
}
|
|
222
222
|
handleDragEnd(event) {
|
|
223
223
|
if (this.mode === 'auto') {
|
|
@@ -242,7 +242,7 @@ export class DragTargetDirective {
|
|
|
242
242
|
if (!this.dragStarted || isDragStartPrevented || isDragPrevented) {
|
|
243
243
|
return;
|
|
244
244
|
}
|
|
245
|
-
this.emitZoneAwareEvent('
|
|
245
|
+
this.emitZoneAwareEvent('onDragEnd', event);
|
|
246
246
|
this.dragStarted = false;
|
|
247
247
|
}
|
|
248
248
|
initializeDragTarget() {
|
|
@@ -378,22 +378,22 @@ export class DragTargetDirective {
|
|
|
378
378
|
}
|
|
379
379
|
let eventArgs;
|
|
380
380
|
switch (event) {
|
|
381
|
-
case '
|
|
381
|
+
case 'onDragReady':
|
|
382
382
|
eventArgs = new DragTargetDragReadyEvent(eventProps);
|
|
383
383
|
break;
|
|
384
|
-
case '
|
|
384
|
+
case 'onPress':
|
|
385
385
|
eventArgs = new DragTargetPressEvent(eventProps);
|
|
386
386
|
break;
|
|
387
|
-
case '
|
|
387
|
+
case 'onDragStart':
|
|
388
388
|
eventArgs = new DragTargetDragStartEvent(eventProps);
|
|
389
389
|
break;
|
|
390
|
-
case '
|
|
390
|
+
case 'onDrag':
|
|
391
391
|
eventArgs = new DragTargetDragEvent(eventProps);
|
|
392
392
|
break;
|
|
393
|
-
case '
|
|
393
|
+
case 'onRelease':
|
|
394
394
|
eventArgs = new DragTargetReleaseEvent(eventProps);
|
|
395
395
|
break;
|
|
396
|
-
case '
|
|
396
|
+
case 'onDragEnd':
|
|
397
397
|
eventArgs = new DragTargetDragEndEvent(eventProps);
|
|
398
398
|
break;
|
|
399
399
|
default:
|
|
@@ -406,7 +406,7 @@ export class DragTargetDirective {
|
|
|
406
406
|
}
|
|
407
407
|
get dragTargetIdResult() {
|
|
408
408
|
if (this.dragTargetId && this.dragTargetId !== '') {
|
|
409
|
-
return typeof this.dragTargetId === 'string' ? this.dragTargetId : this.dragTargetId(this.dragTarget.element);
|
|
409
|
+
return typeof this.dragTargetId === 'string' ? this.dragTargetId : this.dragTargetId({ dragTarget: this.dragTarget.element, dragTargetIndex: null });
|
|
410
410
|
}
|
|
411
411
|
}
|
|
412
412
|
performDrag(event) {
|
|
@@ -419,8 +419,10 @@ export class DragTargetDirective {
|
|
|
419
419
|
if (!this.dragStarted && this.threshold > 0) {
|
|
420
420
|
this.dragStarted = true;
|
|
421
421
|
}
|
|
422
|
-
|
|
423
|
-
|
|
422
|
+
if (elem) {
|
|
423
|
+
const styles = this.getStylesPerElement(elem);
|
|
424
|
+
setElementStyles(this.renderer, elem, styles);
|
|
425
|
+
}
|
|
424
426
|
}
|
|
425
427
|
calculatePosition(element, event) {
|
|
426
428
|
let position = null;
|
|
@@ -459,7 +461,7 @@ export class DragTargetDirective {
|
|
|
459
461
|
}
|
|
460
462
|
}
|
|
461
463
|
DragTargetDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: DragTargetDirective, deps: [{ token: i0.ElementRef }, { token: i0.Renderer2 }, { token: i0.NgZone }, { token: i1.DragStateService }, { token: i0.ViewContainerRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
462
|
-
DragTargetDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.3.12", type: DragTargetDirective, selector: "[kendoDragTarget]", inputs: { hint: "hint", threshold: "threshold", autoScroll: "autoScroll", dragTargetId: "dragTargetId", dragDelay: "dragDelay", restrictByAxis: "restrictByAxis", mode: "mode", dragData: "dragData" }, outputs: {
|
|
464
|
+
DragTargetDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.3.12", type: DragTargetDirective, selector: "[kendoDragTarget]", inputs: { hint: "hint", threshold: "threshold", autoScroll: "autoScroll", dragTargetId: "dragTargetId", dragDelay: "dragDelay", restrictByAxis: "restrictByAxis", mode: "mode", dragData: "dragData" }, outputs: { onPress: "onPress", onDragStart: "onDragStart", onDrag: "onDrag", onDragReady: "onDragReady", onRelease: "onRelease", onDragEnd: "onDragEnd" }, queries: [{ propertyName: "dragHandles", predicate: DragHandleDirective }], exportAs: ["kendoDragTarget"], ngImport: i0 });
|
|
463
465
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: DragTargetDirective, decorators: [{
|
|
464
466
|
type: Directive,
|
|
465
467
|
args: [{
|
|
@@ -482,17 +484,17 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
482
484
|
type: Input
|
|
483
485
|
}], dragData: [{
|
|
484
486
|
type: Input
|
|
485
|
-
}],
|
|
487
|
+
}], onPress: [{
|
|
486
488
|
type: Output
|
|
487
|
-
}],
|
|
489
|
+
}], onDragStart: [{
|
|
488
490
|
type: Output
|
|
489
|
-
}],
|
|
491
|
+
}], onDrag: [{
|
|
490
492
|
type: Output
|
|
491
|
-
}],
|
|
493
|
+
}], onDragReady: [{
|
|
492
494
|
type: Output
|
|
493
|
-
}],
|
|
495
|
+
}], onRelease: [{
|
|
494
496
|
type: Output
|
|
495
|
-
}],
|
|
497
|
+
}], onDragEnd: [{
|
|
496
498
|
type: Output
|
|
497
499
|
}], dragHandles: [{
|
|
498
500
|
type: ContentChildren,
|
|
@@ -30,19 +30,19 @@ export class DropTargetContainerDirective {
|
|
|
30
30
|
/**
|
|
31
31
|
* Fires when a DragTarget element enters the DropTarget.
|
|
32
32
|
*/
|
|
33
|
-
this.
|
|
33
|
+
this.onDragEnter = new EventEmitter();
|
|
34
34
|
/**
|
|
35
35
|
* Fires when a DragTarget element is being dragged over the DropTarget.
|
|
36
36
|
*/
|
|
37
|
-
this.
|
|
37
|
+
this.onDragOver = new EventEmitter();
|
|
38
38
|
/**
|
|
39
39
|
* Fires when a DragTarget element leaves the DropTarget.
|
|
40
40
|
*/
|
|
41
|
-
this.
|
|
41
|
+
this.onDragLeave = new EventEmitter();
|
|
42
42
|
/**
|
|
43
43
|
* Fires when a DragTarget element is dropped over the DropTarget.
|
|
44
44
|
*/
|
|
45
|
-
this.
|
|
45
|
+
this.onDrop = new EventEmitter();
|
|
46
46
|
this.currentDropTarget = null;
|
|
47
47
|
this.currentDropTargetElement = null;
|
|
48
48
|
this.previousDropTargets = [];
|
|
@@ -109,7 +109,7 @@ export class DropTargetContainerDirective {
|
|
|
109
109
|
this.currentDropTarget = this.service.dropTargets.find(dt => dt.element === this.currentDropTargetElement);
|
|
110
110
|
this.service.dropTarget = this.currentDropTarget;
|
|
111
111
|
this.service.dropIndex = this.getDropIndex();
|
|
112
|
-
this.emitZoneAwareEvent('
|
|
112
|
+
this.emitZoneAwareEvent('onDragEnter', event);
|
|
113
113
|
}
|
|
114
114
|
/**
|
|
115
115
|
* @hidden
|
|
@@ -119,7 +119,7 @@ export class DropTargetContainerDirective {
|
|
|
119
119
|
if (!this.service.dragTarget) {
|
|
120
120
|
return;
|
|
121
121
|
}
|
|
122
|
-
this.emitZoneAwareEvent('
|
|
122
|
+
this.emitZoneAwareEvent('onDragLeave', event);
|
|
123
123
|
}
|
|
124
124
|
/**
|
|
125
125
|
* @hidden
|
|
@@ -128,7 +128,7 @@ export class DropTargetContainerDirective {
|
|
|
128
128
|
if (!this.service.dragTarget) {
|
|
129
129
|
return;
|
|
130
130
|
}
|
|
131
|
-
this.emitZoneAwareEvent('
|
|
131
|
+
this.emitZoneAwareEvent('onDragOver', event);
|
|
132
132
|
}
|
|
133
133
|
/**
|
|
134
134
|
* @hidden
|
|
@@ -137,7 +137,7 @@ export class DropTargetContainerDirective {
|
|
|
137
137
|
if (!this.service.dragTarget) {
|
|
138
138
|
return;
|
|
139
139
|
}
|
|
140
|
-
this.emitZoneAwareEvent('
|
|
140
|
+
this.emitZoneAwareEvent('onDrop', event);
|
|
141
141
|
this.currentDropTarget = null;
|
|
142
142
|
this.currentDropTargetElement = null;
|
|
143
143
|
this.service.dropIndex = null;
|
|
@@ -174,7 +174,7 @@ export class DropTargetContainerDirective {
|
|
|
174
174
|
}
|
|
175
175
|
emitZoneAwareEvent(event, normalizedEvent) {
|
|
176
176
|
const eventProps = {
|
|
177
|
-
dragTarget: this.service.dragTarget,
|
|
177
|
+
dragTarget: this.service.dragTarget?.element,
|
|
178
178
|
dropTarget: this.currentDropTargetElement,
|
|
179
179
|
dragData: this.service.dragData,
|
|
180
180
|
dragEvent: normalizedEvent,
|
|
@@ -203,7 +203,7 @@ export class DropTargetContainerDirective {
|
|
|
203
203
|
}
|
|
204
204
|
}
|
|
205
205
|
DropTargetContainerDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: DropTargetContainerDirective, deps: [{ token: i1.DragStateService }, { token: i0.ElementRef }, { token: i0.NgZone }, { token: i0.ChangeDetectorRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
206
|
-
DropTargetContainerDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.3.12", type: DropTargetContainerDirective, selector: "[kendoDropTargetContainer]", inputs: { dropTargetFilter: "dropTargetFilter", dropDisabled: "dropDisabled" }, outputs: {
|
|
206
|
+
DropTargetContainerDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.3.12", type: DropTargetContainerDirective, selector: "[kendoDropTargetContainer]", inputs: { dropTargetFilter: "dropTargetFilter", dropDisabled: "dropDisabled" }, outputs: { onDragEnter: "onDragEnter", onDragOver: "onDragOver", onDragLeave: "onDragLeave", onDrop: "onDrop" }, exportAs: ["kendoDropTargetContainer"], ngImport: i0 });
|
|
207
207
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: DropTargetContainerDirective, decorators: [{
|
|
208
208
|
type: Directive,
|
|
209
209
|
args: [{
|
|
@@ -214,12 +214,12 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
214
214
|
type: Input
|
|
215
215
|
}], dropDisabled: [{
|
|
216
216
|
type: Input
|
|
217
|
-
}],
|
|
217
|
+
}], onDragEnter: [{
|
|
218
218
|
type: Output
|
|
219
|
-
}],
|
|
219
|
+
}], onDragOver: [{
|
|
220
220
|
type: Output
|
|
221
|
-
}],
|
|
221
|
+
}], onDragLeave: [{
|
|
222
222
|
type: Output
|
|
223
|
-
}],
|
|
223
|
+
}], onDrop: [{
|
|
224
224
|
type: Output
|
|
225
225
|
}] } });
|
|
@@ -21,19 +21,19 @@ export class DropTargetDirective {
|
|
|
21
21
|
/**
|
|
22
22
|
* Fires when a DragTarget element enters the DropTarget.
|
|
23
23
|
*/
|
|
24
|
-
this.
|
|
24
|
+
this.onDragEnter = new EventEmitter();
|
|
25
25
|
/**
|
|
26
26
|
* Fires when a DragTarget element is being dragged over the DropTarget.
|
|
27
27
|
*/
|
|
28
|
-
this.
|
|
28
|
+
this.onDragOver = new EventEmitter();
|
|
29
29
|
/**
|
|
30
30
|
* Fires when a DragTarget element leaves the DropTarget.
|
|
31
31
|
*/
|
|
32
|
-
this.
|
|
32
|
+
this.onDragLeave = new EventEmitter();
|
|
33
33
|
/**
|
|
34
34
|
* Fires when a DragTarget element is dropped over the DropTarget.
|
|
35
35
|
*/
|
|
36
|
-
this.
|
|
36
|
+
this.onDrop = new EventEmitter();
|
|
37
37
|
validatePackage(packageMetadata);
|
|
38
38
|
}
|
|
39
39
|
ngOnInit() {
|
|
@@ -48,9 +48,7 @@ export class DropTargetDirective {
|
|
|
48
48
|
return;
|
|
49
49
|
}
|
|
50
50
|
this.service.dropTarget = this.dropTarget;
|
|
51
|
-
this.
|
|
52
|
-
this.emitEvent('dragEnter', event);
|
|
53
|
-
});
|
|
51
|
+
this.emitZoneAwareEvent('onDragEnter', event);
|
|
54
52
|
}
|
|
55
53
|
/**
|
|
56
54
|
* @hidden
|
|
@@ -60,9 +58,7 @@ export class DropTargetDirective {
|
|
|
60
58
|
if (!this.service.dragTarget) {
|
|
61
59
|
return;
|
|
62
60
|
}
|
|
63
|
-
this.
|
|
64
|
-
this.emitEvent('dragLeave', event);
|
|
65
|
-
});
|
|
61
|
+
this.emitZoneAwareEvent('onDragLeave', event);
|
|
66
62
|
}
|
|
67
63
|
/**
|
|
68
64
|
* @hidden
|
|
@@ -71,17 +67,13 @@ export class DropTargetDirective {
|
|
|
71
67
|
if (!this.service.dragTarget) {
|
|
72
68
|
return;
|
|
73
69
|
}
|
|
74
|
-
this.
|
|
75
|
-
this.emitEvent('dragOver', event);
|
|
76
|
-
});
|
|
70
|
+
this.emitZoneAwareEvent('onDragOver', event);
|
|
77
71
|
}
|
|
78
72
|
/**
|
|
79
73
|
* @hidden
|
|
80
74
|
*/
|
|
81
75
|
handleDrop(event) {
|
|
82
|
-
this.
|
|
83
|
-
this.emitEvent('drop', event);
|
|
84
|
-
});
|
|
76
|
+
this.emitZoneAwareEvent('onDrop', event);
|
|
85
77
|
}
|
|
86
78
|
initializeDropTarget() {
|
|
87
79
|
this.dropTarget = {
|
|
@@ -92,7 +84,7 @@ export class DropTargetDirective {
|
|
|
92
84
|
onDrop: this.handleDrop.bind(this)
|
|
93
85
|
};
|
|
94
86
|
}
|
|
95
|
-
|
|
87
|
+
emitZoneAwareEvent(event, normalizedEvent) {
|
|
96
88
|
const eventProps = {
|
|
97
89
|
dropTarget: this.element.nativeElement,
|
|
98
90
|
dragTarget: this.service.dragTarget?.element,
|
|
@@ -103,23 +95,25 @@ export class DropTargetDirective {
|
|
|
103
95
|
eventProps.hintElement = this.service.dragTarget.element;
|
|
104
96
|
}
|
|
105
97
|
const eventArgs = new DropTargetEvent(eventProps);
|
|
106
|
-
this
|
|
98
|
+
this.ngZone.run(() => {
|
|
99
|
+
this[event].emit(eventArgs);
|
|
100
|
+
});
|
|
107
101
|
}
|
|
108
102
|
}
|
|
109
103
|
DropTargetDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: DropTargetDirective, deps: [{ token: i1.DragStateService }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Directive });
|
|
110
|
-
DropTargetDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.3.12", type: DropTargetDirective, selector: "[kendoDropTarget]", outputs: {
|
|
104
|
+
DropTargetDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.3.12", type: DropTargetDirective, selector: "[kendoDropTarget]", outputs: { onDragEnter: "onDragEnter", onDragOver: "onDragOver", onDragLeave: "onDragLeave", onDrop: "onDrop" }, exportAs: ["kendoDropTarget"], ngImport: i0 });
|
|
111
105
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: DropTargetDirective, decorators: [{
|
|
112
106
|
type: Directive,
|
|
113
107
|
args: [{
|
|
114
108
|
selector: '[kendoDropTarget]',
|
|
115
109
|
exportAs: 'kendoDropTarget'
|
|
116
110
|
}]
|
|
117
|
-
}], ctorParameters: function () { return [{ type: i1.DragStateService }, { type: i0.ElementRef }, { type: i0.NgZone }]; }, propDecorators: {
|
|
111
|
+
}], ctorParameters: function () { return [{ type: i1.DragStateService }, { type: i0.ElementRef }, { type: i0.NgZone }]; }, propDecorators: { onDragEnter: [{
|
|
118
112
|
type: Output
|
|
119
|
-
}],
|
|
113
|
+
}], onDragOver: [{
|
|
120
114
|
type: Output
|
|
121
|
-
}],
|
|
115
|
+
}], onDragLeave: [{
|
|
122
116
|
type: Output
|
|
123
|
-
}],
|
|
117
|
+
}], onDrop: [{
|
|
124
118
|
type: Output
|
|
125
119
|
}] } });
|
|
@@ -9,7 +9,7 @@ export const packageMetadata = {
|
|
|
9
9
|
name: '@progress/kendo-angular-utils',
|
|
10
10
|
productName: 'Kendo UI for Angular',
|
|
11
11
|
productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
|
|
12
|
-
publishDate:
|
|
13
|
-
version: '13.0.0-develop.
|
|
12
|
+
publishDate: 1685972670,
|
|
13
|
+
version: '13.0.0-develop.21',
|
|
14
14
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
15
15
|
};
|