@progress/kendo-vue-treelist 3.6.4 → 3.7.0-dev.202210250731

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.
Files changed (77) hide show
  1. package/dist/cdn/js/kendo-vue-treelist.js +1 -1
  2. package/dist/es/TreeList.js +345 -370
  3. package/dist/es/TreeListNav.js +4 -4
  4. package/dist/es/cells/EditCells/TreeListBooleanEditor.d.ts +1 -1
  5. package/dist/es/cells/EditCells/TreeListBooleanEditor.js +20 -4
  6. package/dist/es/cells/EditCells/TreeListDateEditor.d.ts +1 -1
  7. package/dist/es/cells/EditCells/TreeListDateEditor.js +12 -5
  8. package/dist/es/cells/EditCells/TreeListNumericEditor.d.ts +1 -1
  9. package/dist/es/cells/EditCells/TreeListNumericEditor.js +12 -5
  10. package/dist/es/cells/EditCells/TreeListTextEditor.d.ts +2 -1
  11. package/dist/es/cells/EditCells/TreeListTextEditor.js +25 -6
  12. package/dist/es/cells/FilterCells/TreeListBooleanFilter.js +4 -17
  13. package/dist/es/cells/FilterCells/TreeListDateFilter.js +4 -17
  14. package/dist/es/cells/FilterCells/TreeListNumericFilter.js +4 -17
  15. package/dist/es/cells/FilterCells/TreeListTextFilter.js +4 -17
  16. package/dist/es/cells/TreeListCell.js +27 -38
  17. package/dist/es/cells/TreeListSelectionCell.js +7 -8
  18. package/dist/es/interfaces/TreeListCellProps.d.ts +4 -0
  19. package/dist/es/interfaces/TreeListProps.d.ts +31 -7
  20. package/dist/es/interfaces/events.d.ts +16 -3
  21. package/dist/es/package-metadata.js +1 -1
  22. package/dist/es/rows/{DragClue.d.ts → RowDragClue.d.ts} +0 -0
  23. package/dist/es/rows/{DragClue.js → RowDragClue.js} +14 -3
  24. package/dist/es/rows/TreeListDraggableRow.d.ts +38 -1
  25. package/dist/es/rows/TreeListDraggableRow.js +175 -123
  26. package/dist/es/rows/TreeListRow.js +39 -17
  27. package/dist/esm/TreeList.js +345 -370
  28. package/dist/esm/TreeListNav.js +4 -4
  29. package/dist/esm/cells/EditCells/TreeListBooleanEditor.d.ts +1 -1
  30. package/dist/esm/cells/EditCells/TreeListBooleanEditor.js +20 -4
  31. package/dist/esm/cells/EditCells/TreeListDateEditor.d.ts +1 -1
  32. package/dist/esm/cells/EditCells/TreeListDateEditor.js +12 -5
  33. package/dist/esm/cells/EditCells/TreeListNumericEditor.d.ts +1 -1
  34. package/dist/esm/cells/EditCells/TreeListNumericEditor.js +12 -5
  35. package/dist/esm/cells/EditCells/TreeListTextEditor.d.ts +2 -1
  36. package/dist/esm/cells/EditCells/TreeListTextEditor.js +25 -6
  37. package/dist/esm/cells/FilterCells/TreeListBooleanFilter.js +4 -17
  38. package/dist/esm/cells/FilterCells/TreeListDateFilter.js +4 -17
  39. package/dist/esm/cells/FilterCells/TreeListNumericFilter.js +4 -17
  40. package/dist/esm/cells/FilterCells/TreeListTextFilter.js +4 -17
  41. package/dist/esm/cells/TreeListCell.js +27 -38
  42. package/dist/esm/cells/TreeListSelectionCell.js +7 -8
  43. package/dist/esm/interfaces/TreeListCellProps.d.ts +4 -0
  44. package/dist/esm/interfaces/TreeListProps.d.ts +31 -7
  45. package/dist/esm/interfaces/events.d.ts +16 -3
  46. package/dist/esm/package-metadata.js +1 -1
  47. package/dist/esm/rows/{DragClue.d.ts → RowDragClue.d.ts} +0 -0
  48. package/dist/esm/rows/{DragClue.js → RowDragClue.js} +14 -3
  49. package/dist/esm/rows/TreeListDraggableRow.d.ts +38 -1
  50. package/dist/esm/rows/TreeListDraggableRow.js +175 -123
  51. package/dist/esm/rows/TreeListRow.js +39 -17
  52. package/dist/npm/TreeList.js +344 -383
  53. package/dist/npm/TreeListNav.js +6 -9
  54. package/dist/npm/cells/EditCells/TreeListBooleanEditor.d.ts +1 -1
  55. package/dist/npm/cells/EditCells/TreeListBooleanEditor.js +22 -10
  56. package/dist/npm/cells/EditCells/TreeListDateEditor.d.ts +1 -1
  57. package/dist/npm/cells/EditCells/TreeListDateEditor.js +14 -12
  58. package/dist/npm/cells/EditCells/TreeListNumericEditor.d.ts +1 -1
  59. package/dist/npm/cells/EditCells/TreeListNumericEditor.js +14 -12
  60. package/dist/npm/cells/EditCells/TreeListTextEditor.d.ts +2 -1
  61. package/dist/npm/cells/EditCells/TreeListTextEditor.js +27 -12
  62. package/dist/npm/cells/FilterCells/TreeListBooleanFilter.js +4 -22
  63. package/dist/npm/cells/FilterCells/TreeListDateFilter.js +4 -22
  64. package/dist/npm/cells/FilterCells/TreeListNumericFilter.js +4 -22
  65. package/dist/npm/cells/FilterCells/TreeListTextFilter.js +4 -22
  66. package/dist/npm/cells/TreeListCell.js +27 -43
  67. package/dist/npm/cells/TreeListSelectionCell.js +9 -15
  68. package/dist/npm/interfaces/TreeListCellProps.d.ts +4 -0
  69. package/dist/npm/interfaces/TreeListProps.d.ts +31 -7
  70. package/dist/npm/interfaces/events.d.ts +16 -3
  71. package/dist/npm/package-metadata.js +1 -1
  72. package/dist/npm/rows/{DragClue.d.ts → RowDragClue.d.ts} +0 -0
  73. package/dist/npm/rows/{DragClue.js → RowDragClue.js} +16 -6
  74. package/dist/npm/rows/TreeListDraggableRow.d.ts +38 -1
  75. package/dist/npm/rows/TreeListDraggableRow.js +182 -124
  76. package/dist/npm/rows/TreeListRow.js +41 -22
  77. package/package.json +12 -11
