@progress/kendo-vue-grid 8.1.0-develop.2 → 8.1.0-develop.3
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/Grid.d.ts +56 -5
- package/Grid.js +1 -1
- package/Grid.mjs +667 -649
- package/GridNav.d.ts +24 -4
- package/GridNav.js +1 -1
- package/GridNav.mjs +62 -22
- package/GridState.d.ts +4 -0
- package/RootGrid.d.ts +32 -11
- package/RootGrid.js +1 -1
- package/RootGrid.mjs +96 -57
- package/cells/GridCell.js +1 -1
- package/cells/GridCell.mjs +35 -26
- package/cells/GridGroupCell.d.ts +10 -0
- package/cells/GridGroupCell.js +1 -1
- package/cells/GridGroupCell.mjs +95 -53
- package/columnMenu/GridColumnMenuCheckboxFilter.d.ts +1 -1
- package/columnMenu/GridColumnMenuCheckboxFilter.js +1 -1
- package/columnMenu/GridColumnMenuCheckboxFilter.mjs +11 -11
- package/common.d.ts +2 -0
- package/common.js +1 -1
- package/common.mjs +2 -0
- package/components/StickyGroupTable.d.ts +85 -0
- package/components/StickyGroupTable.js +8 -0
- package/components/StickyGroupTable.mjs +113 -0
- package/dist/cdn/js/kendo-vue-grid.js +1 -1
- package/drag/ColumnResize.d.ts +10 -1
- package/drag/ColumnResize.js +1 -1
- package/drag/ColumnResize.mjs +129 -104
- package/drag/GroupingIndicator.d.ts +1 -0
- package/drag/GroupingIndicator.js +1 -1
- package/drag/GroupingIndicator.mjs +28 -18
- package/footer/FooterCell.d.ts +43 -0
- package/footer/FooterCell.js +8 -0
- package/footer/FooterCell.mjs +68 -0
- package/footer/FooterRow.d.ts +5 -6
- package/footer/FooterRow.js +1 -1
- package/footer/FooterRow.mjs +16 -39
- package/getRowContents.d.ts +85 -0
- package/getRowContents.js +8 -0
- package/getRowContents.mjs +172 -0
- package/header/GridHeaderGroupSpacerCell.d.ts +11 -0
- package/hooks/useStickyGroups.d.ts +72 -0
- package/hooks/useStickyGroups.js +8 -0
- package/hooks/useStickyGroups.mjs +350 -0
- package/index.d.mts +1 -0
- package/index.d.ts +1 -0
- package/index.js +1 -1
- package/index.mjs +74 -73
- package/interfaces/GridCellProps.d.ts +4 -0
- package/interfaces/GridCellsSettings.d.ts +320 -0
- package/interfaces/GridColumnProps.d.ts +11 -1
- package/interfaces/GridGroupableSettings.d.ts +23 -0
- package/interfaces/GridProps.d.ts +33 -0
- package/messages/main.d.ts +5 -0
- package/messages/main.js +2 -2
- package/messages/main.mjs +15 -13
- package/package-metadata.js +1 -1
- package/package-metadata.mjs +2 -2
- package/package.json +12 -12
- package/utils/main.js +1 -1
- package/utils/main.mjs +80 -76
|
@@ -0,0 +1,320 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @license
|
|
3
|
+
*-------------------------------------------------------------------------------------------
|
|
4
|
+
* Copyright © 2026 Progress Software Corporation. All rights reserved.
|
|
5
|
+
* Licensed under commercial license. See LICENSE.md in the package root for more information
|
|
6
|
+
*-------------------------------------------------------------------------------------------
|
|
7
|
+
*/
|
|
8
|
+
import { Component, TdHTMLAttributes } from 'vue';
|
|
9
|
+
import { TABLE_COL_INDEX_ATTRIBUTE, HeaderThElementProps } from '@progress/kendo-vue-data-tools';
|
|
10
|
+
import { GridCellProps } from './GridCellProps';
|
|
11
|
+
import { GridFooterCellProps } from './GridFooterCellProps';
|
|
12
|
+
import { GridFilterCellProps } from './GridFilterCellProps';
|
|
13
|
+
import { GridHeaderCellProps } from './GridHeaderCellProps';
|
|
14
|
+
/**
|
|
15
|
+
* Represents the attributes for Grid table cell elements, extending standard HTML td element properties.
|
|
16
|
+
*/
|
|
17
|
+
export interface GridTdAttributes extends TdHTMLAttributes {
|
|
18
|
+
/**
|
|
19
|
+
* The column index attribute used for grid operations.
|
|
20
|
+
*/
|
|
21
|
+
[TABLE_COL_INDEX_ATTRIBUTE]?: number;
|
|
22
|
+
/**
|
|
23
|
+
* The unique identifier of the column.
|
|
24
|
+
*/
|
|
25
|
+
columnId?: string;
|
|
26
|
+
/**
|
|
27
|
+
* The Vue key for the element.
|
|
28
|
+
*/
|
|
29
|
+
key?: string | number;
|
|
30
|
+
}
|
|
31
|
+
/**
|
|
32
|
+
* Represents the attributes for Grid header cell elements, extending standard HTML th element properties.
|
|
33
|
+
*/
|
|
34
|
+
export interface GridThAttributes extends HeaderThElementProps {
|
|
35
|
+
/**
|
|
36
|
+
* The unique identifier of the column.
|
|
37
|
+
*/
|
|
38
|
+
columnId: string;
|
|
39
|
+
/**
|
|
40
|
+
* The Vue key for the element.
|
|
41
|
+
*/
|
|
42
|
+
key?: string | number;
|
|
43
|
+
}
|
|
44
|
+
/**
|
|
45
|
+
* The properties of the default Grid Cell.
|
|
46
|
+
*/
|
|
47
|
+
export interface GridCustomCellProps extends GridCellProps {
|
|
48
|
+
/**
|
|
49
|
+
* The props and attributes that are applied to the td element by default.
|
|
50
|
+
*/
|
|
51
|
+
tdProps?: TdHTMLAttributes | null;
|
|
52
|
+
/**
|
|
53
|
+
* The props and attributes that are applied to the second td. Such element is
|
|
54
|
+
* rendered in very rare cases when we have grouping and sticky columns.
|
|
55
|
+
*/
|
|
56
|
+
td2Props?: TdHTMLAttributes | null;
|
|
57
|
+
}
|
|
58
|
+
/**
|
|
59
|
+
* The properties of the footer Grid Cell.
|
|
60
|
+
*/
|
|
61
|
+
export interface GridCustomFooterCellProps extends GridFooterCellProps {
|
|
62
|
+
/**
|
|
63
|
+
* The props and attributes that are applied to the td element by default.
|
|
64
|
+
*/
|
|
65
|
+
tdProps?: TdHTMLAttributes | null;
|
|
66
|
+
/**
|
|
67
|
+
* The index of the column that is rendered.
|
|
68
|
+
*/
|
|
69
|
+
index?: number;
|
|
70
|
+
/**
|
|
71
|
+
* The locked state of the column.
|
|
72
|
+
*/
|
|
73
|
+
locked?: boolean;
|
|
74
|
+
}
|
|
75
|
+
/**
|
|
76
|
+
* The properties of the filter Grid Cell.
|
|
77
|
+
*/
|
|
78
|
+
export interface GridCustomFilterCellProps extends GridFilterCellProps {
|
|
79
|
+
/**
|
|
80
|
+
* The props and attributes that are applied to the th element by default.
|
|
81
|
+
*/
|
|
82
|
+
thProps?: GridThAttributes | null;
|
|
83
|
+
/**
|
|
84
|
+
* The props and attributes that are applied to the td element by default.
|
|
85
|
+
*/
|
|
86
|
+
tdProps?: GridTdAttributes | null;
|
|
87
|
+
/**
|
|
88
|
+
* The index of the column.
|
|
89
|
+
*/
|
|
90
|
+
index?: number;
|
|
91
|
+
}
|
|
92
|
+
/**
|
|
93
|
+
* The properties of the header Grid Cell.
|
|
94
|
+
*/
|
|
95
|
+
export interface GridCustomHeaderCellProps extends GridHeaderCellProps {
|
|
96
|
+
/**
|
|
97
|
+
* The props and attributes that are applied to the `th` element by default. The property should be used with the [HeaderThElement](https://www.telerik.com/kendo-vue-ui/components/datatools/api/headerthelement) component as demonstrated in [this example](https://www.telerik.com/kendo-vue-ui/components/grid/cells#toc-group-header-group-footer-header-cell-footer-cell-filter-cell-and-data-cell).
|
|
98
|
+
*/
|
|
99
|
+
thProps?: GridThAttributes | null;
|
|
100
|
+
/**
|
|
101
|
+
* The index of the column.
|
|
102
|
+
*/
|
|
103
|
+
index?: number;
|
|
104
|
+
}
|
|
105
|
+
/**
|
|
106
|
+
* The settings of the cells prop options.
|
|
107
|
+
*/
|
|
108
|
+
export interface GridCellsSettings {
|
|
109
|
+
/**
|
|
110
|
+
* Custom component for rendering the header cell.
|
|
111
|
+
*
|
|
112
|
+
* @example
|
|
113
|
+
* ```vue
|
|
114
|
+
* <Grid :cells="{ headerCell: MyHeaderCell }" />
|
|
115
|
+
* ```
|
|
116
|
+
*/
|
|
117
|
+
headerCell?: Component<GridCustomHeaderCellProps> | string;
|
|
118
|
+
/**
|
|
119
|
+
* Custom component for rendering the filter cell.
|
|
120
|
+
*
|
|
121
|
+
* @example
|
|
122
|
+
* ```vue
|
|
123
|
+
* <Grid :cells="{ filterCell: MyFilterCell }" />
|
|
124
|
+
* ```
|
|
125
|
+
*/
|
|
126
|
+
filterCell?: Component<GridCustomFilterCellProps> | string;
|
|
127
|
+
/**
|
|
128
|
+
* Custom component for rendering the footer cell.
|
|
129
|
+
*
|
|
130
|
+
* @example
|
|
131
|
+
* ```vue
|
|
132
|
+
* <Grid :cells="{ footerCell: MyFooterCell }" />
|
|
133
|
+
* ```
|
|
134
|
+
*/
|
|
135
|
+
footerCell?: Component<GridCustomFooterCellProps> | string;
|
|
136
|
+
/**
|
|
137
|
+
* Custom component for rendering the group header cell.
|
|
138
|
+
*
|
|
139
|
+
* @example
|
|
140
|
+
* ```vue
|
|
141
|
+
* <Grid :cells="{ groupHeader: MyGroupHeaderCell }" />
|
|
142
|
+
* ```
|
|
143
|
+
*/
|
|
144
|
+
groupHeader?: Component<GridCustomCellProps> | string;
|
|
145
|
+
/**
|
|
146
|
+
* Custom component for rendering the data cell in table layout mode.
|
|
147
|
+
*
|
|
148
|
+
* @example
|
|
149
|
+
* ```vue
|
|
150
|
+
* <Grid :cells="{ data: MyDataCell }" />
|
|
151
|
+
* ```
|
|
152
|
+
*/
|
|
153
|
+
data?: Component<GridCustomCellProps> | string;
|
|
154
|
+
/**
|
|
155
|
+
* Custom component for rendering the group footer cell.
|
|
156
|
+
*
|
|
157
|
+
* @example
|
|
158
|
+
* ```vue
|
|
159
|
+
* <Grid :cells="{ groupFooter: MyGroupFooterCell }" />
|
|
160
|
+
* ```
|
|
161
|
+
*/
|
|
162
|
+
groupFooter?: Component<GridCustomCellProps> | string;
|
|
163
|
+
/**
|
|
164
|
+
* Custom cell components for selection columns.
|
|
165
|
+
*
|
|
166
|
+
* @example
|
|
167
|
+
* ```vue
|
|
168
|
+
* <Grid :cells="{ select: { data: MySelectDataCell } }" />
|
|
169
|
+
* ```
|
|
170
|
+
*/
|
|
171
|
+
select?: {
|
|
172
|
+
/**
|
|
173
|
+
* Custom component for rendering the group header cell in selection columns.
|
|
174
|
+
*
|
|
175
|
+
* @example
|
|
176
|
+
* ```vue
|
|
177
|
+
* <Grid :cells="{ select: { groupHeader: MySelectGroupHeaderCell } }" />
|
|
178
|
+
* ```
|
|
179
|
+
*/
|
|
180
|
+
groupHeader?: Component<GridCustomCellProps> | string;
|
|
181
|
+
/**
|
|
182
|
+
* Custom component for rendering the data cell in selection columns.
|
|
183
|
+
*
|
|
184
|
+
* @example
|
|
185
|
+
* ```vue
|
|
186
|
+
* <Grid :cells="{ select: { data: MySelectDataCell } }" />
|
|
187
|
+
* ```
|
|
188
|
+
*/
|
|
189
|
+
data?: Component<GridCustomCellProps> | string;
|
|
190
|
+
/**
|
|
191
|
+
* Custom component for rendering the group footer cell in selection columns.
|
|
192
|
+
*
|
|
193
|
+
* @example
|
|
194
|
+
* ```vue
|
|
195
|
+
* <Grid :cells="{ select: { groupFooter: MySelectGroupFooterCell } }" />
|
|
196
|
+
* ```
|
|
197
|
+
*/
|
|
198
|
+
groupFooter?: Component<GridCustomCellProps> | string;
|
|
199
|
+
};
|
|
200
|
+
/**
|
|
201
|
+
* Custom cell components for hierarchy columns.
|
|
202
|
+
*
|
|
203
|
+
* @example
|
|
204
|
+
* ```vue
|
|
205
|
+
* <Grid :cells="{ hierarchy: { data: MyHierarchyDataCell } }" />
|
|
206
|
+
* ```
|
|
207
|
+
*/
|
|
208
|
+
hierarchy?: {
|
|
209
|
+
/**
|
|
210
|
+
* Custom component for rendering the group header cell in hierarchy columns.
|
|
211
|
+
*
|
|
212
|
+
* @example
|
|
213
|
+
* ```vue
|
|
214
|
+
* <Grid :cells="{ hierarchy: { groupHeader: MyHierarchyGroupHeaderCell } }" />
|
|
215
|
+
* ```
|
|
216
|
+
*/
|
|
217
|
+
groupHeader?: Component<GridCustomCellProps> | string;
|
|
218
|
+
/**
|
|
219
|
+
* Custom component for rendering the data cell in hierarchy columns.
|
|
220
|
+
*
|
|
221
|
+
* @example
|
|
222
|
+
* ```vue
|
|
223
|
+
* <Grid :cells="{ hierarchy: { data: MyHierarchyDataCell } }" />
|
|
224
|
+
* ```
|
|
225
|
+
*/
|
|
226
|
+
data?: Component<GridCustomCellProps> | string;
|
|
227
|
+
/**
|
|
228
|
+
* Custom component for rendering the group footer cell in hierarchy columns.
|
|
229
|
+
*
|
|
230
|
+
* @example
|
|
231
|
+
* ```vue
|
|
232
|
+
* <Grid :cells="{ hierarchy: { groupFooter: MyHierarchyGroupFooterCell } }" />
|
|
233
|
+
* ```
|
|
234
|
+
*/
|
|
235
|
+
groupFooter?: Component<GridCustomCellProps> | string;
|
|
236
|
+
};
|
|
237
|
+
/**
|
|
238
|
+
* Custom cell components for group columns.
|
|
239
|
+
*
|
|
240
|
+
* @example
|
|
241
|
+
* ```vue
|
|
242
|
+
* <Grid :cells="{ group: { data: MyGroupDataCell } }" />
|
|
243
|
+
* ```
|
|
244
|
+
*/
|
|
245
|
+
group?: {
|
|
246
|
+
/**
|
|
247
|
+
* Custom component for rendering the group header cell in group columns.
|
|
248
|
+
*
|
|
249
|
+
* @example
|
|
250
|
+
* ```vue
|
|
251
|
+
* <Grid :cells="{ group: { groupHeader: MyGroupGroupHeaderCell } }" />
|
|
252
|
+
* ```
|
|
253
|
+
*/
|
|
254
|
+
groupHeader?: Component<GridCustomCellProps> | string;
|
|
255
|
+
/**
|
|
256
|
+
* Custom component for rendering the data cell in group columns.
|
|
257
|
+
*
|
|
258
|
+
* @example
|
|
259
|
+
* ```vue
|
|
260
|
+
* <Grid :cells="{ group: { data: MyGroupDataCell } }" />
|
|
261
|
+
* ```
|
|
262
|
+
*/
|
|
263
|
+
data?: Component<GridCustomCellProps> | string;
|
|
264
|
+
/**
|
|
265
|
+
* Custom component for rendering the group footer cell in group columns.
|
|
266
|
+
*
|
|
267
|
+
* @example
|
|
268
|
+
* ```vue
|
|
269
|
+
* <Grid :cells="{ group: { groupFooter: MyGroupGroupFooterCell } }" />
|
|
270
|
+
* ```
|
|
271
|
+
*/
|
|
272
|
+
groupFooter?: Component<GridCustomCellProps> | string;
|
|
273
|
+
};
|
|
274
|
+
/**
|
|
275
|
+
* Custom cell components for edit columns.
|
|
276
|
+
*
|
|
277
|
+
* @example
|
|
278
|
+
* ```vue
|
|
279
|
+
* <Grid :cells="{ edit: { text: MyTextEditCell } }" />
|
|
280
|
+
* ```
|
|
281
|
+
*/
|
|
282
|
+
edit?: {
|
|
283
|
+
/**
|
|
284
|
+
* Custom component for rendering the text edit cell.
|
|
285
|
+
*
|
|
286
|
+
* @example
|
|
287
|
+
* ```vue
|
|
288
|
+
* <Grid :cells="{ edit: { text: MyTextEditCell } }" />
|
|
289
|
+
* ```
|
|
290
|
+
*/
|
|
291
|
+
text?: Component<GridCustomCellProps> | string;
|
|
292
|
+
/**
|
|
293
|
+
* Custom component for rendering the numeric edit cell.
|
|
294
|
+
*
|
|
295
|
+
* @example
|
|
296
|
+
* ```vue
|
|
297
|
+
* <Grid :cells="{ edit: { numeric: MyNumericEditCell } }" />
|
|
298
|
+
* ```
|
|
299
|
+
*/
|
|
300
|
+
numeric?: Component<GridCustomCellProps> | string;
|
|
301
|
+
/**
|
|
302
|
+
* Custom component for rendering the boolean edit cell.
|
|
303
|
+
*
|
|
304
|
+
* @example
|
|
305
|
+
* ```vue
|
|
306
|
+
* <Grid :cells="{ edit: { boolean: MyBooleanEditCell } }" />
|
|
307
|
+
* ```
|
|
308
|
+
*/
|
|
309
|
+
boolean?: Component<GridCustomCellProps> | string;
|
|
310
|
+
/**
|
|
311
|
+
* Custom component for rendering the date edit cell.
|
|
312
|
+
*
|
|
313
|
+
* @example
|
|
314
|
+
* ```vue
|
|
315
|
+
* <Grid :cells="{ edit: { date: MyDateEditCell } }" />
|
|
316
|
+
* ```
|
|
317
|
+
*/
|
|
318
|
+
date?: Component<GridCustomCellProps> | string;
|
|
319
|
+
};
|
|
320
|
+
}
|
|
@@ -16,6 +16,7 @@ import { GridHeaderCellProps } from './GridHeaderCellProps';
|
|
|
16
16
|
import { GridCellProps } from './GridCellProps';
|
|
17
17
|
import { GridFilterCellProps } from './GridFilterCellProps';
|
|
18
18
|
import { GridFooterCellProps } from './GridFooterCellProps';
|
|
19
|
+
import { GridCellsSettings } from './GridCellsSettings';
|
|
19
20
|
/**
|
|
20
21
|
* The props that can be assigned to the Grid column.
|
|
21
22
|
*/
|
|
@@ -145,6 +146,15 @@ export interface GridColumnProps extends Omit<ColumnBaseProps, 'cell'> {
|
|
|
145
146
|
*
|
|
146
147
|
*/
|
|
147
148
|
media?: string;
|
|
149
|
+
/**
|
|
150
|
+
* Specifies a set of cell components that the Grid will render instead of the built-in cell.
|
|
151
|
+
*
|
|
152
|
+
* @example
|
|
153
|
+
* ```jsx
|
|
154
|
+
* <GridColumn :cells="{ data: CustomDataCell }" />
|
|
155
|
+
* ```
|
|
156
|
+
*/
|
|
157
|
+
cells?: GridCellsSettings;
|
|
148
158
|
/**
|
|
149
159
|
* Sets the custom CSS classes to the column header cell.
|
|
150
160
|
*/
|
|
@@ -184,7 +194,7 @@ export interface GridColumnProps extends Omit<ColumnBaseProps, 'cell'> {
|
|
|
184
194
|
*/
|
|
185
195
|
columnMenuOpened?: boolean;
|
|
186
196
|
/**
|
|
187
|
-
*
|
|
197
|
+
* Defines if the column is locked. Locked columns are fixed in place and do not scroll horizontally.
|
|
188
198
|
*/
|
|
189
199
|
locked?: boolean;
|
|
190
200
|
/**
|
|
@@ -24,4 +24,27 @@ export interface GridGroupableSettings {
|
|
|
24
24
|
* The group expandable settings.
|
|
25
25
|
*/
|
|
26
26
|
expandable?: boolean | GridGroupExpandableSettings;
|
|
27
|
+
/**
|
|
28
|
+
* When enabled, the group header row sticks to the top of the scrollable area
|
|
29
|
+
* so that it remains visible while scrolling through group data rows.
|
|
30
|
+
*
|
|
31
|
+
* @example
|
|
32
|
+
* ```vue
|
|
33
|
+
* <Grid :groupable="{ stickyHeaders: true }" />
|
|
34
|
+
* ```
|
|
35
|
+
* @default false
|
|
36
|
+
*/
|
|
37
|
+
stickyHeaders?: boolean;
|
|
38
|
+
/**
|
|
39
|
+
* When enabled, the group footer row sticks to the bottom of the scrollable area
|
|
40
|
+
* so that it remains visible while scrolling through group data rows.
|
|
41
|
+
* Requires the `footer` property to be set to `'always'` or `'visible'`.
|
|
42
|
+
*
|
|
43
|
+
* @example
|
|
44
|
+
* ```vue
|
|
45
|
+
* <Grid :groupable="{ stickyFooters: true, footer: 'always' }" />
|
|
46
|
+
* ```
|
|
47
|
+
* @default false
|
|
48
|
+
*/
|
|
49
|
+
stickyFooters?: boolean;
|
|
27
50
|
}
|
|
@@ -7,6 +7,7 @@
|
|
|
7
7
|
*/
|
|
8
8
|
import { DataResult, SortDescriptor, CompositeFilterDescriptor, GroupDescriptor } from '@progress/kendo-data-query';
|
|
9
9
|
import { GridGroupableSettings } from './GridGroupableSettings';
|
|
10
|
+
import { GridCellsSettings } from './GridCellsSettings';
|
|
10
11
|
import { GridSortChangeEvent, GridFilterChangeEvent, GridPageChangeEvent, GridExpandChangeEvent, GridSelectionChangeEvent, GridHeaderSelectionChangeEvent, GridRowClickEvent, GridItemChangeEvent, GridDataStateChangeEvent, GridColumnResizeEvent, GridColumnReorderEvent, GridGroupChangeEvent, GridCancelEvent, GridSaveEvent, GridRemoveEvent, GridEditEvent, GridNavigationActionEvent, GridKeyDownEvent, GridSearchChangeEvent, GridGroupExpandChangeEvent, GridDetailExpandChangeEvent } from './events';
|
|
11
12
|
import { GridCellProps } from './GridCellProps';
|
|
12
13
|
import { GridSortSettings } from './GridSortSettings';
|
|
@@ -80,6 +81,27 @@ export interface GridProps {
|
|
|
80
81
|
* the `data` option has to contain only the items for the current page.
|
|
81
82
|
*/
|
|
82
83
|
dataItems?: any[] | DataResult | null;
|
|
84
|
+
/**
|
|
85
|
+
* Defines a set of custom cell components that the Grid will render instead of the default cells.
|
|
86
|
+
*
|
|
87
|
+
* @example
|
|
88
|
+
* ```jsx
|
|
89
|
+
* import { GridCustomCellProps } from '@progress/kendo-react-grid';
|
|
90
|
+
*
|
|
91
|
+
* const CustomCell = (props: GridCustomCellProps) => (
|
|
92
|
+
* <td {...props.tdProps}>
|
|
93
|
+
* {props.dataItem[props.field]}
|
|
94
|
+
* </td>
|
|
95
|
+
* );
|
|
96
|
+
*
|
|
97
|
+
* <Grid
|
|
98
|
+
* :cells="{
|
|
99
|
+
* data: CustomCell
|
|
100
|
+
* }"
|
|
101
|
+
* />
|
|
102
|
+
* ```
|
|
103
|
+
*/
|
|
104
|
+
cells?: GridCellsSettings;
|
|
83
105
|
/**
|
|
84
106
|
* Enables the sorting for the columns with their `field` option set
|
|
85
107
|
* ([see example]({% slug sorting_grid %})).
|
|
@@ -523,6 +545,17 @@ export interface GridProps {
|
|
|
523
545
|
* Defines if the loader will be shown. Accepts a slot name, a `render` function, or a Vue component.
|
|
524
546
|
*/
|
|
525
547
|
loader?: Object | Function | string;
|
|
548
|
+
/**
|
|
549
|
+
* Defines if the group descriptor columns are locked (frozen or sticky).
|
|
550
|
+
* Locked columns are the columns that are visible at all times while the user scrolls the component horizontally.
|
|
551
|
+
* Defaults to `false`.
|
|
552
|
+
*
|
|
553
|
+
* @example
|
|
554
|
+
* ```jsx
|
|
555
|
+
* <Grid :lockGroups="true" />
|
|
556
|
+
* ```
|
|
557
|
+
*/
|
|
558
|
+
lockGroups?: boolean;
|
|
526
559
|
/**
|
|
527
560
|
* Defines the custom rendering of the pager. Accepts a slot name, a `render` function, or a Vue component.
|
|
528
561
|
*/
|
package/messages/main.d.ts
CHANGED
|
@@ -321,6 +321,10 @@ export declare const toolbarColumnsChooser = "grid.toolbarColumnsChooser";
|
|
|
321
321
|
* @hidden
|
|
322
322
|
*/
|
|
323
323
|
export declare const toolbarCheckboxFilter = "grid.toolbarCheckboxFilter";
|
|
324
|
+
/**
|
|
325
|
+
* @hidden
|
|
326
|
+
*/
|
|
327
|
+
export declare const headerGroupSpacerAccessibleLabel = "grid.headerGroupSpacerAccessibleLabel";
|
|
324
328
|
/**
|
|
325
329
|
* @hidden
|
|
326
330
|
*/
|
|
@@ -358,6 +362,7 @@ export declare const messages: {
|
|
|
358
362
|
"grid.toolbarCheckboxFilter": string;
|
|
359
363
|
"grid.groupColumn": string;
|
|
360
364
|
"grid.ungroupColumn": string;
|
|
365
|
+
"grid.headerGroupSpacerAccessibleLabel": string;
|
|
361
366
|
"grid.columnMenu": string;
|
|
362
367
|
"grid.pagerItemsPerPage": string;
|
|
363
368
|
"grid.pagerInfo": string;
|
package/messages/main.js
CHANGED
|
@@ -5,5 +5,5 @@
|
|
|
5
5
|
* Licensed under commercial license. See LICENSE.md in the package root for more information
|
|
6
6
|
*-------------------------------------------------------------------------------------------
|
|
7
7
|
*/
|
|
8
|
-
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const e="grid.noRecords",r="grid.selectAllRows",t="grid.pagerInfo",o="grid.pagerFirstPage",l="grid.pagerPreviousPage",a="grid.pagerNextPage",i="grid.pagerLastPage",n="grid.pagerItemsPerPage",s="grid.pagerPage",g="grid.pagerPageSelection",d="grid.pagerOf",p="grid.pagerTotalPages",u="grid.groupPanelEmpty",c="grid.groupColumn",
|
|
9
|
-
`,[he]:"Generated with AI",[
|
|
8
|
+
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const e="grid.noRecords",r="grid.selectAllRows",t="grid.pagerInfo",o="grid.pagerFirstPage",l="grid.pagerPreviousPage",a="grid.pagerNextPage",i="grid.pagerLastPage",n="grid.pagerItemsPerPage",s="grid.pagerPage",g="grid.pagerPageSelection",d="grid.pagerOf",p="grid.pagerTotalPages",u="grid.groupPanelEmpty",c="grid.groupColumn",b="grid.ungroupColumn",C="grid.columnMenu",A="grid.filterApplyButton",m="grid.filterClearButton",f="grid.filterClearAllButton",h="grid.filterResetButton",L="grid.filterSubmitButton",S="grid.filterTitle",P="grid.sortAscending",I="grid.sortDescending",T="grid.sortClearButton",B="grid.sortApplyButton",F="grid.searchPlaceholder",D="grid.searchboxPlaceholder",x="grid.exportPDF",y="grid.filterCheckAll",O="grid.filterChooseOperator",v="grid.filterSelectAll",R="grid.filterSelectedItems",E="grid.sortAriaLabel",G="grid.sortableColumnAriaLabel",M="grid.sortableColumnAscendingAriaLabel",w="grid.sortableColumnDescendingAriaLabel",N="grid.editDialogTitle",k="grid.editDialogSaveButtonTitle",q="grid.editDialogCancelButtonTitle",W="grid.filterAriaLabel",H="grid.numericFilterAriaLabel",j="grid.groupPanelAriaLabel",z="grid.groupExpand",U="grid.groupCollapse",J="grid.groupClearButton",K="grid.groupApplyButton",Q="grid.detailExpand",V="grid.detailCollapse",X="grid.selectRow",Y="grid.gridAriaLabel",Z="grid.gridRowReorderAriaLabel",_="grid.gridAdaptiveColumnMenuFilterTitle",$="grid.columnMenuColumnChooserTitle",ee="grid.columnMenuColumnChooserSelectedItems",re="grid.adaptiveColumnMenuChooserTitle",te="grid.adaptiveColumnMenuChooserSubTitle",oe="grid.columnChooserApplyButton",le="grid.columnChooserResetButton",ae="grid.adaptiveColumnMenuCheckboxFilterTitle",ie="grid.adaptiveToolbarSortTitle",ne="grid.adaptiveToolbarGroupTitle",se="grid.toolbarSort",ge="grid.dateFilterAriaLabel",de="grid.textFilterAriaLabel",pe="grid.booleanFilterAriaLabel",ue="grid.groupHeaderAriaLabel",ce="grid.groupCaretAriaLabelCollapse",be="grid.groupCaretAriaLabelExpand",Ce="grid.expandDetailTemplateAriaLabel",Ae="grid.collapseDetailTemplateAriaLabel",me="grid.toolbarAI",fe="grid.aIResponseData",he="grid.generatedWithAI",Le="grid.toolbarAIApply",Se="grid.toolbarGroup",Pe="grid.toolbarFilter",Ie="grid.toolbarColumnsChooser",Te="grid.toolbarCheckboxFilter",Be="grid.headerGroupSpacerAccessibleLabel",Fe={[Q]:"Expand detail row",[V]:"Collapse detail row",[z]:"Expand group",[U]:"Collapse Group",[J]:"Clear grouping",[K]:"Done",[e]:"No records available",[r]:"Select all rows",[u]:"Drag a column header and drop it here to group by that column",[A]:"Apply",[m]:"Clear",[f]:"Clear all filters",[h]:"Reset",[L]:"Filter",[S]:"Filter",[P]:"Sort Ascending",[I]:"Sort Descending",[T]:"Clear sorting",[B]:"Done",[E]:"Sortable",[ie]:"Sort by",[ne]:"Group by",[se]:"Sort",[me]:"AI Assistant",[Le]:"Apply",[fe]:`Operation is successful. Data is:
|
|
9
|
+
`,[he]:"Generated with AI",[Se]:"Group",[Pe]:"Filter",[Ie]:"Columns",[Te]:"Filter",[c]:"Group Column",[b]:"Ungroup Column",[Be]:"Group",[C]:"Column menu",[n]:"items per page",[t]:"{0} - {1} of {2} items",[o]:"Go to the first page",[l]:"Go to the previous page",[a]:"Go to the next page",[i]:"Go to the last page",[s]:"Page",[g]:"Page size",[d]:"of",[p]:"{0}",[F]:"Search",[D]:"Search...",[x]:"Export PDF",[y]:"Check All",[N]:"Edit Dialog",[k]:"Save",[q]:"Cancel",[O]:"Choose Operator",[R]:"selected items",[v]:"Select All",[G]:"Sortable Column",[M]:"Sorted in ascending order",[w]:"Sorted in descending order",[W]:"Filter",[H]:"Numeric Filter",[ge]:"Date Filter",[de]:"Text Filter",[pe]:"Boolean Filter",[ue]:"Group Header",[ce]:"Collapse Group",[be]:"Expand Group",[Ce]:"Expand Details",[Ae]:"Collapse Details",[j]:"Group panel",[Y]:"Table",[Z]:"Drag row",[X]:"Select Row",[$]:"Columns Chooser",[_]:"Filter by",[re]:"Columns Chooser",[te]:"Selected fields are visible",[ae]:"Filter by",[ee]:"Selected items",[oe]:"Apply",[le]:"Reset","grid.filterEqOperator":"Is equal to","grid.filterNotEqOperator":"Is not equal to","grid.filterIsNullOperator":"Is null","grid.filterIsNotNullOperator":"Is not null","grid.filterIsEmptyOperator":"Is empty","grid.filterIsNotEmptyOperator":"Is not empty","grid.filterStartsWithOperator":"Starts with","grid.filterContainsOperator":"Contains","grid.filterNotContainsOperator":"Does not contain","grid.filterEndsWithOperator":"Ends with","grid.filterGteOperator":"Is greater than or equal to","grid.filterGtOperator":"Is greater than","grid.filterLteOperator":"Is less than or equal to","grid.filterLtOperator":"Is less than","grid.filterIsTrue":"Is true","grid.filterIsFalse":"Is false","grid.filterBooleanAll":"(All)","grid.filterAfterOrEqualOperator":"Is after or equal to","grid.filterAfterOperator":"Is after","grid.filterBeforeOperator":"Is before","grid.filterBeforeOrEqualOperator":"Is before or equal to","grid.filterAndLogic":"And","grid.filterOrLogic":"Or"};exports.aIResponseData=fe;exports.adaptiveColumnMenuCheckboxFilterTitle=ae;exports.adaptiveColumnMenuChooserSubTitle=te;exports.adaptiveColumnMenuChooserTitle=re;exports.adaptiveColumnMenuFilterTitle=_;exports.adaptiveToolbarGroupTitle=ne;exports.adaptiveToolbarSortTitle=ie;exports.booleanFilterAriaLabel=pe;exports.collapseDetailAriaLabel=Ae;exports.columnChooserApplyButton=oe;exports.columnChooserResetButton=le;exports.columnMenu=C;exports.columnMenuColumnChooserSelectedItems=ee;exports.columnMenuColumnChooserTitle=$;exports.dateFilterAriaLabel=ge;exports.detailCollapse=V;exports.detailExpand=Q;exports.editDialogCancelButtonTitle=q;exports.editDialogSaveButtonTitle=k;exports.editDialogTitle=N;exports.expandDetailAriaLabel=Ce;exports.exportPDF=x;exports.filterApplyButton=A;exports.filterAriaLabel=W;exports.filterCheckAll=y;exports.filterChooseOperator=O;exports.filterClearAllButton=f;exports.filterClearButton=m;exports.filterResetButton=h;exports.filterSelectAll=v;exports.filterSelectedItems=R;exports.filterSubmitButton=L;exports.filterTitle=S;exports.generatedWithAI=he;exports.gridAriaLabel=Y;exports.gridRowReorderAriaLabel=Z;exports.groupApplyButton=K;exports.groupCaretAriaLabelCollapse=ce;exports.groupCaretAriaLabelExpand=be;exports.groupClearButton=J;exports.groupCollapse=U;exports.groupColumn=c;exports.groupExpand=z;exports.groupHeaderAriaLabel=ue;exports.groupPanelAriaLabel=j;exports.groupPanelEmpty=u;exports.headerGroupSpacerAccessibleLabel=Be;exports.messages=Fe;exports.noRecords=e;exports.numericFilterAriaLabel=H;exports.pagerFirstPage=o;exports.pagerInfo=t;exports.pagerItemPerPage=n;exports.pagerLastPage=i;exports.pagerNextPage=a;exports.pagerOf=d;exports.pagerPage=s;exports.pagerPageSelection=g;exports.pagerPreviousPage=l;exports.pagerTotalPages=p;exports.searchPlaceholder=F;exports.searchboxPlaceholder=D;exports.selectAllRows=r;exports.selectRow=X;exports.sortApplyButton=B;exports.sortAriaLabel=E;exports.sortAscending=P;exports.sortClearButton=T;exports.sortDescending=I;exports.sortableColumnAriaLabel=G;exports.sortableColumnAscendingAriaLabel=M;exports.sortableColumnDescendingAriaLabel=w;exports.textFilterAriaLabel=de;exports.toolbarAI=me;exports.toolbarAIApply=Le;exports.toolbarCheckboxFilter=Te;exports.toolbarColumnsChooser=Ie;exports.toolbarFilter=Pe;exports.toolbarGroup=Se;exports.toolbarSort=se;exports.ungroupColumn=b;
|
package/messages/main.mjs
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
* Licensed under commercial license. See LICENSE.md in the package root for more information
|
|
6
6
|
*-------------------------------------------------------------------------------------------
|
|
7
7
|
*/
|
|
8
|
-
const e = "grid.noRecords", r = "grid.selectAllRows", t = "grid.pagerInfo", o = "grid.pagerFirstPage", l = "grid.pagerPreviousPage", a = "grid.pagerNextPage", i = "grid.pagerLastPage", n = "grid.pagerItemsPerPage", s = "grid.pagerPage", g = "grid.pagerPageSelection", d = "grid.pagerOf", p = "grid.pagerTotalPages", c = "grid.groupPanelEmpty", u = "grid.groupColumn", C = "grid.ungroupColumn", b = "grid.columnMenu", A = "grid.filterApplyButton", m = "grid.filterClearButton", f = "grid.filterClearAllButton", h = "grid.filterResetButton",
|
|
8
|
+
const e = "grid.noRecords", r = "grid.selectAllRows", t = "grid.pagerInfo", o = "grid.pagerFirstPage", l = "grid.pagerPreviousPage", a = "grid.pagerNextPage", i = "grid.pagerLastPage", n = "grid.pagerItemsPerPage", s = "grid.pagerPage", g = "grid.pagerPageSelection", d = "grid.pagerOf", p = "grid.pagerTotalPages", c = "grid.groupPanelEmpty", u = "grid.groupColumn", C = "grid.ungroupColumn", b = "grid.columnMenu", A = "grid.filterApplyButton", m = "grid.filterClearButton", f = "grid.filterClearAllButton", h = "grid.filterResetButton", L = "grid.filterSubmitButton", I = "grid.filterTitle", S = "grid.sortAscending", F = "grid.sortDescending", P = "grid.sortClearButton", T = "grid.sortApplyButton", B = "grid.searchPlaceholder", D = "grid.searchboxPlaceholder", x = "grid.exportPDF", O = "grid.filterCheckAll", y = "grid.filterChooseOperator", E = "grid.filterSelectAll", G = "grid.filterSelectedItems", v = "grid.sortAriaLabel", R = "grid.sortableColumnAriaLabel", w = "grid.sortableColumnAscendingAriaLabel", M = "grid.sortableColumnDescendingAriaLabel", q = "grid.editDialogTitle", N = "grid.editDialogSaveButtonTitle", k = "grid.editDialogCancelButtonTitle", W = "grid.filterAriaLabel", H = "grid.numericFilterAriaLabel", z = "grid.groupPanelAriaLabel", U = "grid.groupExpand", j = "grid.groupCollapse", J = "grid.groupClearButton", K = "grid.groupApplyButton", Q = "grid.detailExpand", V = "grid.detailCollapse", X = "grid.selectRow", Y = "grid.gridAriaLabel", Z = "grid.gridRowReorderAriaLabel", _ = "grid.gridAdaptiveColumnMenuFilterTitle", $ = "grid.columnMenuColumnChooserTitle", ee = "grid.columnMenuColumnChooserSelectedItems", re = "grid.adaptiveColumnMenuChooserTitle", te = "grid.adaptiveColumnMenuChooserSubTitle", oe = "grid.columnChooserApplyButton", le = "grid.columnChooserResetButton", ae = "grid.adaptiveColumnMenuCheckboxFilterTitle", ie = "grid.adaptiveToolbarSortTitle", ne = "grid.adaptiveToolbarGroupTitle", se = "grid.toolbarSort", ge = "grid.dateFilterAriaLabel", de = "grid.textFilterAriaLabel", pe = "grid.booleanFilterAriaLabel", ce = "grid.groupHeaderAriaLabel", ue = "grid.groupCaretAriaLabelCollapse", Ce = "grid.groupCaretAriaLabelExpand", be = "grid.expandDetailTemplateAriaLabel", Ae = "grid.collapseDetailTemplateAriaLabel", me = "grid.toolbarAI", fe = "grid.aIResponseData", he = "grid.generatedWithAI", Le = "grid.toolbarAIApply", Ie = "grid.toolbarGroup", Se = "grid.toolbarFilter", Fe = "grid.toolbarColumnsChooser", Pe = "grid.toolbarCheckboxFilter", Te = "grid.headerGroupSpacerAccessibleLabel", Be = {
|
|
9
9
|
[Q]: "Expand detail row",
|
|
10
10
|
[V]: "Collapse detail row",
|
|
11
11
|
[U]: "Expand group",
|
|
@@ -19,27 +19,28 @@ const e = "grid.noRecords", r = "grid.selectAllRows", t = "grid.pagerInfo", o =
|
|
|
19
19
|
[m]: "Clear",
|
|
20
20
|
[f]: "Clear all filters",
|
|
21
21
|
[h]: "Reset",
|
|
22
|
-
[I]: "Filter",
|
|
23
22
|
[L]: "Filter",
|
|
23
|
+
[I]: "Filter",
|
|
24
24
|
[S]: "Sort Ascending",
|
|
25
25
|
[F]: "Sort Descending",
|
|
26
26
|
[P]: "Clear sorting",
|
|
27
27
|
[T]: "Done",
|
|
28
|
-
[
|
|
28
|
+
[v]: "Sortable",
|
|
29
29
|
[ie]: "Sort by",
|
|
30
30
|
[ne]: "Group by",
|
|
31
31
|
[se]: "Sort",
|
|
32
32
|
[me]: "AI Assistant",
|
|
33
|
-
[
|
|
33
|
+
[Le]: "Apply",
|
|
34
34
|
[fe]: `Operation is successful. Data is:
|
|
35
35
|
`,
|
|
36
36
|
[he]: "Generated with AI",
|
|
37
|
-
[
|
|
37
|
+
[Ie]: "Group",
|
|
38
38
|
[Se]: "Filter",
|
|
39
39
|
[Fe]: "Columns",
|
|
40
40
|
[Pe]: "Filter",
|
|
41
41
|
[u]: "Group Column",
|
|
42
42
|
[C]: "Ungroup Column",
|
|
43
|
+
[Te]: "Group",
|
|
43
44
|
[b]: "Column menu",
|
|
44
45
|
[n]: "items per page",
|
|
45
46
|
[t]: "{0} - {1} of {2} items",
|
|
@@ -59,7 +60,7 @@ const e = "grid.noRecords", r = "grid.selectAllRows", t = "grid.pagerInfo", o =
|
|
|
59
60
|
[N]: "Save",
|
|
60
61
|
[k]: "Cancel",
|
|
61
62
|
[y]: "Choose Operator",
|
|
62
|
-
[
|
|
63
|
+
[G]: "selected items",
|
|
63
64
|
[E]: "Select All",
|
|
64
65
|
[R]: "Sortable Column",
|
|
65
66
|
[w]: "Sorted in ascending order",
|
|
@@ -142,9 +143,9 @@ export {
|
|
|
142
143
|
m as filterClearButton,
|
|
143
144
|
h as filterResetButton,
|
|
144
145
|
E as filterSelectAll,
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
146
|
+
G as filterSelectedItems,
|
|
147
|
+
L as filterSubmitButton,
|
|
148
|
+
I as filterTitle,
|
|
148
149
|
he as generatedWithAI,
|
|
149
150
|
Y as gridAriaLabel,
|
|
150
151
|
Z as gridRowReorderAriaLabel,
|
|
@@ -158,7 +159,8 @@ export {
|
|
|
158
159
|
ce as groupHeaderAriaLabel,
|
|
159
160
|
z as groupPanelAriaLabel,
|
|
160
161
|
c as groupPanelEmpty,
|
|
161
|
-
Te as
|
|
162
|
+
Te as headerGroupSpacerAccessibleLabel,
|
|
163
|
+
Be as messages,
|
|
162
164
|
e as noRecords,
|
|
163
165
|
H as numericFilterAriaLabel,
|
|
164
166
|
o as pagerFirstPage,
|
|
@@ -176,7 +178,7 @@ export {
|
|
|
176
178
|
r as selectAllRows,
|
|
177
179
|
X as selectRow,
|
|
178
180
|
T as sortApplyButton,
|
|
179
|
-
|
|
181
|
+
v as sortAriaLabel,
|
|
180
182
|
S as sortAscending,
|
|
181
183
|
P as sortClearButton,
|
|
182
184
|
F as sortDescending,
|
|
@@ -185,11 +187,11 @@ export {
|
|
|
185
187
|
M as sortableColumnDescendingAriaLabel,
|
|
186
188
|
de as textFilterAriaLabel,
|
|
187
189
|
me as toolbarAI,
|
|
188
|
-
|
|
190
|
+
Le as toolbarAIApply,
|
|
189
191
|
Pe as toolbarCheckboxFilter,
|
|
190
192
|
Fe as toolbarColumnsChooser,
|
|
191
193
|
Se as toolbarFilter,
|
|
192
|
-
|
|
194
|
+
Ie as toolbarGroup,
|
|
193
195
|
se as toolbarSort,
|
|
194
196
|
C as ungroupColumn
|
|
195
197
|
};
|
package/package-metadata.js
CHANGED
|
@@ -5,4 +5,4 @@
|
|
|
5
5
|
* Licensed under commercial license. See LICENSE.md in the package root for more information
|
|
6
6
|
*-------------------------------------------------------------------------------------------
|
|
7
7
|
*/
|
|
8
|
-
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const e={name:"@progress/kendo-vue-grid",productName:"Kendo UI for Vue",productCode:"KENDOUIVUE",productCodes:["KENDOUIVUE"],publishDate:
|
|
8
|
+
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const e={name:"@progress/kendo-vue-grid",productName:"Kendo UI for Vue",productCode:"KENDOUIVUE",productCodes:["KENDOUIVUE"],publishDate: 1774517744,version:"8.1.0-develop.3",licensingDocsUrl:"https://www.telerik.com/kendo-vue-ui/my-license/"};exports.packageMetadata=e;
|
package/package-metadata.mjs
CHANGED
|
@@ -10,8 +10,8 @@ const e = {
|
|
|
10
10
|
productName: "Kendo UI for Vue",
|
|
11
11
|
productCode: "KENDOUIVUE",
|
|
12
12
|
productCodes: ["KENDOUIVUE"],
|
|
13
|
-
publishDate:
|
|
14
|
-
version: "8.1.0-develop.
|
|
13
|
+
publishDate: 1774517744,
|
|
14
|
+
version: "8.1.0-develop.3",
|
|
15
15
|
licensingDocsUrl: "https://www.telerik.com/kendo-vue-ui/my-license/"
|
|
16
16
|
};
|
|
17
17
|
export {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progress/kendo-vue-grid",
|
|
3
|
-
"version": "8.1.0-develop.
|
|
3
|
+
"version": "8.1.0-develop.3",
|
|
4
4
|
"description": "TODO",
|
|
5
5
|
"author": "Progress",
|
|
6
6
|
"license": "SEE LICENSE IN LICENSE.md",
|
|
@@ -27,16 +27,16 @@
|
|
|
27
27
|
"@progress/kendo-data-query": "^1.7.0",
|
|
28
28
|
"@progress/kendo-drawing": "^1.21.1",
|
|
29
29
|
"@progress/kendo-licensing": "^1.7.2",
|
|
30
|
-
"@progress/kendo-vue-animation": "8.1.0-develop.
|
|
31
|
-
"@progress/kendo-vue-buttons": "8.1.0-develop.
|
|
32
|
-
"@progress/kendo-vue-common": "8.1.0-develop.
|
|
33
|
-
"@progress/kendo-vue-data-tools": "8.1.0-develop.
|
|
34
|
-
"@progress/kendo-vue-dateinputs": "8.1.0-develop.
|
|
35
|
-
"@progress/kendo-vue-indicators": "8.1.0-develop.
|
|
36
|
-
"@progress/kendo-vue-dropdowns": "8.1.0-develop.
|
|
37
|
-
"@progress/kendo-vue-inputs": "8.1.0-develop.
|
|
38
|
-
"@progress/kendo-vue-intl": "8.1.0-develop.
|
|
39
|
-
"@progress/kendo-vue-popup": "8.1.0-develop.
|
|
30
|
+
"@progress/kendo-vue-animation": "8.1.0-develop.3",
|
|
31
|
+
"@progress/kendo-vue-buttons": "8.1.0-develop.3",
|
|
32
|
+
"@progress/kendo-vue-common": "8.1.0-develop.3",
|
|
33
|
+
"@progress/kendo-vue-data-tools": "8.1.0-develop.3",
|
|
34
|
+
"@progress/kendo-vue-dateinputs": "8.1.0-develop.3",
|
|
35
|
+
"@progress/kendo-vue-indicators": "8.1.0-develop.3",
|
|
36
|
+
"@progress/kendo-vue-dropdowns": "8.1.0-develop.3",
|
|
37
|
+
"@progress/kendo-vue-inputs": "8.1.0-develop.3",
|
|
38
|
+
"@progress/kendo-vue-intl": "8.1.0-develop.3",
|
|
39
|
+
"@progress/kendo-vue-popup": "8.1.0-develop.3",
|
|
40
40
|
"@progress/kendo-svg-icons": "^4.4.0",
|
|
41
41
|
"vue": "^3.0.2"
|
|
42
42
|
},
|
|
@@ -57,7 +57,7 @@
|
|
|
57
57
|
"package": {
|
|
58
58
|
"productName": "Kendo UI for Vue",
|
|
59
59
|
"productCode": "KENDOUIVUE",
|
|
60
|
-
"publishDate":
|
|
60
|
+
"publishDate": 1774517744,
|
|
61
61
|
"licensingDocsUrl": "https://www.telerik.com/kendo-vue-ui/my-license/"
|
|
62
62
|
}
|
|
63
63
|
},
|