@progress/kendo-vue-data-tools 8.0.3-develop.2 → 8.0.3-develop.4

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 (102) hide show
  1. package/cells/FilterCell.d.ts +64 -0
  2. package/columnmenu/ColumnMenu.d.ts +67 -0
  3. package/columnmenu/ColumnMenuCheckboxFilter.d.ts +112 -0
  4. package/columnmenu/ColumnMenuContent.d.ts +61 -0
  5. package/columnmenu/ColumnMenuFilter.d.ts +122 -0
  6. package/columnmenu/ColumnMenuFilterCell.d.ts +65 -0
  7. package/columnmenu/ColumnMenuFilterOperators.d.ts +49 -0
  8. package/columnmenu/ColumnMenuFilterUI.d.ts +59 -0
  9. package/columnmenu/ColumnMenuItem.d.ts +68 -0
  10. package/columnmenu/ColumnMenuItemContent.d.ts +26 -0
  11. package/columnmenu/ColumnMenuItemGroup.d.ts +12 -0
  12. package/columnmenu/ColumnMenuOperators.d.ts +72 -0
  13. package/columnmenu/ColumnMenuSort.d.ts +46 -0
  14. package/columnmenu/index.d.ts +9 -0
  15. package/columnmenu/main.d.ts +9 -0
  16. package/detail-expansion/TableExpandableSettings.d.ts +12 -0
  17. package/detail-expansion/expandReducer.d.ts +31 -0
  18. package/detail-expansion/utils.d.ts +10 -0
  19. package/dist/cdn/js/kendo-vue-datatools.js +1 -1
  20. package/drag/ColumnDraggable.d.ts +34 -0
  21. package/drag/ColumnResize.d.ts +38 -0
  22. package/drag/ColumnResizer.d.ts +27 -0
  23. package/drag/CommonDragLogic.d.ts +43 -0
  24. package/drag/DragClue.d.ts +18 -0
  25. package/drag/DropClue.d.ts +17 -0
  26. package/editing/TableEditableSettings.d.ts +24 -0
  27. package/editing/editReducer.d.ts +62 -0
  28. package/editing/utils.d.ts +12 -0
  29. package/filter/Expression.d.ts +70 -0
  30. package/filter/FieldSettings.d.ts +29 -0
  31. package/filter/Filter.d.ts +102 -0
  32. package/filter/GroupFilters.d.ts +77 -0
  33. package/filter/GroupToolbar.d.ts +90 -0
  34. package/filter/filters/BooleanFilter.d.ts +75 -0
  35. package/filter/filters/DateFilter.d.ts +37 -0
  36. package/filter/filters/EnumFilter.d.ts +60 -0
  37. package/filter/filters/NumericFilter.d.ts +37 -0
  38. package/filter/filters/TextFilter.d.ts +54 -0
  39. package/filter/filters/main.d.ts +12 -0
  40. package/filter/main.d.ts +13 -0
  41. package/filter/operators.d.ts +80 -0
  42. package/filterCommon.d.ts +82 -0
  43. package/group-expansion/TableGroupExpandableSettings.d.ts +12 -0
  44. package/group-expansion/groupExpandReducer.d.ts +46 -0
  45. package/header/FilterRow.d.ts +55 -0
  46. package/header/Header.d.ts +70 -0
  47. package/header/HeaderCell.d.ts +34 -0
  48. package/header/HeaderRow.d.ts +125 -0
  49. package/header/HeaderSelectionCell.d.ts +34 -0
  50. package/header/HeaderTdElement.d.ts +49 -0
  51. package/header/HeaderThElement.d.ts +67 -0
  52. package/header/main.d.ts +18 -0
  53. package/header/utils/main.d.ts +90 -0
  54. package/index.d.mts +46 -2822
  55. package/index.d.ts +46 -2822
  56. package/index.js +1 -1
  57. package/index.mjs +38 -38
  58. package/interfaces/CellProps.d.ts +70 -0
  59. package/interfaces/ColumnMenuColumnProps.d.ts +20 -0
  60. package/interfaces/ColumnMenuExtendedFilterProps.d.ts +49 -0
  61. package/interfaces/ColumnMenuFilterBaseProps.d.ts +56 -0
  62. package/interfaces/ColumnMenuFilterProps.d.ts +34 -0
  63. package/interfaces/ColumnMenuFilterUIProps.d.ts +62 -0
  64. package/interfaces/ColumnMenuProps.d.ts +30 -0
  65. package/interfaces/ColumnMenuSortBaseProps.d.ts +35 -0
  66. package/interfaces/ColumnProps.d.ts +155 -0
  67. package/interfaces/FilterCellProps.d.ts +90 -0
  68. package/interfaces/FilterOperator.d.ts +20 -0
  69. package/interfaces/FilterOperators.d.ts +56 -0
  70. package/interfaces/HeaderCellProps.d.ts +48 -0
  71. package/interfaces/HeaderSelectionCellProps.d.ts +24 -0
  72. package/interfaces/SortSettings.d.ts +33 -0
  73. package/messages/main.d.ts +434 -0
  74. package/navigation/TableKeyboardNavigation.d.ts +78 -0
  75. package/navigation/TableKeyboardNavigationContextType.d.ts +14 -0
  76. package/navigation/TableKeyboardNavigationStateType.d.ts +17 -0
  77. package/navigation/constants.d.ts +61 -0
  78. package/navigation/utils.d.ts +168 -0
  79. package/package-metadata.d.ts +12 -0
  80. package/package-metadata.js +1 -1
  81. package/package-metadata.mjs +2 -2
  82. package/package.json +18 -12
  83. package/pager/GridPagerSettings.d.ts +69 -0
  84. package/pager/Page.d.ts +20 -0
  85. package/pager/Pager.d.ts +135 -0
  86. package/pager/PagerInfo.d.ts +53 -0
  87. package/pager/PagerInput.d.ts +62 -0
  88. package/pager/PagerNavigationButton.d.ts +62 -0
  89. package/pager/PagerNumericButtons.d.ts +64 -0
  90. package/pager/PagerPageSizes.d.ts +72 -0
  91. package/pager/models/main.d.ts +94 -0
  92. package/selection/TableSelectableSettings.d.ts +38 -0
  93. package/selection/constants.d.ts +13 -0
  94. package/selection/events.d.ts +108 -0
  95. package/selection/utils.d.ts +73 -0
  96. package/selection/utils.mjs +7 -7
  97. package/utils/SearchField.d.ts +24 -0
  98. package/utils/data-operations.d.ts +32 -0
  99. package/utils/group-operations.d.ts +36 -0
  100. package/utils/main.d.ts +11 -0
  101. package/virtualization/columns.d.ts +22 -0
  102. package/virtualization/main.d.ts +8 -0