@@ -2,19 +2,15 @@ var __assign = this && this.__assign || function () {
2
2
  __assign = Object.assign || function (t) {
3
3
  for (var s, i = 1, n = arguments.length; i < n; i++) {
4
4
  s = arguments[i];
5
-
6
5
  for (var p in s) {
7
6
  if (Object.prototype.hasOwnProperty.call(s, p)) t[p] = s[p];
8
7
  }
9
8
  }
10
-
11
9
  return t;
12
10
  };
13
-
14
11
  return __assign.apply(this, arguments);
15
- }; // @ts-ignore
16
-
17
-
12
+ };
13
+ // @ts-ignore
18
14
  import * as Vue from 'vue';
19
15
  var allVue = Vue;
20
16
  var gh = allVue.h;
@@ -26,7 +22,6 @@ import { KEYBOARD_NAV_DATA_ID, KEYBOARD_NAV_DATA_LEVEL } from '@progress/kendo-v
26
22
  /**
27
23
  * @hidden
28
24
  */
29
-
30
25
  var TreeListCellVue2 = {
31
26
  name: 'TreeListCell',
32
27
  // @ts-ignore
@@ -61,21 +56,20 @@ var TreeListCellVue2 = {
61
56
  methods: {
62
57
  onKeyDownHandler: function onKeyDownHandler(event) {
63
58
  var _a = this.$props,
64
- expandable = _a.expandable,
65
- dataItem = _a.dataItem,
66
- level = _a.level;
67
-
59
+ expandable = _a.expandable,
60
+ dataItem = _a.dataItem,
61
+ level = _a.level;
68
62
  if (event.defaultPrevented) {
69
63
  return;
70
64
  }
71
-
72
65
  if (event.keyCode === Keys.enter && expandable) {
73
66
  event.preventDefault();
74
67
  this.$emit('expandchange', event, dataItem, level);
75
68
  }
76
69
  },
77
- triggerClick: function triggerClick() {
70
+ triggerClick: function triggerClick(e) {
78
71
  this.$emit('cellclick', {
72
+ event: e,
79
73
  dataItem: this.$props.dataItem,
80
74
  field: this.$props.field
81
75
  });
@@ -104,18 +98,17 @@ var TreeListCellVue2 = {
104
98
  },
105
99
  triggerExpandChange: function triggerExpandChange(event) {
106
100
  var _a = this.$props,
107
- dataItem = _a.dataItem,
108
- level = _a.level;
101
+ dataItem = _a.dataItem,
102
+ level = _a.level;
109
103
  this.$emit('expandchange', event, dataItem, level);
110
104
  }
111
105
  },
112
106
  computed: {
113
107
  wrapperClass: function wrapperClass() {
114
108
  var _a;
115
-
116
109
  var _b = this.$props,
117
- expandable = _b.expandable,
118
- isSelected = _b.isSelected;
110
+ expandable = _b.expandable,
111
+ isSelected = _b.isSelected;
119
112
  return _a = {}, _a['k-text-nowrap'] = expandable, _a['k-selected'] = isSelected, _a;
120
113
  }
121
114
  },
@@ -132,36 +125,32 @@ var TreeListCellVue2 = {
132
125
  render: function render(createElement) {
133
126
  var h = gh || createElement;
134
127
  var _a = this.$props,
135
- hasChildren = _a.hasChildren,
136
- _b = _a.level,
137
- level = _b === void 0 ? [0] : _b,
138
- expanded = _a.expanded,
139
- dataItem = _a.dataItem,
140
- format = _a.format,
141
- id = _a.id,
142
- colSpan = _a.colSpan,
143
- ariaColumnIndex = _a.ariaColumnIndex,
144
- isSelected = _a.isSelected,
145
- expandable = _a.expandable,
146
- field = _a.field;
147
- var data = getNestedValue(field, dataItem);
128
+ hasChildren = _a.hasChildren,
129
+ _b = _a.level,
130
+ level = _b === void 0 ? [0] : _b,
131
+ expanded = _a.expanded,
132
+ dataItem = _a.dataItem,
133
+ format = _a.format,
134
+ id = _a.id,
135
+ colSpan = _a.colSpan,
136
+ ariaColumnIndex = _a.ariaColumnIndex,
137
+ isSelected = _a.isSelected,
138
+ expandable = _a.expandable,
139
+ field = _a.field;
140
+ var data = field ? getNestedValue(field, dataItem) : undefined;
148
141
  var navAttrs = this.getKeyboardNavigationAttributes(this.$props.id);
149
142
  var intl = provideIntlService(this);
150
143
  var dataAsString = '';
151
-
152
144
  if (data !== undefined && data !== null) {
153
145
  dataAsString = format ? intl.format(format, data) : data.toString();
154
146
  }
155
-
156
147
  var icons = [];
157
-
158
148
  if (expandable) {
159
149
  icons.push.apply(icons, level.slice(1).map(function (_x) {
160
150
  return h("span", {
161
151
  "class": "k-icon k-i-none"
162
152
  });
163
153
  }, this));
164
-
165
154
  if (hasChildren) {
166
155
  icons.push(h("span", {
167
156
  "class": "k-icon k-i-".concat(expanded ? 'caret-alt-down' : 'caret-alt-right'),
@@ -182,7 +171,6 @@ var TreeListCellVue2 = {
182
171
  }));
183
172
  }
184
173
  }
185
-
186
174
  var defaultRendering = h("td", {
187
175
  "class": this.wrapperClass,
188
176
  colSpan: colSpan,
@@ -201,10 +189,12 @@ var TreeListCellVue2 = {
201
189
  "aria-expanded": hasChildren ? expanded : undefined,
202
190
  "aria-selected": isSelected,
203
191
  role: 'gridcell',
204
- onKeydown: this.onKeyDownHandler,
192
+ onClick: this.triggerClick,
205
193
  on: this.v3 ? undefined : {
194
+ "click": this.triggerClick,
206
195
  "keydown": this.onKeyDownHandler
207
196
  },
197
+ onKeydown: this.onKeyDownHandler,
208
198
  "data-grid-col-index": this.$props.colIndex,
209
199
  tabindex: navAttrs.tabIndex,
210
200
  "data-keyboardnavlevel": navAttrs[KEYBOARD_NAV_DATA_LEVEL],
@@ -232,6 +222,5 @@ var TreeListCellVue2 = {
232
222
  /**
233
223
  * @hidden
234
224
  */
235
-
236
225
  var TreeListCell = TreeListCellVue2;
237
226
  export { TreeListCell, TreeListCellVue2 };
@@ -10,7 +10,6 @@ import { KEYBOARD_NAV_DATA_ID, KEYBOARD_NAV_DATA_LEVEL } from '@progress/kendo-v
10
10
  /**
11
11
  * @hidden
12
12
  */
13
-
14
13
  var TreeListSelectionCellVue2 = {
15
14
  name: 'TreeListSelectionCell',
16
15
  // @ts-ignore
@@ -44,8 +43,9 @@ var TreeListSelectionCellVue2 = {
44
43
  }
45
44
  },
46
45
  methods: {
47
- triggerClick: function triggerClick() {
46
+ triggerClick: function triggerClick(e) {
48
47
  this.$emit('cellclick', {
48
+ event: e,
49
49
  dataItem: this.$props.dataItem,
50
50
  field: this.$props.field
51
51
  });
@@ -91,11 +91,11 @@ var TreeListSelectionCellVue2 = {
91
91
  render: function render(createElement) {
92
92
  var h = gh || createElement;
93
93
  var _a = this.$props,
94
- dataItem = _a.dataItem,
95
- colSpan = _a.colSpan,
96
- ariaColumnIndex = _a.ariaColumnIndex,
97
- isSelected = _a.isSelected,
98
- field = _a.field;
94
+ dataItem = _a.dataItem,
95
+ colSpan = _a.colSpan,
96
+ ariaColumnIndex = _a.ariaColumnIndex,
97
+ isSelected = _a.isSelected,
98
+ field = _a.field;
99
99
  var selectedValue = getNestedValue(field, dataItem);
100
100
  var navAttrs = this.getKeyboardNavigationAttributes(this.$props.id);
101
101
  var intl = provideIntlService(this);
@@ -161,6 +161,5 @@ var TreeListSelectionCellVue2 = {
161
161
  /**
162
162
  * @hidden
163
163
  */
164
-
165
164
  var TreeListSelectionCell = TreeListSelectionCellVue2;
166
165
  export { TreeListSelectionCell, TreeListSelectionCellVue2 };
@@ -28,4 +28,8 @@ export interface TreeListCellProps extends CellProps {
28
28
  * A function for overriding the default rendering of the cell.
29
29
  */
30
30
  render?: any;
31
+ /**
32
+ * If set to true will focus the first input inside the cell.
33
+ */
34
+ focusInputOnMount?: boolean;
31
35
  }
@@ -1,7 +1,7 @@
1
1
  import { SortDescriptor, FilterDescriptor, CompositeFilterDescriptor } from '@progress/kendo-data-query';
2
- import { TreeListSortChangeEvent, TreeListFilterChangeEvent, TreeListExpandChangeEvent, TreeListSelectionChangeEvent, TreeListHeaderSelectionChangeEvent, TreeListItemChangeEvent, TreeListDataStateChangeEvent, TreeListRowClickEvent, TreeListColumnResizeEvent, TreeListColumnReorderEvent, TreeListPageChangeEvent, TreeListRowDragEvent, TreeListColumnMenuFilterChangeEvent, TreeListRowDoubleClickEvent, TreeListRowContextMenuEvent, TreeListKeyDownEvent } from './events';
2
+ import { TreeListSortChangeEvent, TreeListFilterChangeEvent, TreeListExpandChangeEvent, TreeListSelectionChangeEvent, TreeListHeaderSelectionChangeEvent, TreeListItemChangeEvent, TreeListDataStateChangeEvent, TreeListRowClickEvent, TreeListColumnResizeEvent, TreeListColumnReorderEvent, TreeListPageChangeEvent, TreeListRowDragEvent, TreeListColumnMenuFilterChangeEvent, TreeListRowDoubleClickEvent, TreeListRowContextMenuEvent, TreeListKeyDownEvent, TreeListRowEvent } from './events';
3
3
  import { ScrollMode } from '../ScrollMode';
4
- import { SortSettings as TreeListSortSettings } from '@progress/kendo-vue-data-tools';
4
+ import { SortSettings as TreeListSortSettings, FilterOperators } from '@progress/kendo-vue-data-tools';
5
5
  import { TreeListColumnProps } from './TreeListColumnProps';
6
6
  import { TreeListSelectableSettings } from './TreeListSelectableSettings';
7
7
  /**
@@ -68,6 +68,10 @@ export interface TreeListProps {
68
68
  * Enables the filtering of the columns with their `field` option set
69
69
  */
70
70
  filterable?: boolean;
71
+ /**
72
+ * The filter operators for the filters.
73
+ */
74
+ filterOperators?: FilterOperators;
71
75
  /**
72
76
  * Fires when the TreeList filter is modified through the UI
73
77
  * ([more information and examples]({% slug filtering_treelist %})).
@@ -133,24 +137,40 @@ export interface TreeListProps {
133
137
  /**
134
138
  * Fires when the user clicks a row.
135
139
  */
140
+ onRowclick?: (event: TreeListRowClickEvent) => void;
141
+ /**
142
+ * Fires when the user double clicks a row.
143
+ */
136
144
  /**
137
145
  * @hidden
138
146
  */
139
- onRowClick?: (event: TreeListRowClickEvent) => void;
147
+ onRowdoubleclick?: (event: TreeListRowDoubleClickEvent) => void;
140
148
  /**
141
- * Fires when the user double clicks a row.
149
+ * Fires when the user trigger the context menu of row.
150
+ */
151
+ onRowcontextmenu?: (event: TreeListRowContextMenuEvent) => void;
152
+ /**
153
+ * Fires when the mouse down is triggered on a row.
142
154
  */
143
155
  /**
144
156
  * @hidden
145
157
  */
146
- onRowDoubleClick?: (event: TreeListRowDoubleClickEvent) => void;
158
+ onRowmousedown?: (event: TreeListRowEvent) => void;
147
159
  /**
148
- * Fires when the user trigger the context menu of row.
160
+ * Fires when the mouse up is triggered on a row.
149
161
  */
150
162
  /**
151
163
  * @hidden
152
164
  */
153
- onRowContextMenu?: (event: TreeListRowContextMenuEvent) => void;
165
+ onRowmouseup?: (event: TreeListRowEvent) => void;
166
+ /**
167
+ * Fires when focus event is triggered on a row.
168
+ */
169
+ onRowfocus?: (event: TreeListRowEvent) => void;
170
+ /**
171
+ * Fires when blur event is triggered on a row.
172
+ */
173
+ onRowblur?: (event: TreeListRowEvent) => void;
154
174
  /**
155
175
  * Specifies the name of the field which will provide a Boolean representation of the edit state of the current item
156
176
  * ([more information and examples]({% slug editing_inline_treelist %})).
@@ -252,6 +272,10 @@ export interface TreeListProps {
252
272
  * @hidden
253
273
  */
254
274
  row?: any;
275
+ /**
276
+ * If set to `true`, the rows of the TreeList can be reordered.
277
+ */
278
+ reordableRows?: boolean;
255
279
  /**
256
280
  * If set to `true`, the user can use dedicated shortcuts to interact with the TreeList.
257
281
  * By default, navigation is disabled and the TreeList content is accessible in the normal tab sequence.
@@ -5,7 +5,7 @@ import { TableDragSelectionReleaseEvent, TableKeyDownEvent, TableSelectionChange
5
5
  * Represents the base event object of the TreeList.
6
6
  */
7
7
  export interface TreeListEvent {
8
- target?: any;
8
+ component?: any;
9
9
  event: any;
10
10
  }
11
11
  /**
@@ -118,6 +118,19 @@ export interface TreeListHeaderSelectionChangeEvent extends TreeListEvent {
118
118
  */
119
119
  dataItems: any[];
120
120
  }
121
+ /**
122
+ * Represents the object of the `onRowEvent` TreeList event.
123
+ */
124
+ export interface TreeListRowEvent extends TreeListEvent {
125
+ /**
126
+ * The data item which corresponds to the row.
127
+ */
128
+ dataItem: any;
129
+ /**
130
+ * An array of indexes of each parent and current item in the data tree.
131
+ */
132
+ level: number[];
133
+ }
121
134
  /**
122
135
  * Represents the object of the `onRowClick` TreeList event.
123
136
  */
@@ -182,7 +195,7 @@ interface ColumnDragEvent {
182
195
  /**
183
196
  * An event target.
184
197
  */
185
- target: any;
198
+ component: any;
186
199
  /**
187
200
  * A native DOM event.
188
201
  */
@@ -246,7 +259,7 @@ export interface TreeListRowDragEvent {
246
259
  /**
247
260
  * An event target.
248
261
  */
249
- target: any;
262
+ component: any;
250
263
  /**
251
264
  * The level of the dragged row.
252
265
  * The level represents an array of indexes of each parent and current item in the data tree.
@@ -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: 1665151710,
8
+ publishDate: 1666682894,
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
  };
File without changes
@@ -6,8 +6,8 @@ var isV3 = allVue.version && allVue.version[0] === '3';
6
6
  /**
7
7
  * @hidden
8
8
  */
9
-
10
9
  var RowDragClueVue2 = {
10
+ name: 'KendoRowClue',
11
11
  props: {
12
12
  visible: Boolean,
13
13
  top: Number,
@@ -18,13 +18,24 @@ var RowDragClueVue2 = {
18
18
  computed: {
19
19
  statusClass: function statusClass() {
20
20
  var _a;
21
-
22
21
  return _a = {
23
22
  'k-icon': true,
24
23
  'k-drag-status': true
25
24
  }, _a[this.$props.allowDrop ? 'k-i-plus' : 'k-i-cancel'] = true, _a['k-icon-with-modifier'] = true, _a;
26
25
  }
27
26
  },
27
+ mounted: function mounted() {
28
+ var body = document.body;
29
+ this.windowElement = this.$refs.wrapper;
30
+ body.append(this.windowElement);
31
+ },
32
+ beforeDestroy: !!isV3 ? undefined : function () {
33
+ this.windowElement.remove();
34
+ },
35
+ // @ts-ignore
36
+ beforeUnmount: function beforeUnmount() {
37
+ this.windowElement.remove();
38
+ },
28
39
  // @ts-ignore
29
40
  setup: !isV3 ? undefined : function () {
30
41
  var v3 = !!isV3;
@@ -37,6 +48,7 @@ var RowDragClueVue2 = {
37
48
  var h = gh || createElement;
38
49
  return this.visible && h("div", {
39
50
  "class": "k-header k-drag-clue",
51
+ ref: 'wrapper',
40
52
  style: {
41
53
  display: 'block',
42
54
  position: 'absolute',
@@ -55,6 +67,5 @@ var RowDragClueVue2 = {
55
67
  /**
56
68
  * @hidden
57
69
  */
58
-
59
70
  var RowDragClue = RowDragClueVue2;
60
71
  export { RowDragClue, RowDragClueVue2 };
@@ -1 +1,38 @@
1
-
1
+ import { DefineComponent, RecordPropsDefinition, ComponentOptions, Vue2type } from '../additionalTypes';
2
+ declare type DefaultData<V> = object | ((this: V) => {});
3
+ declare type DefaultMethods<V> = {
4
+ [key: string]: (this: V, ...args: any[]) => any;
5
+ };
6
+ import { TreeListRowProps } from '../interfaces/TreeListRowProps';
7
+ /**
8
+ * @hidden
9
+ */
10
+ export interface TreeListDraggableRowMethods extends Vue2type {
11
+ onPress: (event: any) => void;
12
+ onDrag: (event: any) => void;
13
+ onRelease: (event: any) => void;
14
+ }
15
+ /**
16
+ * @hidden
17
+ */
18
+ export interface TreeListDraggableRowState {
19
+ element: any | null;
20
+ draggable: any;
21
+ allowDrop: boolean;
22
+ dragged: number[] | null;
23
+ draggedOver: number[] | null;
24
+ }
25
+ /**
26
+ * @hidden
27
+ */
28
+ export interface TreeListDraggableRowAll extends TreeListDraggableRowMethods, TreeListDraggableRowState {
29
+ }
30
+ /**
31
+ * @hidden
32
+ */
33
+ declare let TreeListDraggableRowVue2: ComponentOptions<Vue2type, DefaultData<{}>, DefaultMethods<TreeListDraggableRowAll>, {}, RecordPropsDefinition<TreeListRowProps>>;
34
+ /**
35
+ * @hidden
36
+ */
37
+ declare const TreeListDraggableRow: DefineComponent<TreeListRowProps, any, {}, {}, TreeListDraggableRowMethods, {}, {}, {}, string, TreeListRowProps, TreeListRowProps, {}>;
38
+ export { TreeListDraggableRow, TreeListDraggableRowVue2 };