@progress/kendo-vue-treelist 3.6.3 → 3.6.4-dev.202210070908

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.
@@ -578,10 +578,10 @@ var TreeListVue2 = {
578
578
  on: this.v3 ? undefined : {
579
579
  "drop": this.onRowDrop,
580
580
  "drag": this.onRowDrag,
581
- "click": function click(e) {
581
+ "rowclick": function rowclick(e) {
582
582
  return _this.rowClick(e, item);
583
583
  },
584
- "doubleClick": function doubleClick(e) {
584
+ "rowdblclick": function rowdblclick(e) {
585
585
  return _this.rowDoubleClick(e, item);
586
586
  },
587
587
  "contextMenu": function contextMenu(e) {
@@ -589,10 +589,10 @@ var TreeListVue2 = {
589
589
  }
590
590
  },
591
591
  onDrag: this.onRowDrag,
592
- onClick: function click(e) {
592
+ onRowclick: function rowclick(e) {
593
593
  return _this.rowClick(e, item);
594
594
  },
595
- onDoubleClick: function doubleClick(e) {
595
+ onRowdblclick: function rowdblclick(e) {
596
596
  return _this.rowDoubleClick(e, item);
597
597
  },
598
598
  onContextMenu: function contextMenu(e) {
@@ -1199,13 +1199,13 @@ var TreeListVue2 = {
1199
1199
  }
1200
1200
  },
1201
1201
  rowDoubleClick: function rowDoubleClick(e, item) {
1202
- if (this.$props.onRowDoubleClick && e.target.nodeName === 'TD') {
1202
+ if (e.target.nodeName === 'TD') {
1203
1203
  var rowDoubleClickEvent = __assign({
1204
1204
  dataItem: item.dataItem,
1205
1205
  level: item.level
1206
1206
  }, this.getArguments(e));
1207
1207
 
1208
- this.$emit('rowdblclick', rowDoubleClickEvent);
1208
+ this.$emit('rowdoubleclick', rowDoubleClickEvent);
1209
1209
  }
1210
1210
  },
1211
1211
  rowContextMenu: function rowContextMenu(e, item) {
@@ -5,7 +5,7 @@ export var packageMetadata = {
5
5
  name: '@progress/kendo-vue-treelist',
6
6
  productName: 'Kendo UI for Vue',
7
7
  productCodes: ['KENDOUIVUE', 'KENDOUICOMPLETE'],
8
- publishDate: 1663839520,
8
+ publishDate: 1665133530,
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
  };
@@ -79,10 +79,10 @@ var TreeListRowVue2 = {
79
79
  onClick: this.handleClick,
80
80
  on: this.v3 ? undefined : {
81
81
  "click": this.handleClick,
82
- "doubleclick": this.handleDoubleClick,
82
+ "dblclick": this.handleDoubleClick,
83
83
  "contextmenu": this.handleContextMenu
84
84
  },
85
- onDoubleclick: this.handleDoubleClick,
85
+ onDblclick: this.handleDoubleClick,
86
86
  onContextmenu: this.handleContextMenu,
87
87
  "class": this.wrapperClass,
88
88
  style: rowHeight !== undefined ? {
@@ -578,10 +578,10 @@ var TreeListVue2 = {
578
578
  on: this.v3 ? undefined : {
579
579
  "drop": this.onRowDrop,
580
580
  "drag": this.onRowDrag,
581
- "click": function click(e) {
581
+ "rowclick": function rowclick(e) {
582
582
  return _this.rowClick(e, item);
583
583
  },
584
- "doubleClick": function doubleClick(e) {
584
+ "rowdblclick": function rowdblclick(e) {
585
585
  return _this.rowDoubleClick(e, item);
586
586
  },
587
587
  "contextMenu": function contextMenu(e) {
@@ -589,10 +589,10 @@ var TreeListVue2 = {
589
589
  }
590
590
  },
591
591
  onDrag: this.onRowDrag,
592
- onClick: function click(e) {
592
+ onRowclick: function rowclick(e) {
593
593
  return _this.rowClick(e, item);
594
594
  },
595
- onDoubleClick: function doubleClick(e) {
595
+ onRowdblclick: function rowdblclick(e) {
596
596
  return _this.rowDoubleClick(e, item);
597
597
  },
598
598
  onContextMenu: function contextMenu(e) {
@@ -1199,13 +1199,13 @@ var TreeListVue2 = {
1199
1199
  }
1200
1200
  },
1201
1201
  rowDoubleClick: function rowDoubleClick(e, item) {
1202
- if (this.$props.onRowDoubleClick && e.target.nodeName === 'TD') {
1202
+ if (e.target.nodeName === 'TD') {
1203
1203
  var rowDoubleClickEvent = __assign({
1204
1204
  dataItem: item.dataItem,
1205
1205
  level: item.level
1206
1206
  }, this.getArguments(e));
1207
1207
 
1208
- this.$emit('rowdblclick', rowDoubleClickEvent);
1208
+ this.$emit('rowdoubleclick', rowDoubleClickEvent);
1209
1209
  }
1210
1210
  },
1211
1211
  rowContextMenu: function rowContextMenu(e, item) {
@@ -5,7 +5,7 @@ export var packageMetadata = {
5
5
  name: '@progress/kendo-vue-treelist',
6
6
  productName: 'Kendo UI for Vue',
7
7
  productCodes: ['KENDOUIVUE', 'KENDOUICOMPLETE'],
8
- publishDate: 1663839520,
8
+ publishDate: 1665133530,
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
  };
@@ -79,10 +79,10 @@ var TreeListRowVue2 = {
79
79
  onClick: this.handleClick,
80
80
  on: this.v3 ? undefined : {
81
81
  "click": this.handleClick,
82
- "doubleclick": this.handleDoubleClick,
82
+ "dblclick": this.handleDoubleClick,
83
83
  "contextmenu": this.handleContextMenu
84
84
  },
85
- onDoubleclick: this.handleDoubleClick,
85
+ onDblclick: this.handleDoubleClick,
86
86
  onContextmenu: this.handleContextMenu,
87
87
  "class": this.wrapperClass,
88
88
  style: rowHeight !== undefined ? {
@@ -598,10 +598,10 @@ var TreeListVue2 = {
598
598
  on: this.v3 ? undefined : {
599
599
  "drop": this.onRowDrop,
600
600
  "drag": this.onRowDrag,
601
- "click": function click(e) {
601
+ "rowclick": function rowclick(e) {
602
602
  return _this.rowClick(e, item);
603
603
  },
604
- "doubleClick": function doubleClick(e) {
604
+ "rowdblclick": function rowdblclick(e) {
605
605
  return _this.rowDoubleClick(e, item);
606
606
  },
607
607
  "contextMenu": function contextMenu(e) {
@@ -609,10 +609,10 @@ var TreeListVue2 = {
609
609
  }
610
610
  },
611
611
  onDrag: this.onRowDrag,
612
- onClick: function click(e) {
612
+ onRowclick: function rowclick(e) {
613
613
  return _this.rowClick(e, item);
614
614
  },
615
- onDoubleClick: function doubleClick(e) {
615
+ onRowdblclick: function rowdblclick(e) {
616
616
  return _this.rowDoubleClick(e, item);
617
617
  },
618
618
  onContextMenu: function contextMenu(e) {
@@ -1219,13 +1219,13 @@ var TreeListVue2 = {
1219
1219
  }
1220
1220
  },
1221
1221
  rowDoubleClick: function rowDoubleClick(e, item) {
1222
- if (this.$props.onRowDoubleClick && e.target.nodeName === 'TD') {
1222
+ if (e.target.nodeName === 'TD') {
1223
1223
  var rowDoubleClickEvent = __assign({
1224
1224
  dataItem: item.dataItem,
1225
1225
  level: item.level
1226
1226
  }, this.getArguments(e));
1227
1227
 
1228
- this.$emit('rowdblclick', rowDoubleClickEvent);
1228
+ this.$emit('rowdoubleclick', rowDoubleClickEvent);
1229
1229
  }
1230
1230
  },
1231
1231
  rowContextMenu: function rowContextMenu(e, item) {
@@ -8,7 +8,7 @@ exports.packageMetadata = {
8
8
  name: '@progress/kendo-vue-treelist',
9
9
  productName: 'Kendo UI for Vue',
10
10
  productCodes: ['KENDOUIVUE', 'KENDOUICOMPLETE'],
11
- publishDate: 1663839520,
11
+ publishDate: 1665133530,
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
  };
@@ -88,10 +88,10 @@ var TreeListRowVue2 = {
88
88
  onClick: this.handleClick,
89
89
  on: this.v3 ? undefined : {
90
90
  "click": this.handleClick,
91
- "doubleclick": this.handleDoubleClick,
91
+ "dblclick": this.handleDoubleClick,
92
92
  "contextmenu": this.handleContextMenu
93
93
  },
94
- onDoubleclick: this.handleDoubleClick,
94
+ onDblclick: this.handleDoubleClick,
95
95
  onContextmenu: this.handleContextMenu,
96
96
  "class": this.wrapperClass,
97
97
  style: rowHeight !== undefined ? {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@progress/kendo-vue-treelist",
3
- "version": "3.6.3",
3
+ "version": "3.6.4-dev.202210070908",
4
4
  "description": "Kendo UI for Vue TreeList package",
5
5
  "repository": {
6
6
  "type": "git",
@@ -47,22 +47,22 @@
47
47
  "vue": "^2.6.12 || ^3.0.2"
48
48
  },
49
49
  "dependencies": {
50
- "@progress/kendo-vue-common": "3.6.3"
50
+ "@progress/kendo-vue-common": "3.6.4-dev.202210070908"
51
51
  },
52
52
  "devDependencies": {
53
53
  "@progress/kendo-data-query": "^1.0.0",
54
54
  "@progress/kendo-date-math": "^1.4.1",
55
55
  "@progress/kendo-drawing": "^1.8.0",
56
56
  "@progress/kendo-licensing": "^1.0.1",
57
- "@progress/kendo-vue-buttons": "3.6.3",
58
- "@progress/kendo-vue-data-tools": "3.6.3",
59
- "@progress/kendo-vue-dateinputs": "3.6.3",
60
- "@progress/kendo-vue-dialogs": "3.6.3",
61
- "@progress/kendo-vue-dropdowns": "3.6.3",
62
- "@progress/kendo-vue-excel-export": "3.6.3",
63
- "@progress/kendo-vue-inputs": "3.6.3",
64
- "@progress/kendo-vue-intl": "3.6.3",
65
- "@progress/kendo-vue-pdf": "3.6.3"
57
+ "@progress/kendo-vue-buttons": "3.6.4-dev.202210070908",
58
+ "@progress/kendo-vue-data-tools": "3.6.4-dev.202210070908",
59
+ "@progress/kendo-vue-dateinputs": "3.6.4-dev.202210070908",
60
+ "@progress/kendo-vue-dialogs": "3.6.4-dev.202210070908",
61
+ "@progress/kendo-vue-dropdowns": "3.6.4-dev.202210070908",
62
+ "@progress/kendo-vue-excel-export": "3.6.4-dev.202210070908",
63
+ "@progress/kendo-vue-inputs": "3.6.4-dev.202210070908",
64
+ "@progress/kendo-vue-intl": "3.6.4-dev.202210070908",
65
+ "@progress/kendo-vue-pdf": "3.6.4-dev.202210070908"
66
66
  },
67
67
  "@progress": {
68
68
  "friendlyName": "TreeList",