@progress/kendo-vue-grid 8.0.3-develop.1 → 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,35 @@
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 { SortDescriptor } from '@progress/kendo-data-query';
9
+ import { GridSortSettings } from './GridSortSettings';
10
+ import { GridColumnMenuColumnProps } from './GridColumnMenuColumnProps';
11
+ /**
12
+ * The props passed to the ColumnMenu sort component.
13
+ */
14
+ export interface GridColumnMenuSortBaseProps {
15
+ /**
16
+ * The current column options.
17
+ */
18
+ column: GridColumnMenuColumnProps;
19
+ /**
20
+ * The method that will be called to close the column menu.
21
+ */
22
+ onClosemenu?: Function;
23
+ /**
24
+ * The sortable option of the column.
25
+ */
26
+ sortable?: GridSortSettings;
27
+ /**
28
+ * The current sort state of the Grid.
29
+ */
30
+ sort?: SortDescriptor[];
31
+ /**
32
+ * The method that will be called to notify the parent Grid about a sort change.
33
+ */
34
+ onSortchange?: (descriptors: SortDescriptor[], e: any) => void;
35
+ }
@@ -0,0 +1,207 @@
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 { GridRowSpannableSettings } from './GridRowSpannableSettings';
10
+ import { GridColSpanProps } from './GridColSpanProps';
11
+ import { GridDataType } from './GridDataType';
12
+ import { GridColumnSortSettings } from './GridSortSettings';
13
+ import { ColumnBaseProps } from '@progress/kendo-vue-data-tools';
14
+ import { GridColumnType } from './ColumnType';
15
+ import { GridHeaderCellProps } from './GridHeaderCellProps';
16
+ import { GridCellProps } from './GridCellProps';
17
+ import { GridFilterCellProps } from './GridFilterCellProps';
18
+ import { GridFooterCellProps } from './GridFooterCellProps';
19
+ /**
20
+ * The props that can be assigned to the Grid column.
21
+ */
22
+ export interface GridColumnProps extends Omit<ColumnBaseProps, 'cell'> {
23
+ /**
24
+ * The field to which the column is bound.
25
+ */
26
+ field?: string;
27
+ /**
28
+ * The title of the column.
29
+ */
30
+ title?: string;
31
+ /**
32
+ * Defines whether the column is editable
33
+ * ([more information and examples]({% slug editing_inline_grid %})).
34
+ */
35
+ editable?: boolean;
36
+ /**
37
+ * Allows the column headers to be clicked and the `sortChange` event emitted.
38
+ * You have to handle the `sortChange` event yourself and sort the data.
39
+ *
40
+ * @default true
41
+ */
42
+ sortable?: GridColumnSortSettings;
43
+ /**
44
+ * Defines the custom rendering of the cell. Accepts a Vue component, a `render` function, or a slot name.
45
+ * If not set, a `GridCell` will be rendered by default.
46
+ */
47
+ cell?: ((h: any, defaultRendering: any | null, props: GridCellProps, listeners: any) => any) | string | any;
48
+ /**
49
+ * @hidden
50
+ */
51
+ internalCell?: any;
52
+ /**
53
+ * @hidden
54
+ */
55
+ internalHeaderCell?: any;
56
+ /**
57
+ * Defines the custom rendering of the filter cell. Accepts a Vue component, a `render` function, or a slot name.
58
+ * If not set, a `GridFilterCell` will be rendered by default.
59
+ */
60
+ filterCell?: ((h: any, defaultRendering: any | null, props: GridFilterCellProps, listeners: any) => any) | string | any;
61
+ /**
62
+ * Defines if a filter UI will be rendered for this column.
63
+ *
64
+ * @default true
65
+ */
66
+ filterable?: boolean;
67
+ /**
68
+ * Defines the title which will be set to the input element in the filter cell.
69
+ *
70
+ */
71
+ filterTitle?: string;
72
+ /**
73
+ * Defines the filter type that will be rendered inside the filter row.
74
+ *
75
+ * @default 'text'
76
+ */
77
+ filter?: GridDataType;
78
+ /**
79
+ * Defines the editor type. Used when the column enters the edit mode ([more information and examples]({% slug editing_inline_grid %})).
80
+ *
81
+ * @default 'text'
82
+ */
83
+ editor?: GridDataType;
84
+ /**
85
+ * Overrides the default(three vertical dots) column menu icon or the icon set through the ([`columnMenuIcon`]({% slug api_grid_gridprops %}#toc-columnmenuicon)) property.
86
+ */
87
+ menuIcon?: SVGIcon;
88
+ /**
89
+ * The width of the column (in pixels).
90
+ */
91
+ width?: string | number;
92
+ /**
93
+ * The width of the column (in pixels) below which the user is not able to resize the column through the UI.
94
+ * Defaults to `10`. It is responsible only for the minimal width that is observed after the manual drag and it is
95
+ * not responsible for the width of the columns when the browser is resized
96
+ */
97
+ minResizableWidth?: number;
98
+ /**
99
+ * Defines the custom rendering of the header cell. Accepts a Vue component, a `render` function, or a slot name.
100
+ * If not set, a `GridHeaderCell` will be rendered by default.
101
+ */
102
+ headerCell?: ((h: any, defaultRendering: any | null, props: GridHeaderCellProps, listeners: any) => any) | string | any;
103
+ /**
104
+ * Defines the custom rendering of the footer cell.
105
+ * The footer cell have to render an `HTMLTableCellElement` (TD element) and
106
+ * apply its `style` and `colspan` values from the footer component `props`.
107
+ * Accepts a Vue component, a `render` function, or a slot name.
108
+ */
109
+ footerCell?: ((h: any, defaultRendering: any | null, props: GridFooterCellProps, listeners: any) => any) | string | any;
110
+ /**
111
+ * Sets the custom CSS classes to the column footer cell if there is footer.
112
+ */
113
+ footerClassName?: string;
114
+ /**
115
+ * Defines if the header selection checkbox is checked.
116
+ */
117
+ headerSelectionValue?: boolean;
118
+ /**
119
+ * The format that is applied to the value before it is displayed. Takes the `{0:format}`
120
+ * form where `format` is any of the following:
121
+ * * A standard number format
122
+ * * A custom number format
123
+ * * A standard date format
124
+ * * A custom date format
125
+ *
126
+ * For more information on the supported date and number formats,
127
+ * refer to the [kendo-intl](https://github.com/telerik/kendo-intl/blob/develop/docs/index.md) documentation.
128
+ */
129
+ format?: string;
130
+ /**
131
+ * Sets the colSpan of the column which will make the row content span over multiple cells.
132
+ * As arguments, it takes either a number or a function that returns a number.
133
+ *
134
+ * @default 1
135
+ */
136
+ colSpan?: number | ((colSpanProps: GridColSpanProps) => number);
137
+ /**
138
+ * Controls the visibility of the Grid's column.
139
+ *
140
+ * @default false
141
+ */
142
+ hidden?: boolean;
143
+ /**
144
+ * Sets the screen size condition that needs to be satisfied for a column to remain visible. If you set the hidden property, the behavior of media is overridden.
145
+ *
146
+ */
147
+ media?: string;
148
+ /**
149
+ * Sets the custom CSS classes to the column header cell.
150
+ */
151
+ headerClassName?: string;
152
+ /**
153
+ * Sets the custom CSS classes to the column cells.
154
+ */
155
+ className?: string;
156
+ /**
157
+ * Indicates whether the column is reorderable.
158
+ */
159
+ reorderable?: boolean;
160
+ /**
161
+ * Indicates whether the column is resizable.
162
+ */
163
+ resizable?: boolean;
164
+ /**
165
+ * Determinates the position of the column. Columns with smaller `orderIndex` will appear
166
+ * before columns with bigger `orderIndex`. Defaults to `0`.
167
+ */
168
+ orderIndex?: number;
169
+ /**
170
+ * Determines if the column can be dragged to the group panel. Defaults to `true`.
171
+ */
172
+ groupable?: boolean;
173
+ /**
174
+ * A collection of child columns.
175
+ */
176
+ children?: (GridColumnProps)[] | (any)[];
177
+ /**
178
+ * Defines if the column menu will be shown for the column.
179
+ * Accepts Boolean, a Vue component, a `render` function, or a slot name
180
+ */
181
+ columnMenu?: boolean | any;
182
+ /**
183
+ * Defines if the column menu is opened.
184
+ */
185
+ columnMenuOpened?: boolean;
186
+ /**
187
+ *
188
+ */
189
+ locked?: boolean;
190
+ /**
191
+ * The type of the data which will be used when formatting the cell data.
192
+ * Could be one of the following values 'string' | 'number' | 'boolean' | 'date'.
193
+ * Defaults to `string`.
194
+ */
195
+ type?: 'string' | 'number' | 'boolean' | 'date';
196
+ /**
197
+ * Sets the type of the column and renders a dedicated column for interaction.
198
+ *
199
+ * @default "data"
200
+ */
201
+ columnType?: GridColumnType;
202
+ /**
203
+ * Defines if the cells of the column should be spanned when their values are the same.
204
+ *
205
+ */
206
+ rowSpannable?: boolean | GridRowSpannableSettings;
207
+ }
@@ -0,0 +1,44 @@
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 state of the GridColumn
10
+ */
11
+ export interface GridColumnState {
12
+ /**
13
+ * The id of the column.
14
+ */
15
+ id: string;
16
+ /**
17
+ * The field of the column.
18
+ */
19
+ field?: string;
20
+ /**
21
+ * The title of the column.
22
+ */
23
+ title?: string;
24
+ /**
25
+ * The value indicating whether a column is visible or not.
26
+ */
27
+ hidden?: boolean;
28
+ /**
29
+ * The width of the column (in pixels).
30
+ */
31
+ width?: string | number;
32
+ /**
33
+ * The position of the column.
34
+ */
35
+ orderIndex?: number;
36
+ /**
37
+ * A collection of child states.
38
+ */
39
+ children?: GridColumnState[];
40
+ /**
41
+ * Determines if the column is locked to the left or right side of the grid.
42
+ */
43
+ locked?: boolean;
44
+ }
@@ -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
+ * Exposes the data types available when setting the [filter](slug:api_grid_gridcolumnprops#toc-filter) or
10
+ * [editor](slug:api_grid_gridcolumnprops#toc-editor) property of the Grid columns.
11
+ */
12
+ export type GridDataType = 'text' | 'numeric' | 'boolean' | 'date';
@@ -0,0 +1,11 @@
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 { TableExpandableSettings } from '@progress/kendo-vue-data-tools';
9
+ /** @hidden */
10
+ export interface GridDetailExpandableSettings extends TableExpandableSettings {
11
+ }
@@ -0,0 +1,16 @@
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 GridDetailRowProps {
12
+ /**
13
+ * The data object that represents the current row.
14
+ */
15
+ dataItem: any;
16
+ }
@@ -0,0 +1,16 @@
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 { TableEditableSettings } from '@progress/kendo-vue-data-tools';
9
+ /**
10
+ * Represents the Grid editable settings:
11
+ * - `enabled` &mdash; Determines if the editing is enabled.
12
+ * - `mode` &mdash; Determines the editing mode.
13
+ *
14
+ */
15
+ export interface GridEditableSettings extends TableEditableSettings {
16
+ }
@@ -0,0 +1,86 @@
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 { GridFilterOperator } from './GridFilterOperator';
9
+ import { GridFilterOperators } from './GridFilterOperators';
10
+ /**
11
+ * The props of the GridFilterCell component
12
+ * ([more information and examples]({% slug filtering_grid %})).
13
+ */
14
+ /**
15
+ * @hidden
16
+ */
17
+ export interface GridFilterCellProps {
18
+ /**
19
+ * @hidden
20
+ */
21
+ id: string;
22
+ /**
23
+ * The instance of the Grid component.
24
+ */
25
+ grid?: any;
26
+ /**
27
+ * The title of the filter editor.
28
+ */
29
+ title?: string;
30
+ /**
31
+ * The column span of the cell.
32
+ */
33
+ colSpan?: number;
34
+ /**
35
+ * The column field in which the cell is located.
36
+ */
37
+ field?: string;
38
+ /**
39
+ * The type of the filter. Determines which editor will be rendered for filtering.
40
+ * The supported values are the following 0 'text' | 'numeric' | 'boolean' | 'date;
41
+ */
42
+ filterType: string;
43
+ /**
44
+ * The value of the cell.
45
+ */
46
+ value: any;
47
+ /**
48
+ * The operator that will be used for the cell filtering.
49
+ */
50
+ operator: string;
51
+ /**
52
+ * The list of the default operators for the current filter type.
53
+ */
54
+ operators: GridFilterOperators[];
55
+ /**
56
+ * The list of values for the Boolean filter.
57
+ */
58
+ booleanValues: GridFilterOperator[];
59
+ /**
60
+ * The method that will be called if the cell needs to inform its parent Grid about a change.
61
+ */
62
+ onChange?: (event: {
63
+ value: any;
64
+ operator: string | Function;
65
+ event: any;
66
+ }) => void;
67
+ /**
68
+ * The method for rendering the filter cell.
69
+ */
70
+ render?: any;
71
+ /**
72
+ * The ariaLabel of the filter editor.
73
+ */
74
+ ariaLabel?: string;
75
+ /**
76
+ * Configures the `size` of the cell.
77
+ *
78
+ * The available options are:
79
+ * - small
80
+ * - medium
81
+ * - large
82
+ *
83
+ * @default `undefined`
84
+ */
85
+ size?: 'small' | 'medium' | 'large';
86
+ }
@@ -0,0 +1,14 @@
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 filter operator for the Grid filters.
10
+ */
11
+ export interface GridFilterOperator {
12
+ text: string;
13
+ operator: any;
14
+ }
@@ -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 { GridFilterOperator } from './GridFilterOperator';
9
+ /**
10
+ * The filter operators for the Grid filters.
11
+ *
12
+ * @example
13
+ * ```jsx-no-run
14
+ * // Default Grid filter operators:
15
+ * const filterOperators: {
16
+ * 'text': [
17
+ * { text: 'grid.filterContainsOperator', operator: 'contains' },
18
+ * { text: 'grid.filterNotContainsOperator', operator: 'doesnotcontain' },
19
+ * { text: 'grid.filterEqOperator', operator: 'eq' },
20
+ * { text: 'grid.filterNotEqOperator', operator: 'neq' },
21
+ * { text: 'grid.filterStartsWithOperator', operator: 'startswith' },
22
+ * { text: 'grid.filterEndsWithOperator', operator: 'endswith' },
23
+ * { text: 'grid.filterIsNullOperator', operator: 'isnull' },
24
+ * { text: 'grid.filterIsNotNullOperator', operator: 'isnotnull' },
25
+ * { text: 'grid.filterIsEmptyOperator', operator: 'isempty' },
26
+ * { text: 'grid.filterIsNotEmptyOperator', operator: 'isnotempty' }
27
+ * ],
28
+ * 'numeric': [
29
+ * { text: 'grid.filterEqOperator', operator: 'eq' },
30
+ * { text: 'grid.filterNotEqOperator', operator: 'neq' },
31
+ * { text: 'grid.filterGteOperator', operator: 'gte' },
32
+ * { text: 'grid.filterGtOperator', operator: 'gt' },
33
+ * { text: 'grid.filterLteOperator', operator: 'lte' },
34
+ * { text: 'grid.filterLtOperator', operator: 'lt' },
35
+ * { text: 'grid.filterIsNullOperator', operator: 'isnull' },
36
+ * { text: 'grid.filterIsNotNullOperator', operator: 'isnotnull' }
37
+ * ],
38
+ * 'date': [
39
+ * { text: 'grid.filterEqOperator', operator: 'eq' },
40
+ * { text: 'grid.filterNotEqOperator', operator: 'neq' },
41
+ * { text: 'grid.filterAfterOrEqualOperator', operator: 'gte' },
42
+ * { text: 'grid.filterAfterOperator', operator: 'gt' },
43
+ * { text: 'grid.filterBeforeOperator', operator: 'lt' },
44
+ * { text: 'grid.filterBeforeOrEqualOperator', operator: 'lte' },
45
+ * { text: 'grid.filterIsNullOperator', operator: 'isnull' },
46
+ * { text: 'grid.filterIsNotNullOperator', operator: 'isnotnull' }
47
+ * ],
48
+ * 'boolean': [
49
+ * { text: 'grid.filterEqOperator', operator: 'eq' }
50
+ * ]
51
+ * }
52
+ * ```
53
+ */
54
+ export interface GridFilterOperators {
55
+ [type: string]: GridFilterOperator[];
56
+ }
@@ -0,0 +1,14 @@
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
+ export interface GridFooterCellProps {
9
+ /**
10
+ * The field to which the footer cell is bound.
11
+ */
12
+ field?: string;
13
+ colSpan?: number;
14
+ }
@@ -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 { TableGroupExpandableSettings } from '@progress/kendo-vue-data-tools';
9
+ /**
10
+ * Represents the Grid group expandable settings.
11
+ */
12
+ export interface GridGroupExpandableSettings extends TableGroupExpandableSettings {
13
+ /**
14
+ * Determines the default expand state for groups.
15
+ * When set to `true`, all groups are expanded by default.
16
+ */
17
+ defaultExpand?: boolean;
18
+ /**
19
+ * Determines if group expanding functionality is enabled.
20
+ */
21
+ enabled?: boolean;
22
+ }
@@ -0,0 +1,27 @@
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 { GridGroupExpandableSettings } from './GridGroupExpandableSettings';
9
+ /**
10
+ * The settings for grouping the data of the Grid
11
+ * ([see example]({% slug groupingaggregates_grid %})).
12
+ */
13
+ export interface GridGroupableSettings {
14
+ /**
15
+ * Determines if grouping by dragging and dropping the column headers is allowed
16
+ * and if the group header is visible.
17
+ */
18
+ enabled?: boolean;
19
+ /**
20
+ * Determines if the group footer row is visible when the group is collapsed. Defaults to `false`.
21
+ */
22
+ footer?: 'always' | 'visible' | 'none';
23
+ /**
24
+ * The group expandable settings.
25
+ */
26
+ expandable?: boolean | GridGroupExpandableSettings;
27
+ }
@@ -0,0 +1,44 @@
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 { GridSortSettings } from '../interfaces/GridSortSettings';
9
+ /**
10
+ * The props of the GridHeaderCellProps component.
11
+ */
12
+ /**
13
+ * @hidden
14
+ */
15
+ export interface GridHeaderCellProps {
16
+ /**
17
+ * The key in which the cell is located.
18
+ */
19
+ key?: any;
20
+ /**
21
+ * The column field in which the cell is located.
22
+ */
23
+ field?: string;
24
+ /**
25
+ * The title of the column in which the cell is located.
26
+ */
27
+ title?: string;
28
+ /**
29
+ * The `click` event handler of the cell.
30
+ */
31
+ onClick?: any;
32
+ /**
33
+ * @hidden
34
+ */
35
+ selectionValue?: any;
36
+ /**
37
+ * The method for rendering the header cell.
38
+ */
39
+ sortable?: GridSortSettings;
40
+ /**
41
+ * The method for rendering the cell.
42
+ */
43
+ render?: any;
44
+ }
@@ -0,0 +1,24 @@
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 { GridHeaderCellProps } from './GridHeaderCellProps';
9
+ /**
10
+ * The props of the GridHeaderSelectionCellProps component.
11
+ */
12
+ /**
13
+ * @hidden
14
+ */
15
+ export interface GridHeaderSelectionCellProps extends GridHeaderCellProps {
16
+ /**
17
+ * The `selectionChange` event handler of the cell.
18
+ */
19
+ selectionChange?: any;
20
+ /**
21
+ * The `selectionValue` event handler of the column in which the cell is located.
22
+ */
23
+ selectionValue: any;
24
+ }
@@ -0,0 +1,10 @@
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
+ export type GridHighlightDescriptor = {
9
+ [id: string]: boolean | number[];
10
+ };
@@ -0,0 +1,16 @@
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 props of the GridNoRecords component.
10
+ */
11
+ export interface GridNoRecordsProps {
12
+ /**
13
+ * The Vue slots that will be rendered inside the Grid when no records are available.
14
+ */
15
+ children?: any;
16
+ }