@progress/kendo-angular-sortable 5.0.4-dev.202211170813 → 11.0.0-develop.79
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/NOTICE.txt +3 -3
- package/binding.directive.d.ts +1 -1
- package/data-event-args.interface.d.ts +1 -1
- package/data-events.d.ts +1 -1
- package/draggable-event.d.ts +1 -1
- package/draggable.directive.d.ts +1 -1
- package/{esm2015/binding.directive.js → esm2020/binding.directive.mjs} +7 -5
- package/{esm2015/data-event-args.interface.js → esm2020/data-event-args.interface.mjs} +1 -1
- package/{esm2015/data-events.js → esm2020/data-events.mjs} +1 -1
- package/{esm2015/draggable-event.js → esm2020/draggable-event.mjs} +1 -1
- package/{esm2015/draggable.directive.js → esm2020/draggable.directive.mjs} +6 -5
- package/{esm2015/main.js → esm2020/index.mjs} +1 -1
- package/{esm2015/item-template.directive.js → esm2020/item-template.directive.mjs} +8 -8
- package/{esm2015/navigate-event.js → esm2020/navigate-event.mjs} +1 -1
- package/{esm2015/package-metadata.js → esm2020/package-metadata.mjs} +3 -3
- package/{esm2015/preventable-event.js → esm2020/preventable-event.mjs} +1 -1
- package/{esm2015/kendo-angular-sortable.js → esm2020/progress-kendo-angular-sortable.mjs} +2 -2
- package/{esm2015/sortable-container.js → esm2020/sortable-container.mjs} +4 -4
- package/{esm2015/sortable-event-args.interface.js → esm2020/sortable-event-args.interface.mjs} +1 -1
- package/{esm2015/sortable-events.js → esm2020/sortable-events.mjs} +1 -1
- package/{esm2015/sortable.component.js → esm2020/sortable.component.mjs} +14 -14
- package/{esm2015/sortable.module.js → esm2020/sortable.module.mjs} +5 -5
- package/{esm2015/sortable.service.js → esm2020/sortable.service.mjs} +5 -5
- package/{esm2015/util.js → esm2020/util.mjs} +6 -3
- package/fesm2015/{kendo-angular-sortable.js → progress-kendo-angular-sortable.mjs} +42 -40
- package/fesm2020/progress-kendo-angular-sortable.mjs +1896 -0
- package/{main.d.ts → index.d.ts} +1 -1
- package/item-template.directive.d.ts +1 -1
- package/navigate-event.d.ts +1 -1
- package/package-metadata.d.ts +1 -1
- package/package.json +28 -54
- package/preventable-event.d.ts +1 -1
- package/{kendo-angular-sortable.d.ts → progress-kendo-angular-sortable.d.ts} +2 -2
- package/schematics/ngAdd/index.js +1 -5
- package/sortable-container.d.ts +1 -1
- package/sortable-event-args.interface.d.ts +1 -1
- package/sortable-events.d.ts +1 -1
- package/sortable.component.d.ts +1 -1
- package/sortable.module.d.ts +1 -1
- package/sortable.service.d.ts +1 -1
- package/util.d.ts +1 -1
- package/bundles/kendo-angular-sortable.umd.js +0 -5
- package/schematics/ngAdd/index.js.map +0 -1
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**-----------------------------------------------------------------------------------------
|
|
2
|
-
* Copyright ©
|
|
2
|
+
* Copyright © 2022 Progress Software Corporation. All rights reserved.
|
|
3
3
|
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
|
4
4
|
*-------------------------------------------------------------------------------------------*/
|
|
5
5
|
import * as i0 from '@angular/core';
|
|
@@ -52,7 +52,7 @@ const draggableFromPoint = (x, y) => {
|
|
|
52
52
|
if (!isDocumentAvailable()) {
|
|
53
53
|
return;
|
|
54
54
|
}
|
|
55
|
-
|
|
55
|
+
const el = document.elementFromPoint(x, y);
|
|
56
56
|
if (!el) {
|
|
57
57
|
return;
|
|
58
58
|
}
|
|
@@ -124,7 +124,10 @@ const hasRelativeStackingContext = () => {
|
|
|
124
124
|
const top = 10;
|
|
125
125
|
const parent = document.createElement("div");
|
|
126
126
|
parent.style.transform = "matrix(10, 0, 0, 10, 0, 0)";
|
|
127
|
-
|
|
127
|
+
const innerDiv = document.createElement('div');
|
|
128
|
+
innerDiv.style.position = 'fixed';
|
|
129
|
+
innerDiv.style.top = `${top}px;`;
|
|
130
|
+
parent.appendChild(innerDiv);
|
|
128
131
|
document.body.appendChild(parent);
|
|
129
132
|
const isDifferent = parent.children[0].getBoundingClientRect().top !== top;
|
|
130
133
|
document.body.removeChild(parent);
|
|
@@ -154,9 +157,9 @@ const packageMetadata = {
|
|
|
154
157
|
name: '@progress/kendo-angular-sortable',
|
|
155
158
|
productName: 'Kendo UI for Angular',
|
|
156
159
|
productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
|
|
157
|
-
publishDate:
|
|
160
|
+
publishDate: 1672320723,
|
|
158
161
|
version: '',
|
|
159
|
-
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license
|
|
162
|
+
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
160
163
|
};
|
|
161
164
|
|
|
162
165
|
/**
|
|
@@ -164,9 +167,9 @@ const packageMetadata = {
|
|
|
164
167
|
*/
|
|
165
168
|
class SortableContainer {
|
|
166
169
|
}
|
|
167
|
-
SortableContainer.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
168
|
-
SortableContainer.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
169
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
170
|
+
SortableContainer.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: SortableContainer, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
|
171
|
+
SortableContainer.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: SortableContainer });
|
|
172
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: SortableContainer, decorators: [{
|
|
170
173
|
type: Injectable
|
|
171
174
|
}] });
|
|
172
175
|
|
|
@@ -214,9 +217,9 @@ class DraggableDirective {
|
|
|
214
217
|
this.renderer.setStyle(this.el.nativeElement, 'display', this.display);
|
|
215
218
|
}
|
|
216
219
|
}
|
|
217
|
-
DraggableDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
218
|
-
DraggableDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "
|
|
219
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
220
|
+
DraggableDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DraggableDirective, deps: [{ token: SortableContainer }, { token: i0.ElementRef }, { token: i0.Renderer2 }], target: i0.ɵɵFactoryTarget.Directive });
|
|
221
|
+
DraggableDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.3.11", type: DraggableDirective, selector: "[kendoDraggable]", inputs: { index: "index", disabled: "disabled", hidden: "hidden" }, host: { properties: { "class.k-focus": "this._focused", "attr.aria-disabled": "this._disabled" } }, ngImport: i0 });
|
|
222
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DraggableDirective, decorators: [{
|
|
220
223
|
type: Directive,
|
|
221
224
|
args: [{
|
|
222
225
|
selector: '[kendoDraggable]'
|
|
@@ -244,9 +247,9 @@ class ItemTemplateDirective {
|
|
|
244
247
|
this.templateRef = templateRef;
|
|
245
248
|
}
|
|
246
249
|
}
|
|
247
|
-
ItemTemplateDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
248
|
-
ItemTemplateDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "
|
|
249
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
250
|
+
ItemTemplateDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: ItemTemplateDirective, deps: [{ token: i0.TemplateRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
251
|
+
ItemTemplateDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.3.11", type: ItemTemplateDirective, selector: "[kendoSortableItemTemplate]", ngImport: i0 });
|
|
252
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: ItemTemplateDirective, decorators: [{
|
|
250
253
|
type: Directive,
|
|
251
254
|
args: [{
|
|
252
255
|
selector: '[kendoSortableItemTemplate]'
|
|
@@ -260,9 +263,9 @@ class PlaceholderTemplateDirective {
|
|
|
260
263
|
this.templateRef = templateRef;
|
|
261
264
|
}
|
|
262
265
|
}
|
|
263
|
-
PlaceholderTemplateDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
264
|
-
PlaceholderTemplateDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "
|
|
265
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
266
|
+
PlaceholderTemplateDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: PlaceholderTemplateDirective, deps: [{ token: i0.TemplateRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
267
|
+
PlaceholderTemplateDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.3.11", type: PlaceholderTemplateDirective, selector: "[kendoSortablePlaceholderTemplate]", ngImport: i0 });
|
|
268
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: PlaceholderTemplateDirective, decorators: [{
|
|
266
269
|
type: Directive,
|
|
267
270
|
args: [{
|
|
268
271
|
selector: '[kendoSortablePlaceholderTemplate]'
|
|
@@ -571,9 +574,9 @@ class SortableService {
|
|
|
571
574
|
});
|
|
572
575
|
}
|
|
573
576
|
}
|
|
574
|
-
SortableService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
575
|
-
SortableService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
576
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
577
|
+
SortableService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: SortableService, deps: [{ token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
578
|
+
SortableService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: SortableService });
|
|
579
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: SortableService, decorators: [{
|
|
577
580
|
type: Injectable
|
|
578
581
|
}], ctorParameters: function () { return [{ type: i0.NgZone }]; } });
|
|
579
582
|
|
|
@@ -993,7 +996,7 @@ class SortableComponent {
|
|
|
993
996
|
"position": "fixed",
|
|
994
997
|
"top": this.hintLocation.y + 10 + "px"
|
|
995
998
|
};
|
|
996
|
-
|
|
999
|
+
const style = {};
|
|
997
1000
|
Object.assign(style, this.currentItemStyle(this.dragIndex), position);
|
|
998
1001
|
return style;
|
|
999
1002
|
}
|
|
@@ -1060,7 +1063,7 @@ class SortableComponent {
|
|
|
1060
1063
|
}
|
|
1061
1064
|
if (navigate) {
|
|
1062
1065
|
const ctrl = event.ctrlKey || event.metaKey;
|
|
1063
|
-
|
|
1066
|
+
const navigateEvent = new NavigateEvent({ index: targetIndex, oldIndex: this.activeIndex, ctrlKey: ctrl });
|
|
1064
1067
|
this.navigate.emit(navigateEvent);
|
|
1065
1068
|
if (!navigateEvent.isDefaultPrevented()) {
|
|
1066
1069
|
this.activeIndex = targetIndex;
|
|
@@ -1208,7 +1211,6 @@ class SortableComponent {
|
|
|
1208
1211
|
const itemArray = this.itemWrappers.toArray();
|
|
1209
1212
|
const prevClientRect = [];
|
|
1210
1213
|
const nextClientRect = [];
|
|
1211
|
-
const that = this;
|
|
1212
1214
|
clearTimeout(this._animating);
|
|
1213
1215
|
for (let i = 0; i < draggables.length; i++) {
|
|
1214
1216
|
prevClientRect.push(itemArray[draggables[i].prev].nativeElement.getBoundingClientRect());
|
|
@@ -1231,9 +1233,9 @@ class SortableComponent {
|
|
|
1231
1233
|
this.applyAnimationStyle(target, 'transition', 'all ' + this.animationDuration + 'ms');
|
|
1232
1234
|
this.applyAnimationStyle(target, 'transform', 'translate3d(0,0,0)');
|
|
1233
1235
|
clearTimeout(target.animated);
|
|
1234
|
-
target.animated = setTimeout(
|
|
1235
|
-
|
|
1236
|
-
|
|
1236
|
+
target.animated = setTimeout(() => {
|
|
1237
|
+
this.applyAnimationStyle(target, 'transition', '');
|
|
1238
|
+
this.applyAnimationStyle(target, 'transform', '');
|
|
1237
1239
|
target.animated = false;
|
|
1238
1240
|
}, this.animationDuration);
|
|
1239
1241
|
}
|
|
@@ -1298,7 +1300,7 @@ class SortableComponent {
|
|
|
1298
1300
|
this.sortableService.lastDraggable = event.target;
|
|
1299
1301
|
this.sortableService.target = this;
|
|
1300
1302
|
this.sortableService.setSource(this);
|
|
1301
|
-
|
|
1303
|
+
const dragStartEvent = new DragStartEvent({ index: event.target.index });
|
|
1302
1304
|
this.dragStart.emit(dragStartEvent);
|
|
1303
1305
|
if (dragStartEvent.isDefaultPrevented()) {
|
|
1304
1306
|
event.preventDefault();
|
|
@@ -1333,7 +1335,7 @@ class SortableComponent {
|
|
|
1333
1335
|
}
|
|
1334
1336
|
this.sortableService.target = this;
|
|
1335
1337
|
const oldIndex = this.sortableService.activeDraggable ? this.sortableService.activeDraggable.index : 0;
|
|
1336
|
-
|
|
1338
|
+
const dragOverEvent = new DragOverEvent({ index: targetIndex, oldIndex: oldIndex });
|
|
1337
1339
|
this.dragOver.emit(dragOverEvent);
|
|
1338
1340
|
if (!dragOverEvent.isDefaultPrevented() && event.target && event.target.index >= 0) {
|
|
1339
1341
|
this.dragOverIndex = event.target.index;
|
|
@@ -1350,7 +1352,7 @@ class SortableComponent {
|
|
|
1350
1352
|
const index = event.target ? event.target.index : -1;
|
|
1351
1353
|
const oldIndex = this.sortableService.originDraggable ? this.sortableService.originIndex : -1;
|
|
1352
1354
|
this.hintLocation = null;
|
|
1353
|
-
|
|
1355
|
+
const dragEndEvent = new DragEndEvent({ index: index, oldIndex: oldIndex });
|
|
1354
1356
|
this.dragEnd.emit(dragEndEvent);
|
|
1355
1357
|
if (!dragEndEvent.isDefaultPrevented()) {
|
|
1356
1358
|
source.dragIndex = -1;
|
|
@@ -1427,8 +1429,8 @@ class SortableComponent {
|
|
|
1427
1429
|
}
|
|
1428
1430
|
}
|
|
1429
1431
|
}
|
|
1430
|
-
SortableComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1431
|
-
SortableComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "
|
|
1432
|
+
SortableComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: SortableComponent, deps: [{ token: i0.NgZone }, { token: i1.LocalizationService }, { token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: SortableService }], target: i0.ɵɵFactoryTarget.Component });
|
|
1433
|
+
SortableComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: SortableComponent, selector: "kendo-sortable", inputs: { tabIndex: "tabIndex", data: "data", navigable: "navigable", navigatable: "navigatable", animation: "animation", disabledIndexes: "disabledIndexes", zone: "zone", acceptZones: "acceptZones", itemStyle: "itemStyle", emptyItemStyle: "emptyItemStyle", activeItemStyle: "activeItemStyle", disabledItemStyle: "disabledItemStyle", itemClass: "itemClass", activeItemClass: "activeItemClass", emptyItemClass: "emptyItemClass", disabledItemClass: "disabledItemClass", emptyText: "emptyText", activeIndex: "activeIndex" }, outputs: { dragStart: "dragStart", dragEnd: "dragEnd", dragOver: "dragOver", dragLeave: "dragLeave", dataMove: "dataMove", dataAdd: "dataAdd", dataRemove: "dataRemove", navigate: "navigate" }, host: { properties: { "style.touch-action": "this.touchAction", "attr.dir": "this.dir" } }, providers: [
|
|
1432
1434
|
LocalizationService,
|
|
1433
1435
|
{
|
|
1434
1436
|
provide: L10N_PREFIX,
|
|
@@ -1483,7 +1485,7 @@ SortableComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", vers
|
|
|
1483
1485
|
<ng-container *ngIf="!itemTemplateRef">{{_localData[dragIndex].item}}</ng-container>
|
|
1484
1486
|
</div>
|
|
1485
1487
|
`, isInline: true, directives: [{ type: i3.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { type: DraggableDirective, selector: "[kendoDraggable]", inputs: ["index", "disabled", "hidden"] }, { type: i3.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { type: i3.NgStyle, selector: "[ngStyle]", inputs: ["ngStyle"] }, { type: i3.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i3.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet"] }] });
|
|
1486
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1488
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: SortableComponent, decorators: [{
|
|
1487
1489
|
type: Component,
|
|
1488
1490
|
args: [{
|
|
1489
1491
|
exportAs: 'kendoSortable',
|
|
@@ -1788,7 +1790,7 @@ class SortableBindingDirective {
|
|
|
1788
1790
|
}
|
|
1789
1791
|
onNavigate(event) {
|
|
1790
1792
|
if (event.ctrlKey) {
|
|
1791
|
-
|
|
1793
|
+
const moveEvent = new DataMoveEvent({
|
|
1792
1794
|
dataItem: this.sortable.data[event.oldIndex],
|
|
1793
1795
|
index: event.index,
|
|
1794
1796
|
oldIndex: event.oldIndex
|
|
@@ -1814,9 +1816,9 @@ class SortableBindingDirective {
|
|
|
1814
1816
|
}
|
|
1815
1817
|
}
|
|
1816
1818
|
}
|
|
1817
|
-
SortableBindingDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1818
|
-
SortableBindingDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "
|
|
1819
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1819
|
+
SortableBindingDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: SortableBindingDirective, deps: [{ token: SortableComponent }, { token: SortableService }], target: i0.ɵɵFactoryTarget.Directive });
|
|
1820
|
+
SortableBindingDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.3.11", type: SortableBindingDirective, selector: "[kendoSortableBinding]", inputs: { data: ["kendoSortableBinding", "data"] }, ngImport: i0 });
|
|
1821
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: SortableBindingDirective, decorators: [{
|
|
1820
1822
|
type: Directive,
|
|
1821
1823
|
args: [{
|
|
1822
1824
|
selector: '[kendoSortableBinding]'
|
|
@@ -1865,8 +1867,8 @@ const COMPONENT_DIRECTIVES = [
|
|
|
1865
1867
|
*/
|
|
1866
1868
|
class SortableModule {
|
|
1867
1869
|
}
|
|
1868
|
-
SortableModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1869
|
-
SortableModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "
|
|
1870
|
+
SortableModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: SortableModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
1871
|
+
SortableModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: SortableModule, declarations: [SortableComponent,
|
|
1870
1872
|
DraggableDirective,
|
|
1871
1873
|
PlaceholderTemplateDirective,
|
|
1872
1874
|
ItemTemplateDirective,
|
|
@@ -1875,8 +1877,8 @@ SortableModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version:
|
|
|
1875
1877
|
PlaceholderTemplateDirective,
|
|
1876
1878
|
ItemTemplateDirective,
|
|
1877
1879
|
SortableBindingDirective] });
|
|
1878
|
-
SortableModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "
|
|
1879
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1880
|
+
SortableModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: SortableModule, providers: [SortableService], imports: [[CommonModule]] });
|
|
1881
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: SortableModule, decorators: [{
|
|
1880
1882
|
type: NgModule,
|
|
1881
1883
|
args: [{
|
|
1882
1884
|
declarations: [COMPONENT_DIRECTIVES],
|