@progress/kendo-angular-sortable 12.2.0-develop.7 → 13.0.0-develop.2
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.
|
@@ -9,7 +9,7 @@ export const packageMetadata = {
|
|
|
9
9
|
name: '@progress/kendo-angular-sortable',
|
|
10
10
|
productName: 'Kendo UI for Angular',
|
|
11
11
|
productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
|
|
12
|
-
publishDate:
|
|
13
|
-
version: '
|
|
12
|
+
publishDate: 1684846528,
|
|
13
|
+
version: '13.0.0-develop.2',
|
|
14
14
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
15
15
|
};
|
package/esm2020/util.mjs
CHANGED
|
@@ -47,7 +47,7 @@ export const draggableFromPoint = (x, y) => {
|
|
|
47
47
|
}
|
|
48
48
|
const isDraggable = el.hasAttribute("kendoDraggable");
|
|
49
49
|
const isChild = closest(el, matchesNodeAttr("kendoDraggable")) !== null;
|
|
50
|
-
const parentDraggable = closest(el, matchesNodeAttr("
|
|
50
|
+
const parentDraggable = closest(el, matchesNodeAttr("data-sortable-index"));
|
|
51
51
|
const index = parentDraggable ? parseInt(parentDraggable.getAttribute("data-sortable-index"), 10) : -1;
|
|
52
52
|
return {
|
|
53
53
|
element: el,
|
|
@@ -58,7 +58,7 @@ const draggableFromPoint = (x, y) => {
|
|
|
58
58
|
}
|
|
59
59
|
const isDraggable = el.hasAttribute("kendoDraggable");
|
|
60
60
|
const isChild = closest(el, matchesNodeAttr("kendoDraggable")) !== null;
|
|
61
|
-
const parentDraggable = closest(el, matchesNodeAttr("
|
|
61
|
+
const parentDraggable = closest(el, matchesNodeAttr("data-sortable-index"));
|
|
62
62
|
const index = parentDraggable ? parseInt(parentDraggable.getAttribute("data-sortable-index"), 10) : -1;
|
|
63
63
|
return {
|
|
64
64
|
element: el,
|
|
@@ -189,8 +189,8 @@ const packageMetadata = {
|
|
|
189
189
|
name: '@progress/kendo-angular-sortable',
|
|
190
190
|
productName: 'Kendo UI for Angular',
|
|
191
191
|
productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
|
|
192
|
-
publishDate:
|
|
193
|
-
version: '
|
|
192
|
+
publishDate: 1684846528,
|
|
193
|
+
version: '13.0.0-develop.2',
|
|
194
194
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
195
195
|
};
|
|
196
196
|
|
|
@@ -58,7 +58,7 @@ const draggableFromPoint = (x, y) => {
|
|
|
58
58
|
}
|
|
59
59
|
const isDraggable = el.hasAttribute("kendoDraggable");
|
|
60
60
|
const isChild = closest(el, matchesNodeAttr("kendoDraggable")) !== null;
|
|
61
|
-
const parentDraggable = closest(el, matchesNodeAttr("
|
|
61
|
+
const parentDraggable = closest(el, matchesNodeAttr("data-sortable-index"));
|
|
62
62
|
const index = parentDraggable ? parseInt(parentDraggable.getAttribute("data-sortable-index"), 10) : -1;
|
|
63
63
|
return {
|
|
64
64
|
element: el,
|
|
@@ -189,8 +189,8 @@ const packageMetadata = {
|
|
|
189
189
|
name: '@progress/kendo-angular-sortable',
|
|
190
190
|
productName: 'Kendo UI for Angular',
|
|
191
191
|
productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
|
|
192
|
-
publishDate:
|
|
193
|
-
version: '
|
|
192
|
+
publishDate: 1684846528,
|
|
193
|
+
version: '13.0.0-develop.2',
|
|
194
194
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
195
195
|
};
|
|
196
196
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progress/kendo-angular-sortable",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "13.0.0-develop.2",
|
|
4
4
|
"description": "A Sortable Component for Angular",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE.md",
|
|
6
6
|
"author": "Progress",
|
|
@@ -23,13 +23,13 @@
|
|
|
23
23
|
"@angular/core": "13 - 16",
|
|
24
24
|
"@angular/platform-browser": "13 - 16",
|
|
25
25
|
"@progress/kendo-licensing": "^1.0.2",
|
|
26
|
-
"@progress/kendo-angular-common": "
|
|
27
|
-
"@progress/kendo-angular-l10n": "
|
|
26
|
+
"@progress/kendo-angular-common": "13.0.0-develop.2",
|
|
27
|
+
"@progress/kendo-angular-l10n": "13.0.0-develop.2",
|
|
28
28
|
"rxjs": "^6.5.3 || ^7.0.0"
|
|
29
29
|
},
|
|
30
30
|
"dependencies": {
|
|
31
31
|
"tslib": "^2.3.1",
|
|
32
|
-
"@progress/kendo-angular-schematics": "
|
|
32
|
+
"@progress/kendo-angular-schematics": "13.0.0-develop.2",
|
|
33
33
|
"@progress/kendo-draggable": "^3.0.2"
|
|
34
34
|
},
|
|
35
35
|
"schematics": "./schematics/collection.json",
|