@progress/kendo-vue-grid 3.7.1 → 3.7.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.
- package/dist/cdn/js/kendo-vue-grid.js +1 -1
- package/dist/es/Grid.js +3 -1
- package/dist/es/interfaces/events.d.ts +8 -0
- package/dist/es/package-metadata.js +1 -1
- package/dist/es/rows/GridRow.js +1 -0
- package/dist/esm/Grid.js +3 -1
- package/dist/esm/interfaces/events.d.ts +8 -0
- package/dist/esm/package-metadata.js +1 -1
- package/dist/esm/rows/GridRow.js +1 -0
- package/dist/npm/Grid.js +3 -1
- package/dist/npm/interfaces/events.d.ts +8 -0
- package/dist/npm/package-metadata.js +1 -1
- package/dist/npm/rows/GridRow.js +1 -0
- package/package.json +14 -14
package/dist/es/Grid.js
CHANGED
|
@@ -526,7 +526,9 @@ var GridVue2 = {
|
|
|
526
526
|
this.$emit('columnreorder', {
|
|
527
527
|
target: this,
|
|
528
528
|
columns: eventColumnProps,
|
|
529
|
-
event: event
|
|
529
|
+
event: event,
|
|
530
|
+
prev: prev,
|
|
531
|
+
next: next
|
|
530
532
|
});
|
|
531
533
|
},
|
|
532
534
|
groupReorder: function groupReorder(prevIndex, nextIndex, event) {
|
|
@@ -241,6 +241,14 @@ export interface GridColumnReorderEvent {
|
|
|
241
241
|
* A native DOM event.
|
|
242
242
|
*/
|
|
243
243
|
event: any;
|
|
244
|
+
/**
|
|
245
|
+
* A previous column index.
|
|
246
|
+
*/
|
|
247
|
+
prev: number;
|
|
248
|
+
/**
|
|
249
|
+
* A next column index.
|
|
250
|
+
*/
|
|
251
|
+
next: number;
|
|
244
252
|
/**
|
|
245
253
|
* The current column collection.
|
|
246
254
|
*/
|
|
@@ -5,7 +5,7 @@ export var packageMetadata = {
|
|
|
5
5
|
name: '@progress/kendo-vue-grid',
|
|
6
6
|
productName: 'Kendo UI for Vue',
|
|
7
7
|
productCodes: ['KENDOUIVUE', 'KENDOUICOMPLETE'],
|
|
8
|
-
publishDate:
|
|
8
|
+
publishDate: 1667290282,
|
|
9
9
|
version: '',
|
|
10
10
|
licensingDocsUrl: 'https://www.telerik.com/kendo-vue-ui/my-license/?utm_medium=product&utm_source=kendovue&utm_campaign=kendo-ui-vue-purchase-license-keys-warning'
|
|
11
11
|
};
|
package/dist/es/rows/GridRow.js
CHANGED
package/dist/esm/Grid.js
CHANGED
|
@@ -526,7 +526,9 @@ var GridVue2 = {
|
|
|
526
526
|
this.$emit('columnreorder', {
|
|
527
527
|
target: this,
|
|
528
528
|
columns: eventColumnProps,
|
|
529
|
-
event: event
|
|
529
|
+
event: event,
|
|
530
|
+
prev: prev,
|
|
531
|
+
next: next
|
|
530
532
|
});
|
|
531
533
|
},
|
|
532
534
|
groupReorder: function groupReorder(prevIndex, nextIndex, event) {
|
|
@@ -241,6 +241,14 @@ export interface GridColumnReorderEvent {
|
|
|
241
241
|
* A native DOM event.
|
|
242
242
|
*/
|
|
243
243
|
event: any;
|
|
244
|
+
/**
|
|
245
|
+
* A previous column index.
|
|
246
|
+
*/
|
|
247
|
+
prev: number;
|
|
248
|
+
/**
|
|
249
|
+
* A next column index.
|
|
250
|
+
*/
|
|
251
|
+
next: number;
|
|
244
252
|
/**
|
|
245
253
|
* The current column collection.
|
|
246
254
|
*/
|
|
@@ -5,7 +5,7 @@ export var packageMetadata = {
|
|
|
5
5
|
name: '@progress/kendo-vue-grid',
|
|
6
6
|
productName: 'Kendo UI for Vue',
|
|
7
7
|
productCodes: ['KENDOUIVUE', 'KENDOUICOMPLETE'],
|
|
8
|
-
publishDate:
|
|
8
|
+
publishDate: 1667290282,
|
|
9
9
|
version: '',
|
|
10
10
|
licensingDocsUrl: 'https://www.telerik.com/kendo-vue-ui/my-license/?utm_medium=product&utm_source=kendovue&utm_campaign=kendo-ui-vue-purchase-license-keys-warning'
|
|
11
11
|
};
|
package/dist/esm/rows/GridRow.js
CHANGED
package/dist/npm/Grid.js
CHANGED
|
@@ -532,7 +532,9 @@ var GridVue2 = {
|
|
|
532
532
|
this.$emit('columnreorder', {
|
|
533
533
|
target: this,
|
|
534
534
|
columns: eventColumnProps,
|
|
535
|
-
event: event
|
|
535
|
+
event: event,
|
|
536
|
+
prev: prev,
|
|
537
|
+
next: next
|
|
536
538
|
});
|
|
537
539
|
},
|
|
538
540
|
groupReorder: function groupReorder(prevIndex, nextIndex, event) {
|
|
@@ -241,6 +241,14 @@ export interface GridColumnReorderEvent {
|
|
|
241
241
|
* A native DOM event.
|
|
242
242
|
*/
|
|
243
243
|
event: any;
|
|
244
|
+
/**
|
|
245
|
+
* A previous column index.
|
|
246
|
+
*/
|
|
247
|
+
prev: number;
|
|
248
|
+
/**
|
|
249
|
+
* A next column index.
|
|
250
|
+
*/
|
|
251
|
+
next: number;
|
|
244
252
|
/**
|
|
245
253
|
* The current column collection.
|
|
246
254
|
*/
|
|
@@ -8,7 +8,7 @@ exports.packageMetadata = {
|
|
|
8
8
|
name: '@progress/kendo-vue-grid',
|
|
9
9
|
productName: 'Kendo UI for Vue',
|
|
10
10
|
productCodes: ['KENDOUIVUE', 'KENDOUICOMPLETE'],
|
|
11
|
-
publishDate:
|
|
11
|
+
publishDate: 1667290282,
|
|
12
12
|
version: '',
|
|
13
13
|
licensingDocsUrl: 'https://www.telerik.com/kendo-vue-ui/my-license/?utm_medium=product&utm_source=kendovue&utm_campaign=kendo-ui-vue-purchase-license-keys-warning'
|
|
14
14
|
};
|
package/dist/npm/rows/GridRow.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progress/kendo-vue-grid",
|
|
3
|
-
"version": "3.7.
|
|
3
|
+
"version": "3.7.2",
|
|
4
4
|
"description": "Kendo UI for Vue Grid package",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -41,24 +41,24 @@
|
|
|
41
41
|
"vue": "^2.6.12 || ^3.0.2"
|
|
42
42
|
},
|
|
43
43
|
"dependencies": {
|
|
44
|
-
"@progress/kendo-vue-common": "3.7.
|
|
44
|
+
"@progress/kendo-vue-common": "3.7.2"
|
|
45
45
|
},
|
|
46
46
|
"devDependencies": {
|
|
47
47
|
"@progress/kendo-data-query": "^1.5.4",
|
|
48
48
|
"@progress/kendo-drawing": "^1.9.3",
|
|
49
49
|
"@progress/kendo-licensing": "^1.1.0",
|
|
50
|
-
"@progress/kendo-vue-animation": "3.7.
|
|
51
|
-
"@progress/kendo-vue-buttons": "3.7.
|
|
52
|
-
"@progress/kendo-vue-charts": "3.7.
|
|
53
|
-
"@progress/kendo-vue-data-tools": "3.7.
|
|
54
|
-
"@progress/kendo-vue-dateinputs": "3.7.
|
|
55
|
-
"@progress/kendo-vue-dropdowns": "3.7.
|
|
56
|
-
"@progress/kendo-vue-excel-export": "3.7.
|
|
57
|
-
"@progress/kendo-vue-indicators": "3.7.
|
|
58
|
-
"@progress/kendo-vue-inputs": "3.7.
|
|
59
|
-
"@progress/kendo-vue-intl": "3.7.
|
|
60
|
-
"@progress/kendo-vue-pdf": "3.7.
|
|
61
|
-
"@progress/kendo-vue-popup": "3.7.
|
|
50
|
+
"@progress/kendo-vue-animation": "3.7.2",
|
|
51
|
+
"@progress/kendo-vue-buttons": "3.7.2",
|
|
52
|
+
"@progress/kendo-vue-charts": "3.7.2",
|
|
53
|
+
"@progress/kendo-vue-data-tools": "3.7.2",
|
|
54
|
+
"@progress/kendo-vue-dateinputs": "3.7.2",
|
|
55
|
+
"@progress/kendo-vue-dropdowns": "3.7.2",
|
|
56
|
+
"@progress/kendo-vue-excel-export": "3.7.2",
|
|
57
|
+
"@progress/kendo-vue-indicators": "3.7.2",
|
|
58
|
+
"@progress/kendo-vue-inputs": "3.7.2",
|
|
59
|
+
"@progress/kendo-vue-intl": "3.7.2",
|
|
60
|
+
"@progress/kendo-vue-pdf": "3.7.2",
|
|
61
|
+
"@progress/kendo-vue-popup": "3.7.2",
|
|
62
62
|
"cldr-core": "^41.0.0",
|
|
63
63
|
"cldr-dates-full": "^41.0.0",
|
|
64
64
|
"cldr-numbers-full": "^41.0.0",
|