@progress/kendo-vue-grid 3.3.4 → 3.3.6-dev.202206170937
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.d.ts +35 -2
- package/dist/es/Grid.js +41 -9
- package/dist/es/GridNav.d.ts +4 -1
- package/dist/es/GridNav.js +5 -1
- package/dist/es/GridNoRecords.d.ts +4 -1
- package/dist/es/GridNoRecords.js +30 -26
- package/dist/es/GridToolbar.d.ts +46 -4
- package/dist/es/GridToolbar.js +48 -6
- package/dist/es/additionalTypes.ts +11 -0
- package/dist/es/cells/GridCell.d.ts +4 -1
- package/dist/es/cells/GridCell.js +5 -1
- package/dist/es/cells/GridDetailCell.d.ts +4 -1
- package/dist/es/cells/GridDetailCell.js +5 -1
- package/dist/es/cells/GridDetailHierarchyCell.d.ts +4 -1
- package/dist/es/cells/GridDetailHierarchyCell.js +5 -1
- package/dist/es/cells/GridEditCell.d.ts +4 -1
- package/dist/es/cells/GridEditCell.js +5 -1
- package/dist/es/cells/GridFilterCell.d.ts +4 -1
- package/dist/es/cells/GridFilterCell.js +5 -1
- package/dist/es/cells/GridGroupCell.d.ts +4 -1
- package/dist/es/cells/GridGroupCell.js +5 -1
- package/dist/es/cells/GridHierarchyCell.d.ts +4 -1
- package/dist/es/cells/GridHierarchyCell.js +5 -1
- package/dist/es/cells/GridSelectionCell.d.ts +4 -1
- package/dist/es/cells/GridSelectionCell.js +5 -1
- package/dist/es/columnMenu/ColumnMenu.d.ts +4 -1
- package/dist/es/columnMenu/ColumnMenu.js +5 -1
- package/dist/es/columnMenu/ColumnMenuContent.d.ts +4 -1
- package/dist/es/columnMenu/ColumnMenuContent.js +5 -1
- package/dist/es/columnMenu/GridColumnMenuCheckboxFilter.d.ts +4 -1
- package/dist/es/columnMenu/GridColumnMenuCheckboxFilter.js +5 -1
- package/dist/es/columnMenu/GridColumnMenuFilter.d.ts +138 -2
- package/dist/es/columnMenu/GridColumnMenuFilter.js +139 -2
- package/dist/es/columnMenu/GridColumnMenuFilterCell.d.ts +4 -1
- package/dist/es/columnMenu/GridColumnMenuFilterCell.js +5 -1
- package/dist/es/columnMenu/GridColumnMenuFilterUI.d.ts +4 -1
- package/dist/es/columnMenu/GridColumnMenuFilterUI.js +5 -1
- package/dist/es/columnMenu/GridColumnMenuItem.d.ts +4 -1
- package/dist/es/columnMenu/GridColumnMenuItem.js +5 -1
- package/dist/es/columnMenu/GridColumnMenuItemContent.d.ts +4 -1
- package/dist/es/columnMenu/GridColumnMenuItemContent.js +5 -1
- package/dist/es/columnMenu/GridColumnMenuItemGroup.d.ts +4 -1
- package/dist/es/columnMenu/GridColumnMenuItemGroup.js +5 -1
- package/dist/es/columnMenu/GridColumnMenuSort.d.ts +135 -2
- package/dist/es/columnMenu/GridColumnMenuSort.js +136 -2
- package/dist/es/drag/ColumnDraggable.d.ts +4 -1
- package/dist/es/drag/ColumnDraggable.js +5 -1
- package/dist/es/drag/ColumnResizer.d.ts +4 -1
- package/dist/es/drag/ColumnResizer.js +5 -1
- package/dist/es/drag/DragClue.d.ts +4 -1
- package/dist/es/drag/DragClue.js +5 -1
- package/dist/es/drag/DropClue.d.ts +4 -1
- package/dist/es/drag/DropClue.js +5 -1
- package/dist/es/drag/GroupingIndicator.d.ts +4 -1
- package/dist/es/drag/GroupingIndicator.js +5 -1
- package/dist/es/footer/Footer.d.ts +6 -0
- package/dist/es/footer/Footer.js +8 -0
- package/dist/es/footer/FooterRow.d.ts +6 -0
- package/dist/es/footer/FooterRow.js +8 -0
- package/dist/es/header/FilterRow.d.ts +4 -1
- package/dist/es/header/FilterRow.js +5 -1
- package/dist/es/header/GridHeaderCell.d.ts +4 -1
- package/dist/es/header/GridHeaderCell.js +5 -1
- package/dist/es/header/GridHeaderSelectionCell.d.ts +4 -1
- package/dist/es/header/GridHeaderSelectionCell.js +5 -1
- package/dist/es/header/GroupPanel.d.ts +4 -1
- package/dist/es/header/GroupPanel.js +5 -1
- package/dist/es/header/Header.d.ts +4 -1
- package/dist/es/header/Header.js +5 -1
- package/dist/es/header/HeaderRow.d.ts +4 -1
- package/dist/es/header/HeaderRow.js +5 -1
- package/dist/es/interfaces/GridCellProps.d.ts +2 -2
- package/dist/es/interfaces/GridColumnProps.d.ts +2 -2
- package/dist/es/interfaces/GridDetailRowProps.d.ts +0 -4
- package/dist/es/interfaces/GridFilterCellProps.d.ts +1 -1
- package/dist/es/interfaces/GridGroupableSettings.d.ts +1 -1
- package/dist/es/interfaces/GridProps.d.ts +27 -27
- package/dist/es/package-metadata.js +1 -1
- package/dist/es/rows/GridDetailRow.d.ts +2 -5
- package/dist/es/rows/GridDetailRow.js +4 -7
- package/dist/es/rows/GridRow.d.ts +4 -1
- package/dist/es/rows/GridRow.js +5 -1
- package/dist/npm/Grid.d.ts +35 -2
- package/dist/npm/Grid.js +40 -8
- package/dist/npm/GridNav.d.ts +4 -1
- package/dist/npm/GridNav.js +5 -1
- package/dist/npm/GridNoRecords.d.ts +4 -1
- package/dist/npm/GridNoRecords.js +32 -28
- package/dist/npm/GridToolbar.d.ts +46 -4
- package/dist/npm/GridToolbar.js +48 -6
- package/dist/npm/additionalTypes.ts +11 -0
- package/dist/npm/cells/GridCell.d.ts +4 -1
- package/dist/npm/cells/GridCell.js +5 -1
- package/dist/npm/cells/GridDetailCell.d.ts +4 -1
- package/dist/npm/cells/GridDetailCell.js +5 -1
- package/dist/npm/cells/GridDetailHierarchyCell.d.ts +4 -1
- package/dist/npm/cells/GridDetailHierarchyCell.js +5 -1
- package/dist/npm/cells/GridEditCell.d.ts +4 -1
- package/dist/npm/cells/GridEditCell.js +5 -1
- package/dist/npm/cells/GridFilterCell.d.ts +4 -1
- package/dist/npm/cells/GridFilterCell.js +5 -1
- package/dist/npm/cells/GridGroupCell.d.ts +4 -1
- package/dist/npm/cells/GridGroupCell.js +5 -1
- package/dist/npm/cells/GridHierarchyCell.d.ts +4 -1
- package/dist/npm/cells/GridHierarchyCell.js +5 -1
- package/dist/npm/cells/GridSelectionCell.d.ts +4 -1
- package/dist/npm/cells/GridSelectionCell.js +5 -1
- package/dist/npm/columnMenu/ColumnMenu.d.ts +4 -1
- package/dist/npm/columnMenu/ColumnMenu.js +5 -1
- package/dist/npm/columnMenu/ColumnMenuContent.d.ts +4 -1
- package/dist/npm/columnMenu/ColumnMenuContent.js +5 -1
- package/dist/npm/columnMenu/GridColumnMenuCheckboxFilter.d.ts +4 -1
- package/dist/npm/columnMenu/GridColumnMenuCheckboxFilter.js +5 -1
- package/dist/npm/columnMenu/GridColumnMenuFilter.d.ts +138 -2
- package/dist/npm/columnMenu/GridColumnMenuFilter.js +139 -2
- package/dist/npm/columnMenu/GridColumnMenuFilterCell.d.ts +4 -1
- package/dist/npm/columnMenu/GridColumnMenuFilterCell.js +5 -1
- package/dist/npm/columnMenu/GridColumnMenuFilterUI.d.ts +4 -1
- package/dist/npm/columnMenu/GridColumnMenuFilterUI.js +5 -1
- package/dist/npm/columnMenu/GridColumnMenuItem.d.ts +4 -1
- package/dist/npm/columnMenu/GridColumnMenuItem.js +5 -1
- package/dist/npm/columnMenu/GridColumnMenuItemContent.d.ts +4 -1
- package/dist/npm/columnMenu/GridColumnMenuItemContent.js +5 -1
- package/dist/npm/columnMenu/GridColumnMenuItemGroup.d.ts +4 -1
- package/dist/npm/columnMenu/GridColumnMenuItemGroup.js +5 -1
- package/dist/npm/columnMenu/GridColumnMenuSort.d.ts +135 -2
- package/dist/npm/columnMenu/GridColumnMenuSort.js +136 -2
- package/dist/npm/drag/ColumnDraggable.d.ts +4 -1
- package/dist/npm/drag/ColumnDraggable.js +5 -1
- package/dist/npm/drag/ColumnResizer.d.ts +4 -1
- package/dist/npm/drag/ColumnResizer.js +5 -1
- package/dist/npm/drag/DragClue.d.ts +4 -1
- package/dist/npm/drag/DragClue.js +5 -1
- package/dist/npm/drag/DropClue.d.ts +4 -1
- package/dist/npm/drag/DropClue.js +5 -1
- package/dist/npm/drag/GroupingIndicator.d.ts +4 -1
- package/dist/npm/drag/GroupingIndicator.js +5 -1
- package/dist/npm/footer/Footer.d.ts +6 -0
- package/dist/npm/footer/Footer.js +8 -0
- package/dist/npm/footer/FooterRow.d.ts +6 -0
- package/dist/npm/footer/FooterRow.js +8 -0
- package/dist/npm/header/FilterRow.d.ts +4 -1
- package/dist/npm/header/FilterRow.js +5 -1
- package/dist/npm/header/GridHeaderCell.d.ts +4 -1
- package/dist/npm/header/GridHeaderCell.js +5 -1
- package/dist/npm/header/GridHeaderSelectionCell.d.ts +4 -1
- package/dist/npm/header/GridHeaderSelectionCell.js +5 -1
- package/dist/npm/header/GroupPanel.d.ts +4 -1
- package/dist/npm/header/GroupPanel.js +5 -1
- package/dist/npm/header/Header.d.ts +4 -1
- package/dist/npm/header/Header.js +5 -1
- package/dist/npm/header/HeaderRow.d.ts +4 -1
- package/dist/npm/header/HeaderRow.js +5 -1
- package/dist/npm/interfaces/GridCellProps.d.ts +2 -2
- package/dist/npm/interfaces/GridColumnProps.d.ts +2 -2
- package/dist/npm/interfaces/GridDetailRowProps.d.ts +0 -4
- package/dist/npm/interfaces/GridFilterCellProps.d.ts +1 -1
- package/dist/npm/interfaces/GridGroupableSettings.d.ts +1 -1
- package/dist/npm/interfaces/GridProps.d.ts +27 -27
- package/dist/npm/package-metadata.js +1 -1
- package/dist/npm/rows/GridDetailRow.d.ts +2 -5
- package/dist/npm/rows/GridDetailRow.js +4 -7
- package/dist/npm/rows/GridRow.d.ts +4 -1
- package/dist/npm/rows/GridRow.js +5 -1
- package/package.json +14 -14
|
@@ -8,7 +8,7 @@ import { GridColumnProps } from '../interfaces/GridColumnProps';
|
|
|
8
8
|
import { GridFilterOperators } from './GridFilterOperators';
|
|
9
9
|
import { PopupAnimation } from '@progress/kendo-vue-popup';
|
|
10
10
|
/**
|
|
11
|
-
* Represents the props of the [native Vue Grid component by Kendo UI]({% slug
|
|
11
|
+
* Represents the props of the [native Vue Grid component by Kendo UI]({% slug overview_grid %}).
|
|
12
12
|
*/
|
|
13
13
|
export interface GridProps {
|
|
14
14
|
/**
|
|
@@ -30,17 +30,17 @@ export interface GridProps {
|
|
|
30
30
|
*/
|
|
31
31
|
columns?: GridColumnProps[] | null;
|
|
32
32
|
/**
|
|
33
|
-
* Sets the data of the Grid ([see example]({% slug
|
|
33
|
+
* Sets the data of the Grid ([see example]({% slug paging_grid %})). If you use paging,
|
|
34
34
|
* the `data` option has to contain only the items for the current page.
|
|
35
35
|
*/
|
|
36
36
|
dataItems?: any[] | DataResult | null;
|
|
37
37
|
/**
|
|
38
38
|
* Enables the sorting for the columns with their `field` option set
|
|
39
|
-
* ([see example]({% slug
|
|
39
|
+
* ([see example]({% slug sorting_grid %})).
|
|
40
40
|
*/
|
|
41
41
|
sortable?: GridSortSettings;
|
|
42
42
|
/**
|
|
43
|
-
* Fires when the sorting of the Grid is changed ([see example]({% slug
|
|
43
|
+
* Fires when the sorting of the Grid is changed ([see example]({% slug sorting_grid %})).
|
|
44
44
|
* You have to handle the event yourself and sort the data.
|
|
45
45
|
*/
|
|
46
46
|
onSortchange?: (event: GridSortChangeEvent) => void;
|
|
@@ -51,12 +51,12 @@ export interface GridProps {
|
|
|
51
51
|
sort?: SortDescriptor[];
|
|
52
52
|
/**
|
|
53
53
|
* Enables the filtering of the columns with their `field` option set
|
|
54
|
-
* ([more information and examples]({% slug
|
|
54
|
+
* ([more information and examples]({% slug filtering_grid %})).
|
|
55
55
|
*/
|
|
56
56
|
filterable?: boolean;
|
|
57
57
|
/**
|
|
58
58
|
* The descriptor by which the data is filtered
|
|
59
|
-
* ([more information and examples]({% slug
|
|
59
|
+
* ([more information and examples]({% slug filtering_grid %})).
|
|
60
60
|
* Affects the values and buttons in the `FilterRow` of the Grid.
|
|
61
61
|
*/
|
|
62
62
|
filter?: CompositeFilterDescriptor;
|
|
@@ -66,7 +66,7 @@ export interface GridProps {
|
|
|
66
66
|
filterOperators?: GridFilterOperators;
|
|
67
67
|
/**
|
|
68
68
|
* Fires when the Grid filter is modified through the UI
|
|
69
|
-
* ([more information and examples]({% slug
|
|
69
|
+
* ([more information and examples]({% slug filtering_grid %})).
|
|
70
70
|
* You have to handle the event yourself and filter the data.
|
|
71
71
|
*/
|
|
72
72
|
onFilterchange?: (event: GridFilterChangeEvent) => void;
|
|
@@ -81,16 +81,16 @@ export interface GridProps {
|
|
|
81
81
|
columnMenuAnimate?: boolean | PopupAnimation;
|
|
82
82
|
/**
|
|
83
83
|
* The descriptors by which the data will be grouped
|
|
84
|
-
* ([more information and examples]({% slug
|
|
84
|
+
* ([more information and examples]({% slug groupingbasics_grid %})).
|
|
85
85
|
*/
|
|
86
86
|
group?: GroupDescriptor[];
|
|
87
87
|
/**
|
|
88
88
|
* Fires when the grouping of the Grid is changed. You have to handle the event yourself and group the data
|
|
89
|
-
* ([more information and examples]({% slug
|
|
89
|
+
* ([more information and examples]({% slug groupingbasics_grid %})).
|
|
90
90
|
*/
|
|
91
91
|
onGroupchange?: (event: GridGroupChangeEvent) => void;
|
|
92
92
|
/**
|
|
93
|
-
* Configures the pager of the Grid ([see example]({% slug
|
|
93
|
+
* Configures the pager of the Grid ([see example]({% slug paging_grid %})).
|
|
94
94
|
*
|
|
95
95
|
* The available options are:
|
|
96
96
|
* - `buttonCount: Number`—Sets the maximum numeric buttons count before the buttons are collapsed.
|
|
@@ -103,7 +103,7 @@ export interface GridProps {
|
|
|
103
103
|
pageable?: GridPagerSettings | any;
|
|
104
104
|
/**
|
|
105
105
|
* Defines the page size that is used by the Grid pager
|
|
106
|
-
* ([see example]({% slug
|
|
106
|
+
* ([see example]({% slug paging_grid %})). Required by the paging functionality.
|
|
107
107
|
*/
|
|
108
108
|
pageSize?: number;
|
|
109
109
|
/**
|
|
@@ -111,18 +111,18 @@ export interface GridProps {
|
|
|
111
111
|
*/
|
|
112
112
|
take?: number;
|
|
113
113
|
/**
|
|
114
|
-
* Fires when the page of the Grid is changed ([see example]({% slug
|
|
114
|
+
* Fires when the page of the Grid is changed ([see example]({% slug paging_grid %})).
|
|
115
115
|
* You have to handle the event yourself and page the data.
|
|
116
116
|
*/
|
|
117
117
|
onPagechange?: (event: GridPageChangeEvent) => void;
|
|
118
118
|
/**
|
|
119
119
|
* Defines the total number of data items in all pages
|
|
120
|
-
* ([see example]({% slug
|
|
120
|
+
* ([see example]({% slug paging_grid %})). Required by the paging functionality.
|
|
121
121
|
*/
|
|
122
122
|
total?: number;
|
|
123
123
|
/**
|
|
124
124
|
* Defines the number of records that will be skipped by the pager
|
|
125
|
-
* ([see example]({% slug
|
|
125
|
+
* ([see example]({% slug paging_grid %})). Required by the paging functionality.
|
|
126
126
|
*/
|
|
127
127
|
skip?: number;
|
|
128
128
|
/**
|
|
@@ -131,22 +131,22 @@ export interface GridProps {
|
|
|
131
131
|
onExpandchange?: (event: GridExpandChangeEvent) => void;
|
|
132
132
|
/**
|
|
133
133
|
* Specifies the name of the field which will provide a Boolean representation
|
|
134
|
-
* of the expanded state of the item ([see example]({% slug
|
|
134
|
+
* of the expanded state of the item ([see example]({% slug detailrow_grid %}).
|
|
135
135
|
*/
|
|
136
136
|
expandField?: string;
|
|
137
137
|
/**
|
|
138
138
|
* Specifies the name of the field which will provide a Boolean representation
|
|
139
|
-
* of the selected state of the item ([see example]({% slug
|
|
139
|
+
* of the selected state of the item ([see example]({% slug selection_grid %})).
|
|
140
140
|
*/
|
|
141
141
|
selectedField?: string;
|
|
142
142
|
/**
|
|
143
143
|
* Fires when the user tries to select or deselect a row
|
|
144
|
-
* ([see example]({% slug
|
|
144
|
+
* ([see example]({% slug selection_grid %})).
|
|
145
145
|
*/
|
|
146
146
|
onSelectionchange?: (event: GridSelectionChangeEvent) => void;
|
|
147
147
|
/**
|
|
148
148
|
* Fires when the user clicks the checkbox of a column header whose `field` matches `selectedField`.
|
|
149
|
-
* ([see example]({% slug
|
|
149
|
+
* ([see example]({% slug selection_grid %})).
|
|
150
150
|
*/
|
|
151
151
|
onHeaderselectionchange?: (event: GridHeaderSelectionChangeEvent) => void;
|
|
152
152
|
/**
|
|
@@ -184,16 +184,16 @@ export interface GridProps {
|
|
|
184
184
|
/**
|
|
185
185
|
* Fires when the user changes the values of the item.
|
|
186
186
|
* The event is not debounced and fires on every `onChange` event of the input in the current `EditCell`.
|
|
187
|
-
* ([more information and examples]({% slug
|
|
187
|
+
* ([more information and examples]({% slug editing_inline_grid %})).
|
|
188
188
|
*/
|
|
189
189
|
onItemchange?: (event: GridItemChangeEvent) => void;
|
|
190
190
|
/**
|
|
191
191
|
* Specifies the name of the field which will provide a Boolean representation of the edit state of the current
|
|
192
|
-
* item ([more information and examples]({% slug
|
|
192
|
+
* item ([more information and examples]({% slug editing_inline_grid %})).
|
|
193
193
|
*/
|
|
194
194
|
editField?: string;
|
|
195
195
|
/**
|
|
196
|
-
* Defines the scroll mode that is used by the Grid ([see example]({% slug
|
|
196
|
+
* Defines the scroll mode that is used by the Grid ([see example]({% slug scrollmmodes_grid %}).
|
|
197
197
|
*
|
|
198
198
|
* The available options are:
|
|
199
199
|
* - `none`—Renders no scrollbar.
|
|
@@ -204,12 +204,12 @@ export interface GridProps {
|
|
|
204
204
|
scrollable?: string;
|
|
205
205
|
/**
|
|
206
206
|
* Defines the row height and forces an equal height to all rows
|
|
207
|
-
* ([see example]({% slug
|
|
207
|
+
* ([see example]({% slug scrollmmodes_grid %})).
|
|
208
208
|
*/
|
|
209
209
|
rowHeight?: number;
|
|
210
210
|
/**
|
|
211
211
|
* Specifies a custom rendering that will be cloned and rendered inside the detail rows
|
|
212
|
-
* of the currently expanded items ([see example]({% slug
|
|
212
|
+
* of the currently expanded items ([see example]({% slug master_detail_grid %}).
|
|
213
213
|
* Accepts a Vue component, a `render` function, or a slot name.
|
|
214
214
|
* An item will be rendered as expanded if the value of its `expandField` is `true`.
|
|
215
215
|
*/
|
|
@@ -224,17 +224,17 @@ export interface GridProps {
|
|
|
224
224
|
onDatastatechange?: (event: GridDataStateChangeEvent) => void;
|
|
225
225
|
/**
|
|
226
226
|
* If set to `true`, the user can resize columns by dragging the edges (resize handles) of their
|
|
227
|
-
* header cells ([see example]({% slug
|
|
227
|
+
* header cells ([see example]({% slug resizing_columns_grid %}).
|
|
228
228
|
*/
|
|
229
229
|
resizable?: boolean;
|
|
230
230
|
/**
|
|
231
231
|
* If set to `true`, the user can reorder columns by dragging their
|
|
232
|
-
* header cells ([see example]({% slug
|
|
232
|
+
* header cells ([see example]({% slug reordering_columns_grid %}).
|
|
233
233
|
*/
|
|
234
234
|
reorderable?: boolean;
|
|
235
235
|
/**
|
|
236
236
|
* Determines if grouping by dragging and dropping the column headers is allowed
|
|
237
|
-
* ([more information and examples]({% slug
|
|
237
|
+
* ([more information and examples]({% slug groupingbasics_grid %})).
|
|
238
238
|
*/
|
|
239
239
|
groupable?: GridGroupableSettings | boolean;
|
|
240
240
|
/**
|
|
@@ -251,7 +251,7 @@ export interface GridProps {
|
|
|
251
251
|
rowRender?: string | boolean | ((h: any, defaultRendering: any | null, dafaultSlots: any, props: any, listeners: any) => any);
|
|
252
252
|
/**
|
|
253
253
|
* Defines the custom rendering of the cell. Accepts a Vue component, a `render` function, or a slot name.
|
|
254
|
-
* ([see example]({% slug
|
|
254
|
+
* ([see example]({% slug groupingaggregates_grid %})).
|
|
255
255
|
*/
|
|
256
256
|
cellRender?: ((h: any, defaultRendering: any | null, props: GridCellProps, listeners: any) => any) | string | null | boolean;
|
|
257
257
|
/**
|
|
@@ -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: 1655458283,
|
|
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
|
};
|
|
@@ -5,14 +5,11 @@ declare type DefaultMethods<V> = {
|
|
|
5
5
|
[key: string]: (this: V, ...args: any[]) => any;
|
|
6
6
|
};
|
|
7
7
|
/**
|
|
8
|
-
*
|
|
9
|
-
* details for each row. Can be applied for building the hierarchy. If `expandField` is
|
|
10
|
-
* set, depending on the current data item and its `expandField` value,
|
|
11
|
-
* the details for each row will be visible or hidden.
|
|
8
|
+
* @hidden
|
|
12
9
|
*/
|
|
10
|
+
declare const GridDetailRowVue2: ComponentOptions<Vue2type, DefaultData<{}>, DefaultMethods<{}>, {}, RecordPropsDefinition<{}>>;
|
|
13
11
|
/**
|
|
14
12
|
* @hidden
|
|
15
13
|
*/
|
|
16
|
-
declare const GridDetailRowVue2: ComponentOptions<Vue2type, DefaultData<{}>, DefaultMethods<{}>, {}, RecordPropsDefinition<{}>>;
|
|
17
14
|
declare const GridDetailRow: DefineComponent<GridDetailRowProps, any, {}, {}, [], {}, {}, {}, string, GridDetailRowProps, GridDetailRowProps, {}>;
|
|
18
15
|
export { GridDetailRow, GridDetailRowVue2 };
|
|
@@ -9,13 +9,6 @@ var Vue = require("vue");
|
|
|
9
9
|
|
|
10
10
|
var allVue = Vue;
|
|
11
11
|
var gh = allVue.h;
|
|
12
|
-
/**
|
|
13
|
-
* The detail-row class of the native Vue Grid by Kendo UI. Defines custom
|
|
14
|
-
* details for each row. Can be applied for building the hierarchy. If `expandField` is
|
|
15
|
-
* set, depending on the current data item and its `expandField` value,
|
|
16
|
-
* the details for each row will be visible or hidden.
|
|
17
|
-
*/
|
|
18
|
-
|
|
19
12
|
/**
|
|
20
13
|
* @hidden
|
|
21
14
|
*/
|
|
@@ -35,5 +28,9 @@ var GridDetailRowVue2 = {
|
|
|
35
28
|
}
|
|
36
29
|
};
|
|
37
30
|
exports.GridDetailRowVue2 = GridDetailRowVue2;
|
|
31
|
+
/**
|
|
32
|
+
* @hidden
|
|
33
|
+
*/
|
|
34
|
+
|
|
38
35
|
var GridDetailRow = GridDetailRowVue2;
|
|
39
36
|
exports.GridDetailRow = GridDetailRow;
|
|
@@ -18,8 +18,11 @@ export interface GridRowMethods extends Vue2type {
|
|
|
18
18
|
handleDoubleClick: (e: any) => void;
|
|
19
19
|
}
|
|
20
20
|
/**
|
|
21
|
-
*
|
|
21
|
+
* @hidden
|
|
22
22
|
*/
|
|
23
23
|
declare let GridRowVue2: ComponentOptions<Vue2type, DefaultData<{}>, DefaultMethods<GridRowMethods>, {}, RecordPropsDefinition<GridRowProps>>;
|
|
24
|
+
/**
|
|
25
|
+
* @hidden
|
|
26
|
+
*/
|
|
24
27
|
declare const GridRow: DefineComponent<GridRowProps, any, {}, {}, GridRowMethods, {}, {}, {}, string, GridRowProps, GridRowProps, {}>;
|
|
25
28
|
export { GridRow, GridRowVue2 };
|
package/dist/npm/rows/GridRow.js
CHANGED
|
@@ -14,7 +14,7 @@ var utils_1 = require("../utils");
|
|
|
14
14
|
|
|
15
15
|
var kendo_vue_common_1 = require("@progress/kendo-vue-common");
|
|
16
16
|
/**
|
|
17
|
-
*
|
|
17
|
+
* @hidden
|
|
18
18
|
*/
|
|
19
19
|
|
|
20
20
|
|
|
@@ -86,5 +86,9 @@ var GridRowVue2 = {
|
|
|
86
86
|
}
|
|
87
87
|
};
|
|
88
88
|
exports.GridRowVue2 = GridRowVue2;
|
|
89
|
+
/**
|
|
90
|
+
* @hidden
|
|
91
|
+
*/
|
|
92
|
+
|
|
89
93
|
var GridRow = GridRowVue2;
|
|
90
94
|
exports.GridRow = GridRow;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progress/kendo-vue-grid",
|
|
3
|
-
"version": "3.3.
|
|
3
|
+
"version": "3.3.6-dev.202206170937",
|
|
4
4
|
"description": "Kendo UI for Vue Grid package",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -35,24 +35,24 @@
|
|
|
35
35
|
"vue": "^2.6.12 || ^3.0.2"
|
|
36
36
|
},
|
|
37
37
|
"dependencies": {
|
|
38
|
-
"@progress/kendo-vue-common": "3.3.
|
|
38
|
+
"@progress/kendo-vue-common": "3.3.6-dev.202206170937"
|
|
39
39
|
},
|
|
40
40
|
"devDependencies": {
|
|
41
41
|
"@progress/kendo-data-query": "^1.5.4",
|
|
42
42
|
"@progress/kendo-drawing": "^1.9.3",
|
|
43
43
|
"@progress/kendo-licensing": "^1.1.0",
|
|
44
|
-
"@progress/kendo-vue-animation": "3.3.
|
|
45
|
-
"@progress/kendo-vue-buttons": "3.3.
|
|
46
|
-
"@progress/kendo-vue-charts": "3.3.
|
|
47
|
-
"@progress/kendo-vue-data-tools": "3.3.
|
|
48
|
-
"@progress/kendo-vue-dateinputs": "3.3.
|
|
49
|
-
"@progress/kendo-vue-dropdowns": "3.3.
|
|
50
|
-
"@progress/kendo-vue-excel-export": "3.3.
|
|
51
|
-
"@progress/kendo-vue-indicators": "3.3.
|
|
52
|
-
"@progress/kendo-vue-inputs": "3.3.
|
|
53
|
-
"@progress/kendo-vue-intl": "3.3.
|
|
54
|
-
"@progress/kendo-vue-pdf": "3.3.
|
|
55
|
-
"@progress/kendo-vue-popup": "3.3.
|
|
44
|
+
"@progress/kendo-vue-animation": "3.3.6-dev.202206170937",
|
|
45
|
+
"@progress/kendo-vue-buttons": "3.3.6-dev.202206170937",
|
|
46
|
+
"@progress/kendo-vue-charts": "3.3.6-dev.202206170937",
|
|
47
|
+
"@progress/kendo-vue-data-tools": "3.3.6-dev.202206170937",
|
|
48
|
+
"@progress/kendo-vue-dateinputs": "3.3.6-dev.202206170937",
|
|
49
|
+
"@progress/kendo-vue-dropdowns": "3.3.6-dev.202206170937",
|
|
50
|
+
"@progress/kendo-vue-excel-export": "3.3.6-dev.202206170937",
|
|
51
|
+
"@progress/kendo-vue-indicators": "3.3.6-dev.202206170937",
|
|
52
|
+
"@progress/kendo-vue-inputs": "3.3.6-dev.202206170937",
|
|
53
|
+
"@progress/kendo-vue-intl": "3.3.6-dev.202206170937",
|
|
54
|
+
"@progress/kendo-vue-pdf": "3.3.6-dev.202206170937",
|
|
55
|
+
"@progress/kendo-vue-popup": "3.3.6-dev.202206170937",
|
|
56
56
|
"cldr-core": "^34.0.0",
|
|
57
57
|
"cldr-dates-full": "^34.0.0",
|
|
58
58
|
"cldr-numbers-full": "^34.0.0",
|