@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,102 @@
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 { GridColumnMenuFilterBaseProps } from '../interfaces/GridColumnMenuFilterBaseProps';
10
+ import { PropType } from 'vue';
11
+ /**
12
+ * The props of the GridColumnMenuFilter component.
13
+ */
14
+ export interface GridColumnMenuCheckboxFilterProps extends GridColumnMenuFilterBaseProps {
15
+ /**
16
+ * Controls the expand state of the filter component.
17
+ */
18
+ expanded?: boolean;
19
+ /**
20
+ * Sets the items collection that will be rendered by the GridColumnMenuCheckboxFilter component.
21
+ */
22
+ dataItems: Array<string | object>;
23
+ /**
24
+ * Triggered on each subsequent expand state of the filter component.
25
+ */
26
+ expandchange?: (nextExpandState: boolean) => void;
27
+ /**
28
+ * Defines the component that will be rendered as a search box.
29
+ */
30
+ searchBox?: any;
31
+ /**
32
+ * Determines if the data in the component will be unique. By default the property is set to true.
33
+ */
34
+ uniqueData?: boolean;
35
+ }
36
+ /**
37
+ * @hidden
38
+ */
39
+ export interface GridColumnMenuFilterStateProps {
40
+ expanded: boolean;
41
+ value: string;
42
+ dataItems: Array<string | object>;
43
+ dataFromProps: Array<string | object>;
44
+ currentFilter: CompositeFilterDescriptor;
45
+ }
46
+ /**
47
+ * @hidden
48
+ */
49
+ declare const GridColumnMenuCheckboxFilter: {
50
+ name: string;
51
+ props: {
52
+ column: PropType<import('../interfaces/GridColumnMenuColumnProps').GridColumnMenuColumnProps>;
53
+ filter: PropType<CompositeFilterDescriptor>;
54
+ filterable: PropType<boolean>;
55
+ filterOperators: PropType<import('../interfaces/GridFilterOperators').GridFilterOperators>;
56
+ checkAllItem: PropType<string | boolean | object | Function>;
57
+ item: PropType<string | boolean | object | Function>;
58
+ expanded: {
59
+ type: PropType<boolean>;
60
+ default: any;
61
+ };
62
+ dataItems: PropType<(string | object)[]>;
63
+ searchBox: {
64
+ type: PropType<any>;
65
+ default: boolean;
66
+ };
67
+ uniqueData: {
68
+ type: PropType<boolean>;
69
+ default: boolean;
70
+ };
71
+ };
72
+ data(): {
73
+ currentExpanded: boolean;
74
+ currentValue: string;
75
+ currentData: any;
76
+ dataFromProps: any;
77
+ currentFilter: any;
78
+ };
79
+ created(): void;
80
+ updated(): void;
81
+ inject: {
82
+ kendoLocalizationService: {
83
+ default: any;
84
+ };
85
+ };
86
+ setup(): {
87
+ kendoLocalizationService: {};
88
+ };
89
+ render(): import("vue/jsx-runtime").JSX.Element;
90
+ methods: {
91
+ defaultFilter(): any;
92
+ parseData(originalData: any, isUnique: any): any;
93
+ getFilterIndex(): any;
94
+ onFilterExpand(): void;
95
+ handleSearchChange(e: any): void;
96
+ clear(e: any): void;
97
+ submit(e: any): void;
98
+ handleCheckBoxChange(e: any, value: any): void;
99
+ isAllSelected(): boolean;
100
+ };
101
+ };
102
+ export { GridColumnMenuCheckboxFilter };
@@ -0,0 +1,129 @@
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 { GridColumnMenuFilterBaseProps } from '../interfaces/GridColumnMenuFilterBaseProps';
10
+ import { PropType } from 'vue';
11
+ /**
12
+ * @hidden
13
+ */
14
+ export declare const rootFilterOrDefault: (rootFilter: CompositeFilterDescriptor | undefined) => CompositeFilterDescriptor;
15
+ /**
16
+ * Can be used to check if filtering is applied to a specific field ([see example]({% slug column_menu_grid %}#toc-styling-the-column-menu-icon)). Useful for creating active filter indicators.
17
+ */
18
+ export declare const filterGroupByField: (field: string, filter: CompositeFilterDescriptor | undefined) => CompositeFilterDescriptor | null;
19
+ /**
20
+ * The props of the GridColumnMenuFilter component.
21
+ */
22
+ export interface GridColumnMenuFilterProps extends GridColumnMenuFilterBaseProps {
23
+ /**
24
+ * Controls the expand state of the filter component.
25
+ */
26
+ expanded?: boolean;
27
+ /**
28
+ * Triggers on each subsequent expand state of the filter component.
29
+ */
30
+ onExpandchange?: (nextExpandState: boolean) => void;
31
+ /**
32
+ * If set to `false`, the second filter operator and the input will be hidden.
33
+ */
34
+ hideSecondFilter?: boolean;
35
+ filterUI?: any;
36
+ /**
37
+ * Triggers when a filter is focused.
38
+ */
39
+ onFilterfocus?: (e: any) => void;
40
+ }
41
+ /**
42
+ * @hidden
43
+ */
44
+ export interface GridColumnMenuFilterStateProps {
45
+ expanded: boolean;
46
+ filterGroup: CompositeFilterDescriptor;
47
+ }
48
+ /**
49
+ * @hidden
50
+ */
51
+ export interface GridColumnMenuFilterData {
52
+ currentExpanded: boolean;
53
+ filterGroup: any;
54
+ }
55
+ /**
56
+ * Represents the GridColumnMenuFilter component.
57
+ *
58
+ * @hidden
59
+ */
60
+ declare const GridColumnMenuFilter: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
61
+ column: PropType<import('../interfaces/GridColumnMenuColumnProps').GridColumnMenuColumnProps>;
62
+ filter: PropType<CompositeFilterDescriptor>;
63
+ expanded: {
64
+ type: PropType<boolean>;
65
+ default: any;
66
+ };
67
+ filterable: PropType<boolean>;
68
+ filterOperators: {
69
+ type: PropType<import('../interfaces/GridFilterOperators').GridFilterOperators>;
70
+ default: () => import('../interfaces/GridFilterOperators').GridFilterOperators;
71
+ };
72
+ hideSecondFilter: {
73
+ type: PropType<boolean>;
74
+ default: () => any;
75
+ };
76
+ filterUI: PropType<any>;
77
+ onFilterfocus: PropType<(e: any) => void>;
78
+ onFilterchange: PropType<(filter: CompositeFilterDescriptor, syntheticEvent: any) => any>;
79
+ onExpandchange: PropType<(nextExpandState: boolean) => void>;
80
+ onClosemenu: PropType<Function>;
81
+ }>, {
82
+ kendoLocalizationService: {};
83
+ }, {
84
+ currentExpanded: boolean;
85
+ filterGroup: any;
86
+ }, {}, {
87
+ removeGroup(group: CompositeFilterDescriptor, rootFilter: CompositeFilterDescriptor): CompositeFilterDescriptor;
88
+ insertGroup(group: CompositeFilterDescriptor, rootFilter: CompositeFilterDescriptor): CompositeFilterDescriptor;
89
+ isControlled(): boolean;
90
+ onFilterExpand(): void;
91
+ filterChangeHandler(e: any, filterIndex?: number): void;
92
+ firstFilterChange(e: any): void;
93
+ secondFilterChange(e: any): void;
94
+ filterChange(filterIndex: number, e: {
95
+ value: number;
96
+ operator: string;
97
+ }): void;
98
+ logicChange(e: any): void;
99
+ clear(e: any): void;
100
+ currentFilterGroup(): CompositeFilterDescriptor;
101
+ submit(e: any): void;
102
+ handleFocus(e: any): void;
103
+ }, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
104
+ column: PropType<import('../interfaces/GridColumnMenuColumnProps').GridColumnMenuColumnProps>;
105
+ filter: PropType<CompositeFilterDescriptor>;
106
+ expanded: {
107
+ type: PropType<boolean>;
108
+ default: any;
109
+ };
110
+ filterable: PropType<boolean>;
111
+ filterOperators: {
112
+ type: PropType<import('../interfaces/GridFilterOperators').GridFilterOperators>;
113
+ default: () => import('../interfaces/GridFilterOperators').GridFilterOperators;
114
+ };
115
+ hideSecondFilter: {
116
+ type: PropType<boolean>;
117
+ default: () => any;
118
+ };
119
+ filterUI: PropType<any>;
120
+ onFilterfocus: PropType<(e: any) => void>;
121
+ onFilterchange: PropType<(filter: CompositeFilterDescriptor, syntheticEvent: any) => any>;
122
+ onExpandchange: PropType<(nextExpandState: boolean) => void>;
123
+ onClosemenu: PropType<Function>;
124
+ }>> & Readonly<{}>, {
125
+ expanded: boolean;
126
+ filterOperators: import('../interfaces/GridFilterOperators').GridFilterOperators;
127
+ hideSecondFilter: boolean;
128
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
129
+ export { GridColumnMenuFilter };
@@ -13,7 +13,7 @@ import { GridColumnMenuItemGroup as Z } from "./GridColumnMenuItemGroup.mjs";
13
13
  import { GridColumnMenuItemContent as ee } from "./GridColumnMenuItemContent.mjs";
14
14
  import { Button as V } from "@progress/kendo-vue-buttons";
15
15
  import { provideLocalizationService as te } from "@progress/kendo-vue-intl";
16
- import { operatorMap as h, booleanFilterValues as re, filterLogicList as ie, getFilterType as le, getDefaultOperator as oe, operators as ne } from "../filterCommon.mjs";
16
+ import { operatorMap as h, getFilterType as re, getDefaultOperator as ie, operators as le, filterLogicList as oe, booleanFilterValues as ne } from "../filterCommon.mjs";
17
17
  import { filterTitle as T, messages as m, filterSubmitButton as k, filterClearButton as j } from "../messages/main.mjs";
18
18
  import { GridColumnMenuFilterCell as I } from "./GridColumnMenuFilterCell.mjs";
19
19
  import { ColumnMenuFilterOperators as B } from "./GridColumnMenuFilterOperators.mjs";
@@ -38,7 +38,7 @@ const F = (e) => e || {
38
38
  filterOperators: {
39
39
  type: Object,
40
40
  default: function() {
41
- return ne;
41
+ return le;
42
42
  }
43
43
  },
44
44
  hideSecondFilter: {
@@ -66,7 +66,7 @@ const F = (e) => e || {
66
66
  created() {
67
67
  let e;
68
68
  if (this.$props.column && this.$props.column.field) {
69
- const r = le(this.$props.column.filter), t = oe(this.$props.filterOperators, r);
69
+ const r = re(this.$props.column.filter), t = ie(this.$props.filterOperators, r);
70
70
  e = g(this.$props.column.field, this.$props.filter), e = e ? {
71
71
  ...e,
72
72
  filters: e.filters.map((i) => ({
@@ -202,7 +202,7 @@ const F = (e) => e || {
202
202
  } = this.$props;
203
203
  if (!t || !t.field)
204
204
  return o("div", null, null);
205
- const f = t.filter || "text", s = te(this), c = this.filterGroup.filters, d = h(n[f], s), C = h(re, s), u = {
205
+ const f = t.filter || "text", s = te(this), c = this.filterGroup.filters, d = h(n[f], s), C = h(ne, s), u = {
206
206
  field: t.field,
207
207
  value: c[0].value,
208
208
  operator: c[0].operator,
@@ -214,7 +214,7 @@ const F = (e) => e || {
214
214
  operator: c[1].operator,
215
215
  booleanValues: C,
216
216
  filterType: f
217
- }, v = this.filterGroup.logic, $ = h(ie, s), G = {
217
+ }, v = this.filterGroup.logic, $ = h(oe, s), G = {
218
218
  value: $.find((a) => a.operator === (v === null ? "" : v)),
219
219
  data: $
220
220
  }, D = this.currentFilterGroup().filters.length !== 0, E = this.isControlled() ? this.$props.expanded : this.currentExpanded, z = u.field, H = u.value, x = u.operator, P = u.booleanValues, b = u.filterType, R = p.field, U = p.value, y = p.operator, _ = p.booleanValues, O = p.filterType, w = i && Q.call(this, i, W.call(this)), N = X.call(this, {
@@ -0,0 +1,65 @@
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 '../interfaces/GridFilterOperator';
9
+ import { PropType } from 'vue';
10
+ /**
11
+ * @hidden
12
+ */
13
+ export interface ColumnMenuFilterCellProps {
14
+ field?: string;
15
+ filterType: string;
16
+ value: any;
17
+ operator: string;
18
+ operators: Array<{
19
+ text: string;
20
+ operator: any;
21
+ }>;
22
+ booleanValues: GridFilterOperator[];
23
+ onFocus?: (e: any) => void;
24
+ onChange?: (event: {
25
+ value: any;
26
+ operator: string | Function;
27
+ syntheticEvent: any;
28
+ }) => void;
29
+ }
30
+ /**
31
+ * @hidden
32
+ */
33
+ declare const GridColumnMenuFilterCell: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
34
+ field: PropType<string>;
35
+ filterType: PropType<string>;
36
+ value: PropType<any>;
37
+ operator: PropType<string>;
38
+ operators: PropType<{
39
+ text: string;
40
+ operator: any;
41
+ }[]>;
42
+ booleanValues: PropType<GridFilterOperator[]>;
43
+ }>, {}, {}, {}, {
44
+ handleFocus(e: any): void;
45
+ triggerChange(filter: any): void;
46
+ inputChange(value: any, e: any): void;
47
+ boolDropdownChange(value: any, e: any): void;
48
+ }, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
49
+ change: any;
50
+ filtercellfocus: any;
51
+ }, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
52
+ field: PropType<string>;
53
+ filterType: PropType<string>;
54
+ value: PropType<any>;
55
+ operator: PropType<string>;
56
+ operators: PropType<{
57
+ text: string;
58
+ operator: any;
59
+ }[]>;
60
+ booleanValues: PropType<GridFilterOperator[]>;
61
+ }>> & Readonly<{
62
+ onChange?: (...args: any[] | unknown[]) => any;
63
+ onFiltercellfocus?: (...args: any[] | unknown[]) => any;
64
+ }>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
65
+ export { GridColumnMenuFilterCell };
@@ -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 { PropType } from 'vue';
9
+ /**
10
+ * @hidden
11
+ */
12
+ export interface ColumnMenuFilterOperatorsProps {
13
+ filterType: string;
14
+ operator: string;
15
+ operators: Array<{
16
+ text: string;
17
+ operator: any;
18
+ }>;
19
+ onChange?: (event: {
20
+ value: any;
21
+ operator: string | Function;
22
+ }) => void;
23
+ }
24
+ /**
25
+ * @hidden
26
+ */
27
+ declare const ColumnMenuFilterOperators: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
28
+ filterType: PropType<string>;
29
+ operator: PropType<string>;
30
+ operators: PropType<{
31
+ text: string;
32
+ operator: any;
33
+ }[]>;
34
+ }>, {}, {}, {}, {
35
+ triggerChange(filter: any): void;
36
+ operatorChange(operatorValue: any, e: any): void;
37
+ }, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
38
+ change: any;
39
+ }, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
40
+ filterType: PropType<string>;
41
+ operator: PropType<string>;
42
+ operators: PropType<{
43
+ text: string;
44
+ operator: any;
45
+ }[]>;
46
+ }>> & Readonly<{
47
+ onChange?: (...args: any[] | unknown[]) => any;
48
+ }>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
49
+ export { ColumnMenuFilterOperators };
@@ -0,0 +1,59 @@
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 { PropType } from 'vue';
9
+ /**
10
+ * @hidden
11
+ */
12
+ declare const GridColumnMenuFilterUI: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
13
+ firstFilterProps: PropType<import('..').GridFilterCellProps>;
14
+ secondFilterProps: PropType<import('..').GridFilterCellProps>;
15
+ logicValue: PropType<{
16
+ text: string;
17
+ operator: any;
18
+ }>;
19
+ logicData: PropType<{
20
+ text: string;
21
+ operator: any;
22
+ }[]>;
23
+ hideSecondFilter: PropType<boolean>;
24
+ operators: PropType<{
25
+ text: string;
26
+ operator: any;
27
+ }[]>;
28
+ render: PropType<any>;
29
+ }>, {}, {}, {}, {
30
+ handleFocus(e: any): void;
31
+ changeHandler(e: any, filterIndex: number): void;
32
+ logicChange(e: any): void;
33
+ }, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
34
+ change: any;
35
+ filteruifocus: any;
36
+ logicChange: any;
37
+ }, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
38
+ firstFilterProps: PropType<import('..').GridFilterCellProps>;
39
+ secondFilterProps: PropType<import('..').GridFilterCellProps>;
40
+ logicValue: PropType<{
41
+ text: string;
42
+ operator: any;
43
+ }>;
44
+ logicData: PropType<{
45
+ text: string;
46
+ operator: any;
47
+ }[]>;
48
+ hideSecondFilter: PropType<boolean>;
49
+ operators: PropType<{
50
+ text: string;
51
+ operator: any;
52
+ }[]>;
53
+ render: PropType<any>;
54
+ }>> & Readonly<{
55
+ onChange?: (...args: any[] | unknown[]) => any;
56
+ onLogicChange?: (...args: any[] | unknown[]) => any;
57
+ onFilteruifocus?: (...args: any[] | unknown[]) => any;
58
+ }>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
59
+ export { GridColumnMenuFilterUI };
@@ -0,0 +1,60 @@
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-svg-icons';
9
+ import { PropType } from 'vue';
10
+ /**
11
+ * The props of the GridColumnMenuItem component.
12
+ */
13
+ export interface GridColumnMenuItemProps {
14
+ /**
15
+ * Triggered on each click on the title.
16
+ */
17
+ onClick?: Function;
18
+ /**
19
+ * The title of the GridColumnMenuItem component.
20
+ */
21
+ title: string;
22
+ /**
23
+ * The class of the icon rendered next to the title.
24
+ */
25
+ iconClass: string;
26
+ /**
27
+ * Defines the name for the icon.
28
+ */
29
+ icon?: string;
30
+ /**
31
+ * Defines the svg icon in a Kendo UI for Vue theme.
32
+ */
33
+ svgIcon?: SVGIcon;
34
+ /**
35
+ * The selected state of the component.
36
+ */
37
+ selected?: boolean;
38
+ }
39
+ /**
40
+ * @hidden
41
+ */
42
+ declare const GridColumnMenuItem: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
43
+ title: PropType<string>;
44
+ iconClass: PropType<string>;
45
+ icon: PropType<string>;
46
+ svgIcon: PropType<SVGIcon>;
47
+ selected: PropType<boolean>;
48
+ onMenuitemclick: PropType<Function>;
49
+ }>, {}, {}, {}, {
50
+ onClick(e: any): void;
51
+ onKeyDown(event: any): void;
52
+ }, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
53
+ title: PropType<string>;
54
+ iconClass: PropType<string>;
55
+ icon: PropType<string>;
56
+ svgIcon: PropType<SVGIcon>;
57
+ selected: PropType<boolean>;
58
+ onMenuitemclick: PropType<Function>;
59
+ }>> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
60
+ export { GridColumnMenuItem };
@@ -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 { PropType } from 'vue';
9
+ /**
10
+ * The props of the GridColumnMenuItemContent component.
11
+ */
12
+ export interface GridColumnMenuItemContentProps {
13
+ /**
14
+ * The `show` state of the component. Each change is animated with the Reveal animation.
15
+ */
16
+ show: boolean;
17
+ }
18
+ /**
19
+ * @hidden
20
+ */
21
+ declare const GridColumnMenuItemContent: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
22
+ show: PropType<boolean>;
23
+ }>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
24
+ show: PropType<boolean>;
25
+ }>> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
26
+ export { GridColumnMenuItemContent };
@@ -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
+ * @hidden
10
+ */
11
+ declare const GridColumnMenuItemGroup: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
12
+ export { GridColumnMenuItemGroup };
@@ -0,0 +1,46 @@
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 { GridColumnMenuSortBaseProps } from '../interfaces/GridColumnMenuSortBaseProps';
10
+ import { PropType } from 'vue';
11
+ /**
12
+ * Can be used to check if sorting is applied to a specific field ([see example]({% slug column_menu_grid %}#toc-styling-the-column-menu-icon)). Useful for creating active sort indicators.
13
+ */
14
+ export declare const sortGroupByField: (field: string, sort?: SortDescriptor[]) => boolean;
15
+ /**
16
+ * The props of the GridColumnMenuSort component.
17
+ */
18
+ export interface GridColumnMenuSortProps extends GridColumnMenuSortBaseProps {
19
+ }
20
+ /**
21
+ * @hidden
22
+ */
23
+ declare const GridColumnMenuSort: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
24
+ sortable: PropType<import('../interfaces/GridSortSettings').GridSortSettings>;
25
+ sort: {
26
+ type: PropType<SortDescriptor[]>;
27
+ };
28
+ column: PropType<import('../interfaces/GridColumnMenuColumnProps').GridColumnMenuColumnProps>;
29
+ onSortchange: PropType<(descriptors: SortDescriptor[], e: any) => void>;
30
+ onClosemenu: PropType<Function>;
31
+ }>, {
32
+ kendoLocalizationService: {};
33
+ }, {}, {}, {
34
+ onAscClick(e: any): void;
35
+ onDescClick(e: any): void;
36
+ onSort(e: any, selectedDir: 'asc' | 'desc'): void;
37
+ }, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
38
+ sortable: PropType<import('../interfaces/GridSortSettings').GridSortSettings>;
39
+ sort: {
40
+ type: PropType<SortDescriptor[]>;
41
+ };
42
+ column: PropType<import('../interfaces/GridColumnMenuColumnProps').GridColumnMenuColumnProps>;
43
+ onSortchange: PropType<(descriptors: SortDescriptor[], e: any) => void>;
44
+ onClosemenu: PropType<Function>;
45
+ }>> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
46
+ export { GridColumnMenuSort };