@progress/kendo-angular-sortable 23.3.0-develop.7 → 23.3.0-develop.9
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.
|
@@ -193,8 +193,8 @@ const packageMetadata = {
|
|
|
193
193
|
productName: 'Kendo UI for Angular',
|
|
194
194
|
productCode: 'KENDOUIANGULAR',
|
|
195
195
|
productCodes: ['KENDOUIANGULAR'],
|
|
196
|
-
publishDate:
|
|
197
|
-
version: '23.3.0-develop.
|
|
196
|
+
publishDate: 1774279963,
|
|
197
|
+
version: '23.3.0-develop.9',
|
|
198
198
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
199
199
|
};
|
|
200
200
|
|
|
@@ -707,13 +707,13 @@ class SortableComponent {
|
|
|
707
707
|
disabledIndexes = [];
|
|
708
708
|
/**
|
|
709
709
|
* Sets a string that represents the name of the zone to which the Sortable belongs
|
|
710
|
-
* ([see example](https://www.telerik.com/kendo-angular-ui/components/sortable/items#transferring-
|
|
710
|
+
* ([see example](https://www.telerik.com/kendo-angular-ui/components/sortable/items#transferring-items)). Items can be transferred
|
|
711
711
|
* between Sortables in the same zone.
|
|
712
712
|
*/
|
|
713
713
|
zone = undefined;
|
|
714
714
|
/**
|
|
715
715
|
* Defines the zones from which items can be transferred onto the current Sortable component
|
|
716
|
-
* ([see example](https://www.telerik.com/kendo-angular-ui/components/sortable/items#transferring-
|
|
716
|
+
* ([see example](https://www.telerik.com/kendo-angular-ui/components/sortable/items#transferring-items)). If the `acceptZones` property
|
|
717
717
|
* of the target Sortable is set, you can transfer items between Sortables in different zones.
|
|
718
718
|
*/
|
|
719
719
|
acceptZones = undefined;
|
package/package-metadata.mjs
CHANGED
|
@@ -7,7 +7,7 @@ export const packageMetadata = {
|
|
|
7
7
|
"productCodes": [
|
|
8
8
|
"KENDOUIANGULAR"
|
|
9
9
|
],
|
|
10
|
-
"publishDate":
|
|
11
|
-
"version": "23.3.0-develop.
|
|
10
|
+
"publishDate": 1774279963,
|
|
11
|
+
"version": "23.3.0-develop.9",
|
|
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-sortable",
|
|
3
|
-
"version": "23.3.0-develop.
|
|
3
|
+
"version": "23.3.0-develop.9",
|
|
4
4
|
"description": "A Sortable Component for Angular",
|
|
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": 1774279963,
|
|
23
23
|
"licensingDocsUrl": "https://www.telerik.com/kendo-angular-ui/my-license/"
|
|
24
24
|
}
|
|
25
25
|
},
|
|
@@ -29,13 +29,13 @@
|
|
|
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": "23.3.0-develop.
|
|
33
|
-
"@progress/kendo-angular-l10n": "23.3.0-develop.
|
|
32
|
+
"@progress/kendo-angular-common": "23.3.0-develop.9",
|
|
33
|
+
"@progress/kendo-angular-l10n": "23.3.0-develop.9",
|
|
34
34
|
"rxjs": "^6.5.3 || ^7.0.0"
|
|
35
35
|
},
|
|
36
36
|
"dependencies": {
|
|
37
37
|
"tslib": "^2.3.1",
|
|
38
|
-
"@progress/kendo-angular-schematics": "23.3.0-develop.
|
|
38
|
+
"@progress/kendo-angular-schematics": "23.3.0-develop.9",
|
|
39
39
|
"@progress/kendo-draggable": "^3.0.2"
|
|
40
40
|
},
|
|
41
41
|
"schematics": "./schematics/collection.json",
|
package/sortable.component.d.ts
CHANGED
|
@@ -56,13 +56,13 @@ export declare class SortableComponent implements OnInit, OnDestroy, OnChanges,
|
|
|
56
56
|
disabledIndexes: number[];
|
|
57
57
|
/**
|
|
58
58
|
* Sets a string that represents the name of the zone to which the Sortable belongs
|
|
59
|
-
* ([see example](https://www.telerik.com/kendo-angular-ui/components/sortable/items#transferring-
|
|
59
|
+
* ([see example](https://www.telerik.com/kendo-angular-ui/components/sortable/items#transferring-items)). Items can be transferred
|
|
60
60
|
* between Sortables in the same zone.
|
|
61
61
|
*/
|
|
62
62
|
zone: string;
|
|
63
63
|
/**
|
|
64
64
|
* Defines the zones from which items can be transferred onto the current Sortable component
|
|
65
|
-
* ([see example](https://www.telerik.com/kendo-angular-ui/components/sortable/items#transferring-
|
|
65
|
+
* ([see example](https://www.telerik.com/kendo-angular-ui/components/sortable/items#transferring-items)). If the `acceptZones` property
|
|
66
66
|
* of the target Sortable is set, you can transfer items between Sortables in different zones.
|
|
67
67
|
*/
|
|
68
68
|
acceptZones: string[];
|