@@ -0,0 +1,155 @@
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 { ColumnSortSettings } from './SortSettings';
9
+ /**
10
+ * Base interface for column props
11
+ */
12
+ export interface ColumnBaseProps {
13
+ /**
14
+ * The field to which the column is bound.
15
+ */
16
+ field?: string;
17
+ /**
18
+ * The title of the column.
19
+ */
20
+ title?: string;
21
+ /**
22
+ * Allows the column headers to be clicked and the `sortChange` event emitted.
23
+ * You have to handle the `sortChange` event yourself and sort the data.
24
+ * Defaults to `true`.
25
+ */
26
+ sortable?: boolean | ColumnSortSettings;
27
+ /**
28
+ * The width of the column (in pixels).
29
+ */
30
+ width?: string | number;
31
+ /**
32
+ * Defines if the header selection checkbox is checked.
33
+ */
34
+ headerSelectionValue?: boolean;
35
+ /**
36
+ * The format that is applied to the value before it is displayed.
37
+ * Takes the `{0:format}` form where `format` is a standard number format, a custom number format,
38
+ * a standard date format, or a custom date format. For more information on the supported date and number formats,
39
+ * refer to the [kendo-intl](https://github.com/telerik/kendo-intl/blob/develop/docs/index.md) documentation.
40
+ */
41
+ format?: string;
42
+ /**
43
+ * Sets the custom CSS classes to the column header cell.
44
+ */
45
+ headerClassName?: string;
46
+ /**
47
+ * Sets the custom CSS classes to the column cells.
48
+ */
49
+ className?: string;
50
+ /**
51
+ * Indicates whether the column is resizable.
52
+ */
53
+ resizable?: boolean;
54
+ /**
55
+ * Indicates whether the column is reorderable.
56
+ */
57
+ reorderable?: boolean;
58
+ /**
59
+ * The width of the column (in pixels) below which the user is not able to resize the column through the UI. Defaults to `10`.
60
+ */
61
+ minResizableWidth?: number;
62
+ /**
63
+ * Determinates the position of the column.
64
+ * Columns with smaller `orderIndex` will appear before columns with bigger `orderIndex`.
65
+ * Defaults to `0`.
66
+ */
67
+ orderIndex?: number;
68
+ /**
69
+ * The column identifier used to distinguish columns for example in multi column header scenarios with resize and keyboard navigation.
70
+ * Also used for unique key for rendering the component cells.
71
+ * If not set, the component will generate unique `id` automatically.
72
+ */
73
+ id?: string;
74
+ /**
75
+ * Defines the component that will be rendered as a cell.
76
+ * If not set, a `Cell` will be rendered by default.
77
+ */
78
+ cell?: any;
79
+ /**
80
+ * @hidden
81
+ */
82
+ navigatable?: boolean;
83
+ /**
84
+ * @hidden
85
+ */
86
+ locked?: boolean;
87
+ }
88
+ /**
89
+ * @hidden
90
+ */
91
+ export interface TreeColumnBaseProps extends ColumnBaseProps {
92
+ /**
93
+ * A collection of child columns.
94
+ */
95
+ children?: TreeColumnBaseProps[];
96
+ /**
97
+ * The column menu component. If set to `true`, the column menu will be rendered.
98
+ */
99
+ columnMenu?: any;
100
+ /**
101
+ * If set to `true`, the column will render the icons that are used for expanding and collapsing child rows.
102
+ */
103
+ expandable?: boolean;
104
+ /**
105
+ * Defines the component that will be rendered as an edit cell.
106
+ */
107
+ editCell?: any;
108
+ /**
109
+ * Defines the component that will be rendered as a header cell.
110
+ * If not set, a `HeaderCell` will be rendered by default.
111
+ */
112
+ headerCell?: any;
113
+ /**
114
+ * **Deprecated**. Use `filterCell` prop instead.
115
+ */
116
+ filter?: any;
117
+ /**
118
+ * Defines the component that will be rendered as a filter cell.
119
+ */
120
+ filterCell?: any;
121
+ /**
122
+ * Defines the component that will be rendered as a footer cell.
123
+ */
124
+ footerCell?: any;
125
+ }
126
+ /**
127
+ * @hidden
128
+ */
129
+ export interface ExtendedColumnProps extends TreeColumnBaseProps {
130
+ declarationIndex: number;
131
+ parentIndex: number;
132
+ colSpan: number;
133
+ rowSpan: number;
134
+ depth: number;
135
+ kFirst?: boolean;
136
+ index: number;
137
+ children: ExtendedColumnProps[];
138
+ left: number;
139
+ right: number;
140
+ rightBorder: boolean;
141
+ groupable: boolean;
142
+ ariaColumnIndex: number;
143
+ isAccessible: boolean;
144
+ }
145
+ /**
146
+ * @hidden
147
+ */
148
+ export declare const ColumnDefaultProps: {
149
+ filterable: boolean;
150
+ editable: boolean;
151
+ sortable: boolean;
152
+ resizable: boolean;
153
+ reorderable: boolean;
154
+ groupable: boolean;
155
+ };
@@ -0,0 +1,90 @@
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 { FilterOperator } from './FilterOperator';
9
+ import { FilterOperators } from './FilterOperators';
10
+ /**
11
+ * The props of the FilterCell component
12
+ * ([more information and examples]({% slug filtering_grid %})).
13
+ */
14
+ /**
15
+ * @hidden
16
+ */
17
+ export interface FilterCellProps {
18
+ /**
19
+ * @hidden
20
+ */
21
+ id: string;
22
+ /**
23
+ * The instance of the 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?: FilterOperators[];
55
+ /**
56
+ * The list of values for the Boolean filter.
57
+ */
58
+ booleanValues: FilterOperator[];
59
+ /**
60
+ * The method that will be called if the cell needs to inform its parent 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 title of the clear button.
73
+ */
74
+ clearButtonTitle?: string;
75
+ /**
76
+ * The ariaLabel of the filter editor.
77
+ */
78
+ ariaLabel?: string;
79
+ /**
80
+ * Configures the `size` of the cell.
81
+ *
82
+ * The available options are:
83
+ * - small
84
+ * - medium
85
+ * - large
86
+ *
87
+ * @default `undefined`
88
+ */
89
+ size?: 'small' | 'medium' | 'large';
90
+ }
@@ -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
+ * A filter operator object.
10
+ */
11
+ export interface FilterOperator {
12
+ /**
13
+ * The label of the operator.
14
+ */
15
+ text: string;
16
+ /**
17
+ * The operator value.
18
+ */
19
+ operator: any;
20
+ }
@@ -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 { FilterOperator } from './FilterOperator';
9
+ /**
10
+ * The filter operators for the filters.
11
+ *
12
+ * @example
13
+ * ```jsx-no-run
14
+ * // Default 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 FilterOperators {
55
+ [type: string]: FilterOperator[];
56
+ }
@@ -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 { SortSettings } from './SortSettings';
9
+ /**
10
+ * The props of the HeaderCellProps component.
11
+ */
12
+ /**
13
+ * @hidden
14
+ */
15
+ export interface HeaderCellProps {
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?: SortSettings;
40
+ /**
41
+ * The method for rendering the cell.
42
+ */
43
+ render?: any;
44
+ /**
45
+ * The event that is fired when the header cell is clicked.
46
+ */
47
+ onHeadercellclick?: any;
48
+ }
@@ -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 { HeaderCellProps } from './HeaderCellProps';
9
+ /**
10
+ * The props of the HeaderSelectionCellProps component.
11
+ */
12
+ /**
13
+ * @hidden
14
+ */
15
+ export interface HeaderSelectionCellProps extends HeaderCellProps {
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,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
+ /**
9
+ * The settings for sorting the columns of the component.
10
+ */
11
+ export type ColumnSortSettings = boolean | {
12
+ /**
13
+ * Enables the removal of the column sorting functionality.
14
+ */
15
+ allowUnsort?: boolean;
16
+ };
17
+ /**
18
+ * The settings for sorting the component data.
19
+ */
20
+ export type SortSettings = boolean | ColumnSortSettings & {
21
+ /**
22
+ * The sort mode of the component.
23
+ *
24
+ * The available modes are:
25
+ * - `single`
26
+ * - `multiple`
27
+ */
28
+ mode?: 'single' | 'multiple';
29
+ };
30
+ /**
31
+ * @hidden
32
+ */
33
+ export declare const normalize: (...settings: (SortSettings | ColumnSortSettings)[]) => any;