@progress/kendo-vue-grid 8.0.3-develop.2 → 8.0.3-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.
Files changed (121) hide show
  1. package/BasePDFExport.d.ts +59 -0
  2. package/Grid.d.ts +542 -0
  3. package/GridColumn.d.ts +18 -0
  4. package/GridNav.d.ts +26 -0
  5. package/GridSearchBox.d.ts +42 -0
  6. package/GridState.d.ts +234 -0
  7. package/GridToolbar.d.ts +32 -0
  8. package/RootGrid.d.ts +429 -0
  9. package/ScrollMode.d.ts +8 -0
  10. package/StatusBar.d.ts +21 -0
  11. package/VirtualScroll.d.ts +43 -0
  12. package/cells/GridCell.d.ts +123 -0
  13. package/cells/GridDetailCell.d.ts +38 -0
  14. package/cells/GridDetailHierarchyCell.d.ts +23 -0
  15. package/cells/GridEditCell.d.ts +86 -0
  16. package/cells/GridFilterCell.d.ts +60 -0
  17. package/cells/GridGroupCell.d.ts +68 -0
  18. package/cells/GridHierarchyCell.d.ts +67 -0
  19. package/cells/GridSelectionCell.d.ts +65 -0
  20. package/columnMenu/ColumnMenu.d.ts +191 -0
  21. package/columnMenu/ColumnMenuContent.d.ts +58 -0
  22. package/columnMenu/GridColumnMenuCheckboxFilter.d.ts +102 -0
  23. package/columnMenu/GridColumnMenuFilter.d.ts +129 -0
  24. package/columnMenu/GridColumnMenuFilter.mjs +5 -5
  25. package/columnMenu/GridColumnMenuFilterCell.d.ts +65 -0
  26. package/columnMenu/GridColumnMenuFilterOperators.d.ts +49 -0
  27. package/columnMenu/GridColumnMenuFilterUI.d.ts +59 -0
  28. package/columnMenu/GridColumnMenuItem.d.ts +60 -0
  29. package/columnMenu/GridColumnMenuItemContent.d.ts +26 -0
  30. package/columnMenu/GridColumnMenuItemGroup.d.ts +12 -0
  31. package/columnMenu/GridColumnMenuSort.d.ts +46 -0
  32. package/common.d.ts +184 -0
  33. package/components/GridDragClue.d.ts +11 -0
  34. package/components/GridDropClue.d.ts +11 -0
  35. package/components/GridLoader.d.ts +32 -0
  36. package/components/PagerContainer.d.ts +11 -0
  37. package/components/VirtualScrollHeightContainer.d.ts +11 -0
  38. package/components/colGroup/GridColGroup.d.ts +11 -0
  39. package/components/noRecords/GridNoRecords.d.ts +15 -0
  40. package/components/noRecords/GridNoRecordsContainer.d.ts +15 -0
  41. package/components/utils.d.ts +21 -0
  42. package/dist/cdn/js/kendo-vue-grid.js +1 -1
  43. package/drag/ColumnDraggable.d.ts +34 -0
  44. package/drag/ColumnResize.d.ts +46 -0
  45. package/drag/ColumnResizer.d.ts +27 -0
  46. package/drag/CommonDragLogic.d.ts +43 -0
  47. package/drag/DragClue.d.ts +18 -0
  48. package/drag/DropClue.d.ts +17 -0
  49. package/drag/GroupingIndicator.d.ts +50 -0
  50. package/filterCommon.d.ts +86 -0
  51. package/footer/Footer.d.ts +57 -0
  52. package/footer/FooterRow.d.ts +35 -0
  53. package/header/FilterRow.d.ts +65 -0
  54. package/header/GridHeaderCell.d.ts +34 -0
  55. package/header/GridHeaderSelectionCell.d.ts +25 -0
  56. package/header/GroupPanel.d.ts +52 -0
  57. package/header/Header.d.ts +70 -0
  58. package/header/HeaderRow.d.ts +140 -0
  59. package/index.d.mts +42 -3319
  60. package/index.d.ts +42 -3319
  61. package/interfaces/ColumnType.d.ts +13 -0
  62. package/interfaces/CompositeHighlightDescriptor.d.ts +29 -0
  63. package/interfaces/ExtendedColumnProps.d.ts +33 -0
  64. package/interfaces/GridCellProps.d.ts +176 -0
  65. package/interfaces/GridCellRenderModel.d.ts +15 -0
  66. package/interfaces/GridColSpanProps.d.ts +21 -0
  67. package/interfaces/GridColumnChildrenProps.d.ts +12 -0
  68. package/interfaces/GridColumnMenuBaseProps.d.ts +21 -0
  69. package/interfaces/GridColumnMenuColumnProps.d.ts +20 -0
  70. package/interfaces/GridColumnMenuColumnsChooserBaseProps.d.ts +22 -0
  71. package/interfaces/GridColumnMenuExtendedFilterProps.d.ts +49 -0
  72. package/interfaces/GridColumnMenuFilterBaseProps.d.ts +56 -0
  73. package/interfaces/GridColumnMenuFilterProps.d.ts +34 -0
  74. package/interfaces/GridColumnMenuFilterUIProps.d.ts +62 -0
  75. package/interfaces/GridColumnMenuGroupBaseProps.d.ts +26 -0
  76. package/interfaces/GridColumnMenuProps.d.ts +48 -0
  77. package/interfaces/GridColumnMenuSortBaseProps.d.ts +35 -0
  78. package/interfaces/GridColumnProps.d.ts +207 -0
  79. package/interfaces/GridColumnState.d.ts +44 -0
  80. package/interfaces/GridDataType.d.ts +12 -0
  81. package/interfaces/GridDetailExpandableSettings.d.ts +11 -0
  82. package/interfaces/GridDetailRowProps.d.ts +16 -0
  83. package/interfaces/GridEditableSettings.d.ts +16 -0
  84. package/interfaces/GridFilterCellProps.d.ts +86 -0
  85. package/interfaces/GridFilterOperator.d.ts +14 -0
  86. package/interfaces/GridFilterOperators.d.ts +56 -0
  87. package/interfaces/GridFooterCellProps.d.ts +14 -0
  88. package/interfaces/GridGroupExpandableSettings.d.ts +22 -0
  89. package/interfaces/GridGroupableSettings.d.ts +27 -0
  90. package/interfaces/GridHeaderCellProps.d.ts +44 -0
  91. package/interfaces/GridHeaderSelectionCellProps.d.ts +24 -0
  92. package/interfaces/GridHighlightDescriptor.d.ts +10 -0
  93. package/interfaces/GridNoRecordsProps.d.ts +16 -0
  94. package/interfaces/GridProps.d.ts +543 -0
  95. package/interfaces/GridReorderDropDir.d.ts +11 -0
  96. package/interfaces/GridRowProps.d.ts +70 -0
  97. package/interfaces/GridRowReorderSettings.d.ts +25 -0
  98. package/interfaces/GridRowSpannableSettings.d.ts +21 -0
  99. package/interfaces/GridRowType.d.ts +16 -0
  100. package/interfaces/GridRowsSettings.d.ts +15 -0
  101. package/interfaces/GridSelectableSettings.d.ts +25 -0
  102. package/interfaces/GridSortSettings.d.ts +33 -0
  103. package/interfaces/GridToolbarProps.d.ts +22 -0
  104. package/interfaces/VirtualScrollInterface.d.ts +28 -0
  105. package/interfaces/events.d.ts +311 -0
  106. package/key.d.ts +8 -0
  107. package/messages/main.d.ts +430 -0
  108. package/messages/messagesMap.d.ts +14 -0
  109. package/package-metadata.d.ts +12 -0
  110. package/package-metadata.js +1 -1
  111. package/package-metadata.mjs +2 -2
  112. package/package.json +20 -14
  113. package/paging/GridPagerSettings.d.ts +21 -0
  114. package/paging/Page.d.ts +11 -0
  115. package/rows/GridDetailRow.d.ts +12 -0
  116. package/rows/GridRow.d.ts +72 -0
  117. package/utils/browser-support.service.d.ts +14 -0
  118. package/utils/main.d.ts +143 -0
  119. package/utils/main.js +1 -1
  120. package/utils/main.mjs +1 -1
  121. package/utils/virtualColumns.d.ts +31 -0
