@progress/kendo-vue-data-tools 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 (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,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 ColumnMenuItemContent component.
11
+ */
12
+ export interface ColumnMenuItemContentProps {
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 ColumnMenuItemContent: 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 { ColumnMenuItemContent };
@@ -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 ColumnMenuItemGroup: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
12
+ export { ColumnMenuItemGroup };
@@ -0,0 +1,72 @@
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 '../interfaces/FilterOperator';
9
+ /**
10
+ * Represents the operators for the ColumnMenuTextFilter, ColumnMenuNumericFilter,
11
+ * ColumnMenuDateFilter and ColumnMenuBooleanFilter components.
12
+ *
13
+ * The text field of each operator object will be resolved according to the
14
+ * [localization messages]({% slug globalization_datatools %}#toc-messages).
15
+ */
16
+ export declare class ColumnMenuOperators {
17
+ /**
18
+ * An array containing the operators for the ColumnMenuTextFilter component.
19
+ *
20
+ * The operators are:
21
+ *
22
+ * - { text: 'columnMenu.filterContainsOperator', operator: 'contains' }
23
+ * - { text: 'columnMenu.filterNotContainsOperator', operator: 'doesnotcontain' }
24
+ * - { text: 'columnMenu.filterEqOperator', operator: 'eq' }
25
+ * - { text: 'columnMenu.filterNotEqOperator', operator: 'neq' }
26
+ * - { text: 'columnMenu.filterStartsWithOperator', operator: 'startswith' }
27
+ * - { text: 'columnMenu.filterEndsWithOperator', operator: 'endswith' }
28
+ * - { text: 'columnMenu.filterIsNullOperator', operator: 'isnull' }
29
+ * - { text: 'columnMenu.filterIsNotNullOperator', operator: 'isnotnull' }
30
+ * - { text: 'columnMenu.filterIsEmptyOperator', operator: 'isempty' }
31
+ * - { text: 'columnMenu.filterIsNotEmptyOperator', operator: 'isnotempty' }
32
+ */
33
+ static get text(): FilterOperator[];
34
+ /**
35
+ * An array containing the operators for the ColumnMenuNumericFilter component.
36
+ *
37
+ * The operators are:
38
+ *
39
+ * - { text: 'columnMenu.filterEqOperator', operator: 'eq' }
40
+ * - { text: 'columnMenu.filterNotEqOperator', operator: 'neq' }
41
+ * - { text: 'columnMenu.filterGteOperator', operator: 'gte' }
42
+ * - { text: 'columnMenu.filterGtOperator', operator: 'gt' }
43
+ * - { text: 'columnMenu.filterLteOperator', operator: 'lte' }
44
+ * - { text: 'columnMenu.filterLtOperator', operator: 'lt' }
45
+ * - { text: 'columnMenu.filterIsNullOperator', operator: 'isnull' }
46
+ * - { text: 'columnMenu.filterIsNotNullOperator', operator: 'isnotnull' }
47
+ */
48
+ static get numeric(): FilterOperator[];
49
+ /**
50
+ * An array containing the operators for the ColumnMenuDateFilter component.
51
+ *
52
+ * The operators are:
53
+ *
54
+ * - { text: 'columnMenu.filterEqOperator', operator: 'eq' }
55
+ * - { text: 'columnMenu.filterNotEqOperator', operator: 'neq' }
56
+ * - { text: 'columnMenu.filterAfterOrEqualOperator', operator: 'gte' }
57
+ * - { text: 'columnMenu.filterAfterOperator', operator: 'gt' }
58
+ * - { text: 'columnMenu.filterBeforeOperator', operator: 'lt' }
59
+ * - { text: 'columnMenu.filterBeforeOrEqualOperator', operator: 'lte' }
60
+ * - { text: 'columnMenu.filterIsNullOperator', operator: 'isnull' }
61
+ * - { text: 'columnMenu.filterIsNotNullOperator', operator: 'isnotnull' }
62
+ */
63
+ static get date(): FilterOperator[];
64
+ /**
65
+ * An array containing the operators for the ColumnMenuBooleanFilter component.
66
+ *
67
+ * The operators are:
68
+ *
69
+ * - { text: 'columnMenu.filterIsTrue', operator: '' }
70
+ */
71
+ static get boolean(): FilterOperator[];
72
+ }
@@ -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 { ColumnMenuSortBaseProps } from '../interfaces/ColumnMenuSortBaseProps';
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 ColumnMenuSort component.
17
+ */
18
+ export interface ColumnMenuSortProps extends ColumnMenuSortBaseProps {
19
+ }
20
+ /**
21
+ * @hidden
22
+ */
23
+ declare const ColumnMenuSort: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
24
+ sortable: PropType<import('../interfaces/SortSettings').SortSettings>;
25
+ sort: {
26
+ type: PropType<SortDescriptor[]>;
27
+ };
28
+ column: PropType<import('../interfaces/ColumnMenuColumnProps').ColumnMenuColumnProps>;
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/SortSettings').SortSettings>;
39
+ sort: {
40
+ type: PropType<SortDescriptor[]>;
41
+ };
42
+ column: PropType<import('../interfaces/ColumnMenuColumnProps').ColumnMenuColumnProps>;
43
+ onSortchange: PropType<(descriptors: SortDescriptor[], e: any) => void>;
44
+ onClosemenu: PropType<Function>;
45
+ }>> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
46
+ export { ColumnMenuSort };
@@ -0,0 +1,9 @@
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 * from './ColumnMenu';
9
+ export * from './ColumnMenuOperators';
@@ -0,0 +1,9 @@
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 * from './ColumnMenu';
9
+ export * from './ColumnMenuOperators';
@@ -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
+ /** @hidden */
9
+ export type TableExpandableSettings = {
10
+ enabled?: boolean;
11
+ column?: string;
12
+ };
@@ -0,0 +1,31 @@
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 descriptor used to define the expanded state of the detail-row.
10
+ */
11
+ export type DetailExpandDescriptor = {
12
+ [id: string]: boolean;
13
+ };
14
+ /** @hidden */
15
+ export declare enum DETAIL_EXPAND_ACTION {
16
+ DETAIL_EXPAND = "DETAIL_EXPAND_DETAIL_EXPAND",
17
+ COLLAPSE = "DETAIL_EXPAND_COLLAPSE",
18
+ TOGGLE = "DETAIL_EXPAND_TOGGLE",
19
+ SET = "DETAIL_EXPAND_SET"
20
+ }
21
+ /** @hidden */
22
+ export type DetailExpandAction = {
23
+ type: DETAIL_EXPAND_ACTION.TOGGLE | DETAIL_EXPAND_ACTION.DETAIL_EXPAND | DETAIL_EXPAND_ACTION.COLLAPSE;
24
+ id: string;
25
+ } | {
26
+ type: DETAIL_EXPAND_ACTION.SET;
27
+ id: string;
28
+ payload: boolean;
29
+ };
30
+ /** @hidden */
31
+ export declare const detailExpandReducer: (state: DetailExpandDescriptor, action: DetailExpandAction) => DetailExpandDescriptor;
@@ -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
+ import { TableExpandableSettings } from './TableExpandableSettings';
9
+ /** @hidden */
10
+ export declare const getDetailExpandableOptions: (expandable?: boolean | TableExpandableSettings) => TableExpandableSettings;