@@ -0,0 +1,13 @@
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
+ /**
9
+ * Sets the column type.
10
+ *
11
+ * @default "data"
12
+ */
13
+ export type GridColumnType = 'data' | 'reorder' | 'checkbox';
@@ -0,0 +1,29 @@
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 { FilterDescriptor } from '@progress/kendo-data-query';
9
+ /**
10
+ * Represents a composite highlight descriptor for a grid.
11
+ * It contains a map of cell identifiers to their highlight status,
12
+ * an array of filter descriptors, and the logical operator used to combine the filters.
13
+ */
14
+ export interface CompositeHighlightDescriptor {
15
+ /**
16
+ * A map of cell identifiers to a boolean indicating whether the cell should be highlighted.
17
+ */
18
+ cells: {
19
+ [key: string]: boolean;
20
+ };
21
+ /**
22
+ * An array of filter descriptors representing the filters applied to the grid.
23
+ */
24
+ filters: FilterDescriptor[];
25
+ /**
26
+ * The logical operator ('and' | 'or') used to combine the filters.
27
+ */
28
+ logic: 'and' | 'or';
29
+ }
@@ -0,0 +1,33 @@
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 { GridColumnProps } from './GridColumnProps';
9
+ import { GridRowSpannableSettings } from './GridRowSpannableSettings';
10
+ /**
11
+ * @hidden
12
+ */
13
+ export interface ExtendedColumnProps extends GridColumnProps {
14
+ declarationIndex: number;
15
+ parentIndex: number;
16
+ rowSpan: number;
17
+ depth: number;
18
+ colSpan: number;
19
+ kFirst?: boolean;
20
+ index: number;
21
+ headerColSpan: number;
22
+ children: ExtendedColumnProps[];
23
+ left: number;
24
+ right: number;
25
+ rightBorder: boolean;
26
+ ariaColumnIndex: number;
27
+ isAccessible: boolean;
28
+ /** @hidden _internal usage only */
29
+ _type?: 'edit' | 'expand';
30
+ rowSpannable?: Required<GridRowSpannableSettings>;
31
+ defaultCell?: any;
32
+ defaultHeaderCell?: any;
33
+ }
@@ -0,0 +1,176 @@
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 { GroupState } from '@progress/kendo-vue-data-tools';
9
+ /**
10
+ * @hidden
11
+ */
12
+ export interface GridCellProps {
13
+ /**
14
+ * @hidden
15
+ */
16
+ id: string;
17
+ /**
18
+ * The field to which the cell is bound ([see example]({% slug sorting_grid %})).
19
+ */
20
+ key?: number;
21
+ /**
22
+ * The field to which the cell is bound ([see example]({% slug sorting_grid %})).
23
+ */
24
+ field: string;
25
+ /**
26
+ * The data object that represents the current row.
27
+ */
28
+ dataItem: any;
29
+ /**
30
+ *
31
+ */
32
+ dataIndex?: number;
33
+ /**
34
+ * The format that is applied to the value before the value is displayed. Takes the `{0:format}`
35
+ * form where `format` is any of the following:
36
+ * * A standard number format
37
+ * * A custom number format
38
+ * * A standard date format
39
+ * * A custom date format
40
+ *
41
+ * For more information on the supported date and number formats,
42
+ * refer to the [kendo-intl](https://github.com/telerik/kendo-intl/blob/develop/docs/index.md) documentation.
43
+ */
44
+ format?: string;
45
+ /**
46
+ * The data Item read format.
47
+ */
48
+ readFormat?: string;
49
+ /**
50
+ * The custom CSS classes of the cells.
51
+ */
52
+ className?: string;
53
+ /**
54
+ * The index to be applied to the `aria-colindex` attribute.
55
+ */
56
+ ariaColumnIndex: number;
57
+ /**
58
+ * The index of all rendered columns.
59
+ */
60
+ columnIndex?: number;
61
+ /**
62
+ * The number of rendered columns in the Grid.
63
+ */
64
+ columnsCount?: number;
65
+ /**
66
+ * The type of the row.
67
+ */
68
+ rowType?: string;
69
+ /**
70
+ * @hidden
71
+ */
72
+ level?: number;
73
+ /**
74
+ * The expanded value of the cell when hierarchy or grouping are used.
75
+ */
76
+ expanded?: boolean;
77
+ /**
78
+ * The event that is fired when the cell is selected.
79
+ */
80
+ selectionchange?: (event: any, dataItem: any) => void;
81
+ /**
82
+ * @hidden
83
+ */
84
+ style?: any;
85
+ /**
86
+ * The column span of the cell.
87
+ */
88
+ colSpan?: number;
89
+ /**
90
+ * Indicates if the cell is selected.
91
+ */
92
+ isSelected: boolean;
93
+ /**
94
+ * Indicates if the cell is highlighted.
95
+ */
96
+ isHighlighted: boolean;
97
+ /**
98
+ * Indicates if the cell is in rtl direction.
99
+ */
100
+ isRtl: boolean;
101
+ /**
102
+ * The event that is fired when the cell value is changed.
103
+ */
104
+ onChange?: (event: {
105
+ dataItem: any;
106
+ event: any;
107
+ field?: string;
108
+ value?: any;
109
+ }) => void;
110
+ /**
111
+ * The event that is fired when the keydown event of the cell is triggered.
112
+ */
113
+ onCellkeydown?: (event: {
114
+ event: any;
115
+ dataItem: any;
116
+ field: string;
117
+ }) => void;
118
+ /**
119
+ * The event that is fired when the cell is clicked.
120
+ */
121
+ onCellclick?: (event: {
122
+ dataItem: any;
123
+ field: string;
124
+ }) => void;
125
+ /**
126
+ * The event that is fired when the cell is about to be added.
127
+ */
128
+ onAdd?: (event: {
129
+ dataItem: any;
130
+ }) => void;
131
+ /**
132
+ * The event that is fired when the cell is about to be edited.
133
+ */
134
+ onEdit?: (event: {
135
+ dataItem: any;
136
+ }) => void;
137
+ /**
138
+ * The event that is fired when the cell is about to be saved.
139
+ */
140
+ save?: (event: {
141
+ dataItem: any;
142
+ }) => void;
143
+ /**
144
+ * The event that is fired when the cell is about to be removed.
145
+ */
146
+ remove?: (event: {
147
+ dataItem: any;
148
+ }) => void;
149
+ /**
150
+ * The event that is fired when the cell is about to be canceled.
151
+ */
152
+ onCancel?: (event: {
153
+ dataItem: any;
154
+ }) => void;
155
+ /**
156
+ * The type of the data which will be used when formatting the cell data.
157
+ * Could be one of the following values 'text' | 'numeric' | 'boolean' | 'date'.
158
+ */
159
+ type?: string;
160
+ /**
161
+ * The type of the editor which will be used when the cell is in edit mode.
162
+ * Could be one of the following values 'text' | 'numeric' | 'boolean' | 'date'.
163
+ */
164
+ editor?: string;
165
+ /**
166
+ * The method for rendering the cell.
167
+ */
168
+ render?: any;
169
+ /** @hidden */
170
+ group?: GroupState;
171
+ /** @hidden */
172
+ rowSpan?: {
173
+ count: number | null;
174
+ value: any;
175
+ };
176
+ }
@@ -0,0 +1,15 @@
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
+ /**
9
+ * @hidden
10
+ */
11
+ export interface GridCellRenderModel {
12
+ width: number;
13
+ colSpan: number;
14
+ columnIndex: number;
15
+ }
@@ -0,0 +1,21 @@
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 { GridColumnProps } from './GridColumnProps';
9
+ /**
10
+ * Represents the properties of the callback used when spanning a column.
11
+ */
12
+ export type GridColSpanProps = {
13
+ /**
14
+ * Represents the properties of the spanned column.
15
+ */
16
+ column: GridColumnProps;
17
+ /**
18
+ * Represents the current row data item.
19
+ */
20
+ dataItem: any;
21
+ };
@@ -0,0 +1,12 @@
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
+ /**
9
+ * The type of elements that the children property of the Grid accepts.
10
+ */
11
+ export interface GridColumnChildrenProps {
12
+ }
@@ -0,0 +1,21 @@
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 { GridColumnMenuColumnProps } from './GridColumnMenuColumnProps';
9
+ /**
10
+ * @hidden
11
+ */
12
+ export interface GridColumnMenuBaseProps {
13
+ /**
14
+ * The current column options.
15
+ */
16
+ column: GridColumnMenuColumnProps;
17
+ /**
18
+ * The method that will be called to close the column menu.
19
+ */
20
+ onClosemenu?: Function;
21
+ }
@@ -0,0 +1,20 @@
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
+ /**
9
+ * The column props passed by the ColumnMenu.
10
+ */
11
+ export interface GridColumnMenuColumnProps {
12
+ /**
13
+ * The field to which the column is bound.
14
+ */
15
+ field?: string;
16
+ /**
17
+ * Defines the filter type that is displayed inside the filter row. Defaults to `text`.
18
+ */
19
+ filter?: 'text' | 'numeric' | 'boolean' | 'date';
20
+ }
@@ -0,0 +1,22 @@
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 { GridColumnMenuBaseProps } from './GridColumnMenuBaseProps';
9
+ import { GridColumnState } from './GridColumnState';
10
+ /**
11
+ * The props passed to the ColumnMenu ColumnsChooser component.
12
+ */
13
+ export interface GridColumnMenuColumnsChooserBaseProps extends GridColumnMenuBaseProps {
14
+ /**
15
+ * The columns state of the KendoReact GridColumnMenuColumnsChooser component.
16
+ */
17
+ columnsState?: GridColumnState[];
18
+ /**
19
+ * The method that will be called when the new columns state is applied.
20
+ */
21
+ onColumnsstatechange?: Function;
22
+ }
@@ -0,0 +1,49 @@
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 { GridColumnMenuFilterProps } from './GridColumnMenuFilterProps';
9
+ /**
10
+ * @hidden
11
+ */
12
+ export interface GridColumnMenuExtendedFilterProps extends GridColumnMenuFilterProps {
13
+ /**
14
+ * Allows you to control the expand state of the filter component.
15
+ */
16
+ expanded?: boolean;
17
+ /**
18
+ * Triggered on each subsequent expand state of the filter component.
19
+ */
20
+ onExpandchange?: (nextExpandState: boolean) => void;
21
+ /**
22
+ * If set to `false`, the second filter operator and the input will be hidden.
23
+ */
24
+ hideSecondFilter?: boolean;
25
+ /**
26
+ * Specifies a Vue element that will be cloned and rendered inside the UI of the column-menu filter component.
27
+ */
28
+ filterUI?: any;
29
+ }
30
+ /**
31
+ * @hidden
32
+ */
33
+ export interface GridColumnMenuBooleanFilterProps extends GridColumnMenuExtendedFilterProps {
34
+ }
35
+ /**
36
+ * @hidden
37
+ */
38
+ export interface GridColumnMenuDateFilterProps extends GridColumnMenuExtendedFilterProps {
39
+ }
40
+ /**
41
+ * @hidden
42
+ */
43
+ export interface GridColumnMenuNumericFilterProps extends GridColumnMenuExtendedFilterProps {
44
+ }
45
+ /**
46
+ * @hidden
47
+ */
48
+ export interface GridColumnMenuTextFilterProps extends GridColumnMenuExtendedFilterProps {
49
+ }
@@ -0,0 +1,56 @@
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 { CompositeFilterDescriptor } from '@progress/kendo-data-query';
9
+ import { PopupAnimation } from '@progress/kendo-vue-popup';
10
+ import { GridColumnMenuColumnProps } from './GridColumnMenuColumnProps';
11
+ import { GridFilterOperators } from './GridFilterOperators';
12
+ /**
13
+ * The props passed to the ColumnMenu filter component.
14
+ */
15
+ export interface GridColumnMenuFilterBaseProps {
16
+ /**
17
+ * Controls the ColumnMenu animation. By default, the opening and closing animations are enabled.
18
+ */
19
+ animate?: boolean | PopupAnimation;
20
+ /**
21
+ * The current column options.
22
+ */
23
+ column: GridColumnMenuColumnProps;
24
+ /**
25
+ * The method that will be called to close the column menu.
26
+ */
27
+ onClosemenu?: Function;
28
+ /**
29
+ * The current filter state of the Grid.
30
+ */
31
+ filter?: CompositeFilterDescriptor;
32
+ /**
33
+ * The filterable option of the column.
34
+ */
35
+ filterable?: boolean | undefined;
36
+ /**
37
+ * The filter operators for the Grid filters.
38
+ */
39
+ filterOperators: GridFilterOperators;
40
+ /**
41
+ * The template that can customize the check all checkbox item.
42
+ */
43
+ checkAllItem?: string | object | Function | boolean;
44
+ /**
45
+ * The template that can customize the checkbox item.
46
+ */
47
+ item?: string | object | Function | boolean;
48
+ /**
49
+ * The trigger focus event.
50
+ */
51
+ onFocus?: (e: any) => void;
52
+ /**
53
+ * The method that will be called to notify the parent Grid about a filter change.
54
+ */
55
+ onFilterchange?: (filter: CompositeFilterDescriptor | null, syntheticEvent: any) => any;
56
+ }
@@ -0,0 +1,34 @@
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 { CompositeFilterDescriptor } from '@progress/kendo-data-query';
9
+ import { GridColumnProps } from './GridColumnProps';
10
+ /**
11
+ * @hidden
12
+ */
13
+ export interface GridColumnMenuFilterProps {
14
+ /**
15
+ * The current column options.
16
+ */
17
+ column: GridColumnProps;
18
+ /**
19
+ * The method that will be called to close the column menu.
20
+ */
21
+ onCloseMenu?: Function;
22
+ /**
23
+ * The current filter state of the Grid.
24
+ */
25
+ filter?: CompositeFilterDescriptor;
26
+ /**
27
+ * The filterable option of the column.
28
+ */
29
+ filterable?: boolean | undefined;
30
+ /**
31
+ * The method that will be called to notify the parent Grid about a filter change.
32
+ */
33
+ onFilterchange?: (filter: CompositeFilterDescriptor | null, event: any) => any;
34
+ }
@@ -0,0 +1,62 @@
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 { GridFilterCellProps } from './GridFilterCellProps';
9
+ /**
10
+ * The props that will be passed to the UI of the ColumnMenu filter component.
11
+ */
12
+ export interface GridColumnMenuFilterUIProps {
13
+ /**
14
+ * The options of the first filter.
15
+ */
16
+ firstFilterProps: GridFilterCellProps;
17
+ /**
18
+ * The options of the second filter.
19
+ */
20
+ secondFilterProps: GridFilterCellProps;
21
+ /**
22
+ * The current value of the filter logic.
23
+ */
24
+ logicValue?: {
25
+ text: string;
26
+ operator: any;
27
+ };
28
+ /**
29
+ * The list of the filter logic options.
30
+ */
31
+ logicData: {
32
+ text: string;
33
+ operator: any;
34
+ }[];
35
+ /**
36
+ * The method that will be called to notify the parent about a change in the filter logic.
37
+ */
38
+ onLogicchange?: (e: any) => void;
39
+ /**
40
+ * The method that will be called to notify the parent about a change in the filter.
41
+ */
42
+ onChange?: (e: any, filterIndex: number) => void;
43
+ /**
44
+ * The trigger focus event.
45
+ */
46
+ onFocus?: (e: any) => void;
47
+ /**
48
+ * Indicates if the second filter will be hidden.
49
+ */
50
+ hideSecondFilter?: boolean;
51
+ /**
52
+ * The list of the default operators for the current filter type.
53
+ */
54
+ operators: Array<{
55
+ text: string;
56
+ operator: any;
57
+ }>;
58
+ /**
59
+ * The method for rendering the cell.
60
+ */
61
+ render?: any;
62
+ }
@@ -0,0 +1,26 @@
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 { GroupDescriptor } from '@progress/kendo-data-query';
9
+ import { GridColumnMenuBaseProps } from './GridColumnMenuBaseProps';
10
+ /**
11
+ * The props passed to the ColumnMenu group component.
12
+ */
13
+ export interface GridColumnMenuGroupBaseProps extends GridColumnMenuBaseProps {
14
+ /**
15
+ * The groupable option of the column.
16
+ */
17
+ groupable?: boolean;
18
+ /**
19
+ * The current group state of the Grid. It takes value of type [GroupDescriptor]({% slug api_kendo-data-query_groupdescriptor %})[]
20
+ */
21
+ group?: GroupDescriptor[];
22
+ /**
23
+ * The method that will be called to notify the parent Grid about a group change.
24
+ */
25
+ onGroupchange?: (groups: GroupDescriptor[], event: any) => void;
26
+ }
@@ -0,0 +1,48 @@
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 { SVGIcon } from '@progress/kendo-vue-common';
9
+ import { GridColumnMenuFilterBaseProps } from './GridColumnMenuFilterBaseProps';
10
+ import { GridColumnMenuSortBaseProps } from './GridColumnMenuSortBaseProps';
11
+ import { SortDescriptor } from '@progress/kendo-data-query';
12
+ /**
13
+ * The props which the ColumnMenu passes to its children.
14
+ */
15
+ export interface GridColumnMenuProps extends GridColumnMenuFilterBaseProps, GridColumnMenuSortBaseProps {
16
+ /**
17
+ * The key of the column menu.
18
+ */
19
+ key?: any;
20
+ /**
21
+ * The method for rendering the column menu.
22
+ */
23
+ render?: any;
24
+ /**
25
+ * The opened column menu.
26
+ */
27
+ opened?: boolean;
28
+ /**
29
+ * The icon that overrides the default(three vertical dots) icon displayed in the column menu of each column.
30
+ */
31
+ columnMenuIcon?: SVGIcon;
32
+ /**
33
+ * The event that is fired when the column menu is focused.
34
+ */
35
+ onContentfocus?: (event: any) => void;
36
+ /**
37
+ * The event that is fired when the column menu is expanded or collapsed.
38
+ */
39
+ onExpandchange?: (event: any) => void;
40
+ /**
41
+ * The event that is fired when the column menu is closed.
42
+ */
43
+ onClose?: (event: any) => void;
44
+ /**
45
+ * The event that is fired when the column menu is about to be sorted.
46
+ */
47
+ onSortchange?: (event: any, sort: SortDescriptor[]) => void;
48
+ }