@progress/kendo-react-grid 6.1.1 → 7.0.0-develop.1
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.
- package/{dist/es/Grid.d.ts → Grid.d.ts} +5 -1
- package/{dist/npm/GridColumn.d.ts → GridColumn.d.ts} +4 -0
- package/{dist/npm/GridNoRecords.d.ts → GridNoRecords.d.ts} +4 -0
- package/{dist/npm/GridToolbar.d.ts → GridToolbar.d.ts} +5 -1
- package/LICENSE.md +1 -1
- package/ScrollMode.d.ts +5 -0
- package/{dist/es/StatusBar.d.ts → StatusBar.d.ts} +4 -0
- package/{dist/npm/VirtualScroll.d.ts → VirtualScroll.d.ts} +4 -0
- package/{dist/es/VirtualScrollFixed.d.ts → VirtualScrollFixed.d.ts} +4 -0
- package/cells/GridCell.d.ts +6 -0
- package/{dist/es/cells → cells}/GridDetailCell.d.ts +5 -1
- package/cells/GridDetailHierarchyCell.d.ts +10 -0
- package/cells/GridEditCell.d.ts +9 -0
- package/cells/GridFilterCell.d.ts +20 -0
- package/cells/GridGroupCell.d.ts +9 -0
- package/cells/GridHierarchyCell.d.ts +9 -0
- package/cells/GridSelectionCell.d.ts +9 -0
- package/{dist/npm/columnMenu → columnMenu}/GridColumnMenuCheckboxFilter.d.ts +5 -1
- package/{dist/npm/columnMenu → columnMenu}/GridColumnMenuColumnsList.d.ts +4 -0
- package/{dist/npm/columnMenu → columnMenu}/GridColumnMenuFilter.d.ts +5 -1
- package/{dist/npm/columnMenu → columnMenu}/GridColumnMenuFilterCell.d.ts +5 -1
- package/columnMenu/GridColumnMenuFilterUI.d.ts +12 -0
- package/{dist/es/columnMenu → columnMenu}/GridColumnMenuGroup.d.ts +5 -1
- package/{dist/es/columnMenu → columnMenu}/GridColumnMenuItem.d.ts +5 -1
- package/{dist/es/columnMenu → columnMenu}/GridColumnMenuItemContent.d.ts +5 -1
- package/{dist/es/columnMenu → columnMenu}/GridColumnMenuItemGroup.d.ts +5 -1
- package/{dist/es/columnMenu → columnMenu}/GridColumnMenuSort.d.ts +5 -1
- package/{dist/npm/columnMenu → columnMenu}/GridColumnMenuWrapper.d.ts +5 -1
- package/{dist/es/constants → constants}/index.d.ts +4 -0
- package/dist/cdn/js/kendo-react-grid.js +5 -1
- package/{dist/npm/drag → drag}/ColumnDraggable.d.ts +5 -1
- package/{dist/es/drag → drag}/ColumnResize.d.ts +4 -0
- package/{dist/es/drag → drag}/CommonDragLogic.d.ts +5 -1
- package/{dist/npm/drag → drag}/GroupingIndicator.d.ts +5 -1
- package/{dist/es/filterCommon.d.ts → filterCommon.d.ts} +5 -1
- package/{dist/npm/footer → footer}/Footer.d.ts +5 -1
- package/{dist/npm/footer → footer}/FooterRow.d.ts +5 -1
- package/{dist/npm/header → header}/FilterRow.d.ts +5 -1
- package/{dist/npm/header → header}/GridHeaderCell.d.ts +5 -1
- package/header/GridHeaderSelectionCell.d.ts +13 -0
- package/{dist/npm/header → header}/GroupPanel.d.ts +5 -1
- package/{dist/es/header → header}/Header.d.ts +5 -1
- package/{dist/npm/header → header}/HeaderRow.d.ts +6 -2
- package/{dist/es/main.d.ts → index.d.ts} +31 -27
- package/index.js +5 -0
- package/index.mjs +3814 -0
- package/{dist/npm/interfaces → interfaces}/GridCellProps.d.ts +4 -1
- package/{dist/es/interfaces → interfaces}/GridCellsSettings.d.ts +4 -0
- package/interfaces/GridColumnMenuBaseProps.d.ts +18 -0
- package/{dist/es/interfaces → interfaces}/GridColumnMenuColumnProps.d.ts +4 -0
- package/{dist/es/interfaces → interfaces}/GridColumnMenuFilterBaseProps.d.ts +4 -1
- package/{dist/es/interfaces → interfaces}/GridColumnMenuFilterUIProps.d.ts +4 -0
- package/{dist/npm/interfaces → interfaces}/GridColumnMenuGroupBaseProps.d.ts +4 -1
- package/{dist/es/interfaces → interfaces}/GridColumnMenuProps.d.ts +4 -0
- package/{dist/npm/interfaces → interfaces}/GridColumnMenuSortBaseProps.d.ts +4 -1
- package/{dist/es/interfaces → interfaces}/GridColumnProps.d.ts +4 -0
- package/interfaces/GridDetailRowProps.d.ts +17 -0
- package/{dist/npm/interfaces → interfaces}/GridFilterCellProps.d.ts +4 -1
- package/interfaces/GridFilterOperator.d.ts +10 -0
- package/{dist/es/interfaces → interfaces}/GridFilterOperators.d.ts +4 -0
- package/{dist/npm/interfaces → interfaces}/GridFooterCellProps.d.ts +4 -1
- package/{dist/es/interfaces → interfaces}/GridGroupableSettings.d.ts +4 -0
- package/{dist/npm/interfaces → interfaces}/GridHeaderCellProps.d.ts +4 -1
- package/interfaces/GridNoRecordsProps.d.ts +13 -0
- package/{dist/npm/interfaces → interfaces}/GridProps.d.ts +4 -0
- package/{dist/es/interfaces → interfaces}/GridRowProps.d.ts +4 -1
- package/interfaces/GridRowType.d.ts +13 -0
- package/{dist/npm/interfaces → interfaces}/GridSelectableSettings.d.ts +5 -1
- package/interfaces/GridSortSettings.d.ts +17 -0
- package/{dist/es/interfaces → interfaces}/GridToolbarProps.d.ts +4 -1
- package/{dist/es/interfaces → interfaces}/VirtualScrollInterface.d.ts +4 -0
- package/{dist/npm/interfaces → interfaces}/events.d.ts +4 -1
- package/{dist/npm/messages → messages}/index.d.ts +4 -0
- package/package-metadata.d.ts +9 -0
- package/package.json +36 -59
- package/{dist/es/paging → paging}/GridPagerSettings.d.ts +6 -2
- package/paging/Page.d.ts +17 -0
- package/{dist/npm/rows → rows}/GridDetailRow.d.ts +4 -0
- package/rows/GridRow.d.ts +15 -0
- package/{dist/es/utils → utils}/index.d.ts +11 -7
- package/about.md +0 -3
- package/dist/es/Grid.js +0 -1042
- package/dist/es/GridColumn.d.ts +0 -24
- package/dist/es/GridColumn.js +0 -54
- package/dist/es/GridNoRecords.d.ts +0 -36
- package/dist/es/GridNoRecords.js +0 -63
- package/dist/es/GridToolbar.d.ts +0 -50
- package/dist/es/GridToolbar.js +0 -78
- package/dist/es/ScrollMode.d.ts +0 -1
- package/dist/es/ScrollMode.js +0 -1
- package/dist/es/StatusBar.js +0 -109
- package/dist/es/VirtualScroll.d.ts +0 -47
- package/dist/es/VirtualScroll.js +0 -243
- package/dist/es/VirtualScrollFixed.js +0 -153
- package/dist/es/cells/GridCell.d.ts +0 -3
- package/dist/es/cells/GridCell.js +0 -59
- package/dist/es/cells/GridDetailCell.js +0 -25
- package/dist/es/cells/GridDetailHierarchyCell.d.ts +0 -7
- package/dist/es/cells/GridDetailHierarchyCell.js +0 -18
- package/dist/es/cells/GridEditCell.d.ts +0 -6
- package/dist/es/cells/GridEditCell.js +0 -96
- package/dist/es/cells/GridFilterCell.d.ts +0 -16
- package/dist/es/cells/GridFilterCell.js +0 -102
- package/dist/es/cells/GridGroupCell.d.ts +0 -6
- package/dist/es/cells/GridGroupCell.js +0 -114
- package/dist/es/cells/GridHierarchyCell.d.ts +0 -6
- package/dist/es/cells/GridHierarchyCell.js +0 -77
- package/dist/es/cells/GridSelectionCell.d.ts +0 -6
- package/dist/es/cells/GridSelectionCell.js +0 -44
- package/dist/es/columnMenu/GridColumnMenuCheckboxFilter.d.ts +0 -118
- package/dist/es/columnMenu/GridColumnMenuCheckboxFilter.js +0 -328
- package/dist/es/columnMenu/GridColumnMenuColumnsList.d.ts +0 -27
- package/dist/es/columnMenu/GridColumnMenuColumnsList.js +0 -57
- package/dist/es/columnMenu/GridColumnMenuFilter.d.ts +0 -161
- package/dist/es/columnMenu/GridColumnMenuFilter.js +0 -377
- package/dist/es/columnMenu/GridColumnMenuFilterCell.d.ts +0 -33
- package/dist/es/columnMenu/GridColumnMenuFilterCell.js +0 -72
- package/dist/es/columnMenu/GridColumnMenuFilterUI.d.ts +0 -8
- package/dist/es/columnMenu/GridColumnMenuFilterUI.js +0 -48
- package/dist/es/columnMenu/GridColumnMenuGroup.js +0 -125
- package/dist/es/columnMenu/GridColumnMenuItem.js +0 -37
- package/dist/es/columnMenu/GridColumnMenuItemContent.js +0 -36
- package/dist/es/columnMenu/GridColumnMenuItemGroup.js +0 -35
- package/dist/es/columnMenu/GridColumnMenuSort.js +0 -189
- package/dist/es/columnMenu/GridColumnMenuWrapper.d.ts +0 -45
- package/dist/es/columnMenu/GridColumnMenuWrapper.js +0 -120
- package/dist/es/constants/index.js +0 -7
- package/dist/es/drag/ColumnDraggable.d.ts +0 -34
- package/dist/es/drag/ColumnDraggable.js +0 -62
- package/dist/es/drag/ColumnResize.js +0 -234
- package/dist/es/drag/CommonDragLogic.js +0 -209
- package/dist/es/drag/GroupingIndicator.d.ts +0 -37
- package/dist/es/drag/GroupingIndicator.js +0 -107
- package/dist/es/filterCommon.js +0 -165
- package/dist/es/footer/Footer.d.ts +0 -34
- package/dist/es/footer/Footer.js +0 -70
- package/dist/es/footer/FooterRow.d.ts +0 -21
- package/dist/es/footer/FooterRow.js +0 -75
- package/dist/es/header/FilterRow.d.ts +0 -34
- package/dist/es/header/FilterRow.js +0 -139
- package/dist/es/header/GridHeaderCell.d.ts +0 -52
- package/dist/es/header/GridHeaderCell.js +0 -101
- package/dist/es/header/GridHeaderSelectionCell.d.ts +0 -9
- package/dist/es/header/GridHeaderSelectionCell.js +0 -59
- package/dist/es/header/GroupPanel.d.ts +0 -22
- package/dist/es/header/GroupPanel.js +0 -57
- package/dist/es/header/Header.js +0 -112
- package/dist/es/header/HeaderRow.d.ts +0 -47
- package/dist/es/header/HeaderRow.js +0 -180
- package/dist/es/interfaces/GridCellProps.d.ts +0 -70
- package/dist/es/interfaces/GridCellProps.js +0 -2
- package/dist/es/interfaces/GridCellsSettings.js +0 -1
- package/dist/es/interfaces/GridColumnMenuBaseProps.d.ts +0 -14
- package/dist/es/interfaces/GridColumnMenuBaseProps.js +0 -1
- package/dist/es/interfaces/GridColumnMenuColumnProps.js +0 -1
- package/dist/es/interfaces/GridColumnMenuFilterBaseProps.js +0 -1
- package/dist/es/interfaces/GridColumnMenuFilterUIProps.js +0 -1
- package/dist/es/interfaces/GridColumnMenuGroupBaseProps.d.ts +0 -20
- package/dist/es/interfaces/GridColumnMenuGroupBaseProps.js +0 -1
- package/dist/es/interfaces/GridColumnMenuProps.js +0 -1
- package/dist/es/interfaces/GridColumnMenuSortBaseProps.d.ts +0 -21
- package/dist/es/interfaces/GridColumnMenuSortBaseProps.js +0 -1
- package/dist/es/interfaces/GridColumnProps.js +0 -2
- package/dist/es/interfaces/GridDetailRowProps.d.ts +0 -13
- package/dist/es/interfaces/GridDetailRowProps.js +0 -1
- package/dist/es/interfaces/GridFilterCellProps.d.ts +0 -65
- package/dist/es/interfaces/GridFilterCellProps.js +0 -1
- package/dist/es/interfaces/GridFilterOperator.d.ts +0 -6
- package/dist/es/interfaces/GridFilterOperator.js +0 -1
- package/dist/es/interfaces/GridFilterOperators.js +0 -1
- package/dist/es/interfaces/GridFooterCellProps.d.ts +0 -23
- package/dist/es/interfaces/GridFooterCellProps.js +0 -1
- package/dist/es/interfaces/GridGroupableSettings.js +0 -1
- package/dist/es/interfaces/GridHeaderCellProps.d.ts +0 -17
- package/dist/es/interfaces/GridHeaderCellProps.js +0 -1
- package/dist/es/interfaces/GridNoRecordsProps.d.ts +0 -10
- package/dist/es/interfaces/GridNoRecordsProps.js +0 -1
- package/dist/es/interfaces/GridProps.d.ts +0 -317
- package/dist/es/interfaces/GridProps.js +0 -2
- package/dist/es/interfaces/GridRowProps.js +0 -2
- package/dist/es/interfaces/GridRowType.d.ts +0 -9
- package/dist/es/interfaces/GridRowType.js +0 -1
- package/dist/es/interfaces/GridSelectableSettings.d.ts +0 -18
- package/dist/es/interfaces/GridSelectableSettings.js +0 -2
- package/dist/es/interfaces/GridSortSettings.d.ts +0 -13
- package/dist/es/interfaces/GridSortSettings.js +0 -19
- package/dist/es/interfaces/GridToolbarProps.js +0 -1
- package/dist/es/interfaces/VirtualScrollInterface.js +0 -1
- package/dist/es/interfaces/events.d.ts +0 -229
- package/dist/es/interfaces/events.js +0 -1
- package/dist/es/main.js +0 -33
- package/dist/es/messages/index.d.ts +0 -190
- package/dist/es/messages/index.js +0 -191
- package/dist/es/package-metadata.d.ts +0 -5
- package/dist/es/package-metadata.js +0 -11
- package/dist/es/paging/GridPagerSettings.js +0 -21
- package/dist/es/paging/Page.d.ts +0 -13
- package/dist/es/paging/Page.js +0 -1
- package/dist/es/rows/GridDetailRow.d.ts +0 -51
- package/dist/es/rows/GridDetailRow.js +0 -75
- package/dist/es/rows/GridRow.d.ts +0 -11
- package/dist/es/rows/GridRow.js +0 -64
- package/dist/es/utils/index.js +0 -263
- package/dist/npm/Grid.d.ts +0 -255
- package/dist/npm/Grid.js +0 -1045
- package/dist/npm/GridColumn.js +0 -58
- package/dist/npm/GridNoRecords.js +0 -66
- package/dist/npm/GridToolbar.js +0 -81
- package/dist/npm/ScrollMode.d.ts +0 -1
- package/dist/npm/ScrollMode.js +0 -2
- package/dist/npm/StatusBar.d.ts +0 -47
- package/dist/npm/StatusBar.js +0 -115
- package/dist/npm/VirtualScroll.js +0 -246
- package/dist/npm/VirtualScrollFixed.d.ts +0 -49
- package/dist/npm/VirtualScrollFixed.js +0 -156
- package/dist/npm/cells/GridCell.d.ts +0 -3
- package/dist/npm/cells/GridCell.js +0 -63
- package/dist/npm/cells/GridDetailCell.d.ts +0 -14
- package/dist/npm/cells/GridDetailCell.js +0 -29
- package/dist/npm/cells/GridDetailHierarchyCell.d.ts +0 -7
- package/dist/npm/cells/GridDetailHierarchyCell.js +0 -22
- package/dist/npm/cells/GridEditCell.d.ts +0 -6
- package/dist/npm/cells/GridEditCell.js +0 -100
- package/dist/npm/cells/GridFilterCell.d.ts +0 -16
- package/dist/npm/cells/GridFilterCell.js +0 -105
- package/dist/npm/cells/GridGroupCell.d.ts +0 -6
- package/dist/npm/cells/GridGroupCell.js +0 -118
- package/dist/npm/cells/GridHierarchyCell.d.ts +0 -6
- package/dist/npm/cells/GridHierarchyCell.js +0 -81
- package/dist/npm/cells/GridSelectionCell.d.ts +0 -6
- package/dist/npm/cells/GridSelectionCell.js +0 -48
- package/dist/npm/columnMenu/GridColumnMenuCheckboxFilter.js +0 -331
- package/dist/npm/columnMenu/GridColumnMenuColumnsList.js +0 -61
- package/dist/npm/columnMenu/GridColumnMenuFilter.js +0 -382
- package/dist/npm/columnMenu/GridColumnMenuFilterCell.js +0 -75
- package/dist/npm/columnMenu/GridColumnMenuFilterUI.d.ts +0 -8
- package/dist/npm/columnMenu/GridColumnMenuFilterUI.js +0 -51
- package/dist/npm/columnMenu/GridColumnMenuGroup.d.ts +0 -73
- package/dist/npm/columnMenu/GridColumnMenuGroup.js +0 -128
- package/dist/npm/columnMenu/GridColumnMenuItem.d.ts +0 -36
- package/dist/npm/columnMenu/GridColumnMenuItem.js +0 -40
- package/dist/npm/columnMenu/GridColumnMenuItemContent.d.ts +0 -20
- package/dist/npm/columnMenu/GridColumnMenuItemContent.js +0 -39
- package/dist/npm/columnMenu/GridColumnMenuItemGroup.d.ts +0 -16
- package/dist/npm/columnMenu/GridColumnMenuItemGroup.js +0 -38
- package/dist/npm/columnMenu/GridColumnMenuSort.d.ts +0 -85
- package/dist/npm/columnMenu/GridColumnMenuSort.js +0 -192
- package/dist/npm/columnMenu/GridColumnMenuWrapper.js +0 -123
- package/dist/npm/constants/index.d.ts +0 -6
- package/dist/npm/constants/index.js +0 -10
- package/dist/npm/drag/ColumnDraggable.js +0 -65
- package/dist/npm/drag/ColumnResize.d.ts +0 -33
- package/dist/npm/drag/ColumnResize.js +0 -237
- package/dist/npm/drag/CommonDragLogic.d.ts +0 -40
- package/dist/npm/drag/CommonDragLogic.js +0 -212
- package/dist/npm/drag/GroupingIndicator.js +0 -110
- package/dist/npm/filterCommon.d.ts +0 -69
- package/dist/npm/filterCommon.js +0 -175
- package/dist/npm/footer/Footer.js +0 -73
- package/dist/npm/footer/FooterRow.js +0 -78
- package/dist/npm/header/FilterRow.js +0 -142
- package/dist/npm/header/GridHeaderCell.js +0 -104
- package/dist/npm/header/GridHeaderSelectionCell.d.ts +0 -9
- package/dist/npm/header/GridHeaderSelectionCell.js +0 -62
- package/dist/npm/header/GroupPanel.js +0 -60
- package/dist/npm/header/Header.d.ts +0 -42
- package/dist/npm/header/Header.js +0 -115
- package/dist/npm/header/HeaderRow.js +0 -183
- package/dist/npm/interfaces/GridCellProps.js +0 -3
- package/dist/npm/interfaces/GridCellsSettings.d.ts +0 -111
- package/dist/npm/interfaces/GridCellsSettings.js +0 -3
- package/dist/npm/interfaces/GridColumnMenuBaseProps.d.ts +0 -14
- package/dist/npm/interfaces/GridColumnMenuBaseProps.js +0 -2
- package/dist/npm/interfaces/GridColumnMenuColumnProps.d.ts +0 -25
- package/dist/npm/interfaces/GridColumnMenuColumnProps.js +0 -2
- package/dist/npm/interfaces/GridColumnMenuFilterBaseProps.d.ts +0 -25
- package/dist/npm/interfaces/GridColumnMenuFilterBaseProps.js +0 -2
- package/dist/npm/interfaces/GridColumnMenuFilterUIProps.d.ts +0 -31
- package/dist/npm/interfaces/GridColumnMenuFilterUIProps.js +0 -2
- package/dist/npm/interfaces/GridColumnMenuGroupBaseProps.js +0 -2
- package/dist/npm/interfaces/GridColumnMenuProps.d.ts +0 -8
- package/dist/npm/interfaces/GridColumnMenuProps.js +0 -2
- package/dist/npm/interfaces/GridColumnMenuSortBaseProps.js +0 -2
- package/dist/npm/interfaces/GridColumnProps.d.ts +0 -88
- package/dist/npm/interfaces/GridColumnProps.js +0 -3
- package/dist/npm/interfaces/GridDetailRowProps.d.ts +0 -13
- package/dist/npm/interfaces/GridDetailRowProps.js +0 -2
- package/dist/npm/interfaces/GridFilterCellProps.js +0 -2
- package/dist/npm/interfaces/GridFilterOperator.d.ts +0 -6
- package/dist/npm/interfaces/GridFilterOperator.js +0 -2
- package/dist/npm/interfaces/GridFilterOperators.d.ts +0 -49
- package/dist/npm/interfaces/GridFilterOperators.js +0 -2
- package/dist/npm/interfaces/GridFooterCellProps.js +0 -2
- package/dist/npm/interfaces/GridGroupableSettings.d.ts +0 -13
- package/dist/npm/interfaces/GridGroupableSettings.js +0 -2
- package/dist/npm/interfaces/GridHeaderCellProps.js +0 -2
- package/dist/npm/interfaces/GridNoRecordsProps.d.ts +0 -10
- package/dist/npm/interfaces/GridNoRecordsProps.js +0 -2
- package/dist/npm/interfaces/GridProps.js +0 -3
- package/dist/npm/interfaces/GridRowProps.d.ts +0 -64
- package/dist/npm/interfaces/GridRowProps.js +0 -3
- package/dist/npm/interfaces/GridRowType.d.ts +0 -9
- package/dist/npm/interfaces/GridRowType.js +0 -2
- package/dist/npm/interfaces/GridSelectableSettings.js +0 -3
- package/dist/npm/interfaces/GridSortSettings.d.ts +0 -13
- package/dist/npm/interfaces/GridSortSettings.js +0 -23
- package/dist/npm/interfaces/GridToolbarProps.d.ts +0 -34
- package/dist/npm/interfaces/GridToolbarProps.js +0 -2
- package/dist/npm/interfaces/VirtualScrollInterface.d.ts +0 -27
- package/dist/npm/interfaces/VirtualScrollInterface.js +0 -2
- package/dist/npm/interfaces/events.js +0 -2
- package/dist/npm/main.d.ts +0 -51
- package/dist/npm/main.js +0 -90
- package/dist/npm/messages/index.js +0 -195
- package/dist/npm/package-metadata.d.ts +0 -5
- package/dist/npm/package-metadata.js +0 -14
- package/dist/npm/paging/GridPagerSettings.d.ts +0 -67
- package/dist/npm/paging/GridPagerSettings.js +0 -25
- package/dist/npm/paging/Page.d.ts +0 -13
- package/dist/npm/paging/Page.js +0 -2
- package/dist/npm/rows/GridDetailRow.js +0 -78
- package/dist/npm/rows/GridRow.d.ts +0 -11
- package/dist/npm/rows/GridRow.js +0 -67
- package/dist/npm/utils/index.d.ts +0 -69
- package/dist/npm/utils/index.js +0 -275
- package/dist/systemjs/kendo-react-grid.js +0 -1
- package/e2e-legacy/snapshots/column-menu.png +0 -0
- package/e2e-next/basic.tests.ts +0 -25
|
@@ -1,4 +1,7 @@
|
|
|
1
|
-
|
|
1
|
+
/**-----------------------------------------------------------------------------------------
|
|
2
|
+
* Copyright © 2023 Progress Software Corporation. All rights reserved.
|
|
3
|
+
* Licensed under commercial license. See LICENSE.md in the package root for more information
|
|
4
|
+
*-------------------------------------------------------------------------------------------*/
|
|
2
5
|
import { GridCellsSettings } from './GridCellsSettings';
|
|
3
6
|
import { GridRowType } from './GridRowType';
|
|
4
7
|
import { CellProps } from '@progress/kendo-react-data-tools';
|
|
@@ -1,3 +1,7 @@
|
|
|
1
|
+
/**-----------------------------------------------------------------------------------------
|
|
2
|
+
* Copyright © 2023 Progress Software Corporation. All rights reserved.
|
|
3
|
+
* Licensed under commercial license. See LICENSE.md in the package root for more information
|
|
4
|
+
*-------------------------------------------------------------------------------------------*/
|
|
1
5
|
import { ComponentType } from 'react';
|
|
2
6
|
import { TABLE_COL_INDEX_ATTRIBUTE } from '@progress/kendo-react-data-tools';
|
|
3
7
|
import { GridCellProps } from './GridCellProps';
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
/**-----------------------------------------------------------------------------------------
|
|
2
|
+
* Copyright © 2023 Progress Software Corporation. All rights reserved.
|
|
3
|
+
* Licensed under commercial license. See LICENSE.md in the package root for more information
|
|
4
|
+
*-------------------------------------------------------------------------------------------*/
|
|
5
|
+
import { GridColumnMenuColumnProps } from './GridColumnMenuColumnProps';
|
|
6
|
+
/**
|
|
7
|
+
* @hidden
|
|
8
|
+
*/
|
|
9
|
+
export interface GridColumnMenuBaseProps {
|
|
10
|
+
/**
|
|
11
|
+
* The current column options.
|
|
12
|
+
*/
|
|
13
|
+
column: GridColumnMenuColumnProps;
|
|
14
|
+
/**
|
|
15
|
+
* The method that will be called to close the column menu.
|
|
16
|
+
*/
|
|
17
|
+
onCloseMenu?: Function;
|
|
18
|
+
}
|
|
@@ -1,3 +1,7 @@
|
|
|
1
|
+
/**-----------------------------------------------------------------------------------------
|
|
2
|
+
* Copyright © 2023 Progress Software Corporation. All rights reserved.
|
|
3
|
+
* Licensed under commercial license. See LICENSE.md in the package root for more information
|
|
4
|
+
*-------------------------------------------------------------------------------------------*/
|
|
1
5
|
/**
|
|
2
6
|
* The column props passed by the ColumnMenu.
|
|
3
7
|
*/
|
|
@@ -1,4 +1,7 @@
|
|
|
1
|
-
|
|
1
|
+
/**-----------------------------------------------------------------------------------------
|
|
2
|
+
* Copyright © 2023 Progress Software Corporation. All rights reserved.
|
|
3
|
+
* Licensed under commercial license. See LICENSE.md in the package root for more information
|
|
4
|
+
*-------------------------------------------------------------------------------------------*/
|
|
2
5
|
import { CompositeFilterDescriptor } from '@progress/kendo-data-query';
|
|
3
6
|
import { GridColumnMenuBaseProps } from './GridColumnMenuBaseProps';
|
|
4
7
|
import { GridFilterOperators } from './GridFilterOperators';
|
|
@@ -1,3 +1,7 @@
|
|
|
1
|
+
/**-----------------------------------------------------------------------------------------
|
|
2
|
+
* Copyright © 2023 Progress Software Corporation. All rights reserved.
|
|
3
|
+
* Licensed under commercial license. See LICENSE.md in the package root for more information
|
|
4
|
+
*-------------------------------------------------------------------------------------------*/
|
|
1
5
|
import { GridFilterCellProps } from './GridFilterCellProps';
|
|
2
6
|
import { GridFilterOperator } from './GridFilterOperator';
|
|
3
7
|
/**
|
|
@@ -1,4 +1,7 @@
|
|
|
1
|
-
|
|
1
|
+
/**-----------------------------------------------------------------------------------------
|
|
2
|
+
* Copyright © 2023 Progress Software Corporation. All rights reserved.
|
|
3
|
+
* Licensed under commercial license. See LICENSE.md in the package root for more information
|
|
4
|
+
*-------------------------------------------------------------------------------------------*/
|
|
2
5
|
import { GroupDescriptor } from '@progress/kendo-data-query';
|
|
3
6
|
import { GridColumnMenuBaseProps } from './GridColumnMenuBaseProps';
|
|
4
7
|
/**
|
|
@@ -1,3 +1,7 @@
|
|
|
1
|
+
/**-----------------------------------------------------------------------------------------
|
|
2
|
+
* Copyright © 2023 Progress Software Corporation. All rights reserved.
|
|
3
|
+
* Licensed under commercial license. See LICENSE.md in the package root for more information
|
|
4
|
+
*-------------------------------------------------------------------------------------------*/
|
|
1
5
|
import { GridColumnMenuFilterBaseProps } from './GridColumnMenuFilterBaseProps';
|
|
2
6
|
import { GridColumnMenuGroupBaseProps } from './GridColumnMenuGroupBaseProps';
|
|
3
7
|
import { GridColumnMenuSortBaseProps } from './GridColumnMenuSortBaseProps';
|
|
@@ -1,4 +1,7 @@
|
|
|
1
|
-
|
|
1
|
+
/**-----------------------------------------------------------------------------------------
|
|
2
|
+
* Copyright © 2023 Progress Software Corporation. All rights reserved.
|
|
3
|
+
* Licensed under commercial license. See LICENSE.md in the package root for more information
|
|
4
|
+
*-------------------------------------------------------------------------------------------*/
|
|
2
5
|
import { SortDescriptor } from '@progress/kendo-data-query';
|
|
3
6
|
import { GridSortSettings } from './GridSortSettings';
|
|
4
7
|
import { GridColumnMenuBaseProps } from './GridColumnMenuBaseProps';
|
|
@@ -1,3 +1,7 @@
|
|
|
1
|
+
/**-----------------------------------------------------------------------------------------
|
|
2
|
+
* Copyright © 2023 Progress Software Corporation. All rights reserved.
|
|
3
|
+
* Licensed under commercial license. See LICENSE.md in the package root for more information
|
|
4
|
+
*-------------------------------------------------------------------------------------------*/
|
|
1
5
|
import { ComponentType, ReactElement } from 'react';
|
|
2
6
|
import { GridCellProps } from '../interfaces/GridCellProps';
|
|
3
7
|
import { GridFilterCellProps } from '../interfaces/GridFilterCellProps';
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
/**-----------------------------------------------------------------------------------------
|
|
2
|
+
* Copyright © 2023 Progress Software Corporation. All rights reserved.
|
|
3
|
+
* Licensed under commercial license. See LICENSE.md in the package root for more information
|
|
4
|
+
*-------------------------------------------------------------------------------------------*/
|
|
5
|
+
/**
|
|
6
|
+
* The props of the GridDetailRow component ([see example]({% slug detailrow_grid %})).
|
|
7
|
+
*/
|
|
8
|
+
export interface GridDetailRowProps {
|
|
9
|
+
/**
|
|
10
|
+
* The data object that represents the current row.
|
|
11
|
+
*/
|
|
12
|
+
dataItem: any;
|
|
13
|
+
/**
|
|
14
|
+
* Zero-based index of the dataItem.
|
|
15
|
+
*/
|
|
16
|
+
dataIndex: number;
|
|
17
|
+
}
|
|
@@ -1,4 +1,7 @@
|
|
|
1
|
-
|
|
1
|
+
/**-----------------------------------------------------------------------------------------
|
|
2
|
+
* Copyright © 2023 Progress Software Corporation. All rights reserved.
|
|
3
|
+
* Licensed under commercial license. See LICENSE.md in the package root for more information
|
|
4
|
+
*-------------------------------------------------------------------------------------------*/
|
|
2
5
|
import { GridFilterOperator } from './GridFilterOperator';
|
|
3
6
|
/**
|
|
4
7
|
* The props of the GridFilterCell component
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
/**-----------------------------------------------------------------------------------------
|
|
2
|
+
* Copyright © 2023 Progress Software Corporation. All rights reserved.
|
|
3
|
+
* Licensed under commercial license. See LICENSE.md in the package root for more information
|
|
4
|
+
*-------------------------------------------------------------------------------------------*/
|
|
5
|
+
import { FilterOperator } from '@progress/kendo-react-data-tools';
|
|
6
|
+
/**
|
|
7
|
+
* The filter operator for the Grid filters.
|
|
8
|
+
*/
|
|
9
|
+
export interface GridFilterOperator extends FilterOperator {
|
|
10
|
+
}
|
|
@@ -1,3 +1,7 @@
|
|
|
1
|
+
/**-----------------------------------------------------------------------------------------
|
|
2
|
+
* Copyright © 2023 Progress Software Corporation. All rights reserved.
|
|
3
|
+
* Licensed under commercial license. See LICENSE.md in the package root for more information
|
|
4
|
+
*-------------------------------------------------------------------------------------------*/
|
|
1
5
|
import { GridFilterOperator } from './GridFilterOperator';
|
|
2
6
|
/**
|
|
3
7
|
* The filter operators for the Grid filters.
|
|
@@ -1,4 +1,7 @@
|
|
|
1
|
-
|
|
1
|
+
/**-----------------------------------------------------------------------------------------
|
|
2
|
+
* Copyright © 2023 Progress Software Corporation. All rights reserved.
|
|
3
|
+
* Licensed under commercial license. See LICENSE.md in the package root for more information
|
|
4
|
+
*-------------------------------------------------------------------------------------------*/
|
|
2
5
|
/**
|
|
3
6
|
* The props of the GridFooterCell component
|
|
4
7
|
* ([see example]({% slug cells_grid %}#toc-footer-cells)).
|
|
@@ -1,3 +1,7 @@
|
|
|
1
|
+
/**-----------------------------------------------------------------------------------------
|
|
2
|
+
* Copyright © 2023 Progress Software Corporation. All rights reserved.
|
|
3
|
+
* Licensed under commercial license. See LICENSE.md in the package root for more information
|
|
4
|
+
*-------------------------------------------------------------------------------------------*/
|
|
1
5
|
/**
|
|
2
6
|
* The settings for grouping the data of the Grid ([see example]({% slug groupingaggregates_grid %})).
|
|
3
7
|
*/
|
|
@@ -1,4 +1,7 @@
|
|
|
1
|
-
|
|
1
|
+
/**-----------------------------------------------------------------------------------------
|
|
2
|
+
* Copyright © 2023 Progress Software Corporation. All rights reserved.
|
|
3
|
+
* Licensed under commercial license. See LICENSE.md in the package root for more information
|
|
4
|
+
*-------------------------------------------------------------------------------------------*/
|
|
2
5
|
import { HeaderCellBaseProps } from '@progress/kendo-react-data-tools';
|
|
3
6
|
import { GridColumnMenuWrapperProps } from '../columnMenu/GridColumnMenuWrapper';
|
|
4
7
|
/**
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
/**-----------------------------------------------------------------------------------------
|
|
2
|
+
* Copyright © 2023 Progress Software Corporation. All rights reserved.
|
|
3
|
+
* Licensed under commercial license. See LICENSE.md in the package root for more information
|
|
4
|
+
*-------------------------------------------------------------------------------------------*/
|
|
5
|
+
/**
|
|
6
|
+
* The props of the GridNoRecords component.
|
|
7
|
+
*/
|
|
8
|
+
export interface GridNoRecordsProps {
|
|
9
|
+
/**
|
|
10
|
+
* The React elements that will be rendered inside the Grid when no records are available.
|
|
11
|
+
*/
|
|
12
|
+
children?: React.ReactNode;
|
|
13
|
+
}
|
|
@@ -1,3 +1,7 @@
|
|
|
1
|
+
/**-----------------------------------------------------------------------------------------
|
|
2
|
+
* Copyright © 2023 Progress Software Corporation. All rights reserved.
|
|
3
|
+
* Licensed under commercial license. See LICENSE.md in the package root for more information
|
|
4
|
+
*-------------------------------------------------------------------------------------------*/
|
|
1
5
|
import { ComponentType } from 'react';
|
|
2
6
|
import { DataResult, SortDescriptor, CompositeFilterDescriptor, GroupDescriptor } from '@progress/kendo-data-query';
|
|
3
7
|
import { GridGroupableSettings } from './GridGroupableSettings';
|
|
@@ -1,4 +1,7 @@
|
|
|
1
|
-
|
|
1
|
+
/**-----------------------------------------------------------------------------------------
|
|
2
|
+
* Copyright © 2023 Progress Software Corporation. All rights reserved.
|
|
3
|
+
* Licensed under commercial license. See LICENSE.md in the package root for more information
|
|
4
|
+
*-------------------------------------------------------------------------------------------*/
|
|
2
5
|
import { KendoReactComponentBaseProps } from '@progress/kendo-react-common';
|
|
3
6
|
import { GridRowType } from './GridRowType';
|
|
4
7
|
/**
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
/**-----------------------------------------------------------------------------------------
|
|
2
|
+
* Copyright © 2023 Progress Software Corporation. All rights reserved.
|
|
3
|
+
* Licensed under commercial license. See LICENSE.md in the package root for more information
|
|
4
|
+
*-------------------------------------------------------------------------------------------*/
|
|
5
|
+
/**
|
|
6
|
+
* The type of the GridRow component.
|
|
7
|
+
*
|
|
8
|
+
* The available values are:
|
|
9
|
+
* - `groupHeader`—The row is a group header.
|
|
10
|
+
* - `groupFooter`—The row is a group footer.
|
|
11
|
+
* - `data`—The row corresponds to an item from the `data` collection which is passed to the Grid.
|
|
12
|
+
*/
|
|
13
|
+
export type GridRowType = 'groupFooter' | 'groupHeader' | 'data';
|
|
@@ -1,8 +1,12 @@
|
|
|
1
|
+
/**-----------------------------------------------------------------------------------------
|
|
2
|
+
* Copyright © 2023 Progress Software Corporation. All rights reserved.
|
|
3
|
+
* Licensed under commercial license. See LICENSE.md in the package root for more information
|
|
4
|
+
*-------------------------------------------------------------------------------------------*/
|
|
1
5
|
import { TableSelectableMode, TableSelectableSettings } from '@progress/kendo-react-data-tools';
|
|
2
6
|
/**
|
|
3
7
|
* Represents the available selection modes.
|
|
4
8
|
*/
|
|
5
|
-
export
|
|
9
|
+
export type GridSelectableMode = TableSelectableMode;
|
|
6
10
|
/**
|
|
7
11
|
* Represents the Grid selectable settings.
|
|
8
12
|
*/
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
/**-----------------------------------------------------------------------------------------
|
|
2
|
+
* Copyright © 2023 Progress Software Corporation. All rights reserved.
|
|
3
|
+
* Licensed under commercial license. See LICENSE.md in the package root for more information
|
|
4
|
+
*-------------------------------------------------------------------------------------------*/
|
|
5
|
+
import { ColumnSortSettings, SortSettings } from '@progress/kendo-react-data-tools';
|
|
6
|
+
/**
|
|
7
|
+
* The settings for sorting the Grid columns.
|
|
8
|
+
*/
|
|
9
|
+
export type GridColumnSortSettings = ColumnSortSettings;
|
|
10
|
+
/**
|
|
11
|
+
* The settings for sorting the Grid data.
|
|
12
|
+
*/
|
|
13
|
+
export type GridSortSettings = SortSettings;
|
|
14
|
+
/**
|
|
15
|
+
* @hidden
|
|
16
|
+
*/
|
|
17
|
+
export declare const normalize: (...settings: (GridSortSettings | GridColumnSortSettings)[]) => any;
|
|
@@ -1,4 +1,7 @@
|
|
|
1
|
-
|
|
1
|
+
/**-----------------------------------------------------------------------------------------
|
|
2
|
+
* Copyright © 2023 Progress Software Corporation. All rights reserved.
|
|
3
|
+
* Licensed under commercial license. See LICENSE.md in the package root for more information
|
|
4
|
+
*-------------------------------------------------------------------------------------------*/
|
|
2
5
|
/**
|
|
3
6
|
* The properties of the GridToolbar component.
|
|
4
7
|
*/
|
|
@@ -1,3 +1,7 @@
|
|
|
1
|
+
/**-----------------------------------------------------------------------------------------
|
|
2
|
+
* Copyright © 2023 Progress Software Corporation. All rights reserved.
|
|
3
|
+
* Licensed under commercial license. See LICENSE.md in the package root for more information
|
|
4
|
+
*-------------------------------------------------------------------------------------------*/
|
|
1
5
|
import { Page } from '../paging/Page';
|
|
2
6
|
import { SyntheticEvent, RefObject } from 'react';
|
|
3
7
|
import { RowHeightService } from '../VirtualScrollFixed';
|
|
@@ -1,4 +1,7 @@
|
|
|
1
|
-
|
|
1
|
+
/**-----------------------------------------------------------------------------------------
|
|
2
|
+
* Copyright © 2023 Progress Software Corporation. All rights reserved.
|
|
3
|
+
* Licensed under commercial license. See LICENSE.md in the package root for more information
|
|
4
|
+
*-------------------------------------------------------------------------------------------*/
|
|
2
5
|
import { SortDescriptor, CompositeFilterDescriptor, GroupDescriptor, State } from '@progress/kendo-data-query';
|
|
3
6
|
import { Grid } from '../Grid';
|
|
4
7
|
import { Page } from '../paging/Page';
|
|
@@ -1,3 +1,7 @@
|
|
|
1
|
+
/**-----------------------------------------------------------------------------------------
|
|
2
|
+
* Copyright © 2023 Progress Software Corporation. All rights reserved.
|
|
3
|
+
* Licensed under commercial license. See LICENSE.md in the package root for more information
|
|
4
|
+
*-------------------------------------------------------------------------------------------*/
|
|
1
5
|
/**
|
|
2
6
|
* @hidden
|
|
3
7
|
*/
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
/**-----------------------------------------------------------------------------------------
|
|
2
|
+
* Copyright © 2023 Progress Software Corporation. All rights reserved.
|
|
3
|
+
* Licensed under commercial license. See LICENSE.md in the package root for more information
|
|
4
|
+
*-------------------------------------------------------------------------------------------*/
|
|
5
|
+
import { PackageMetadata } from '@progress/kendo-licensing';
|
|
6
|
+
/**
|
|
7
|
+
* @hidden
|
|
8
|
+
*/
|
|
9
|
+
export declare const packageMetadata: PackageMetadata;
|
package/package.json
CHANGED
|
@@ -1,20 +1,39 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progress/kendo-react-grid",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "7.0.0-develop.1",
|
|
4
4
|
"description": "React Data Grid (Table) provides 100+ ready-to-use data grid features. KendoReact Grid package",
|
|
5
|
-
"
|
|
6
|
-
|
|
7
|
-
|
|
5
|
+
"author": "Progress",
|
|
6
|
+
"license": "SEE LICENSE IN LICENSE.md",
|
|
7
|
+
"homepage": "https://www.telerik.com/kendo-react-ui",
|
|
8
|
+
"main": "./index.js",
|
|
9
|
+
"types": "./index.d.ts",
|
|
10
|
+
"exports": {
|
|
11
|
+
".": {
|
|
12
|
+
"import": "./index.mjs",
|
|
13
|
+
"require": "./index.js"
|
|
14
|
+
}
|
|
8
15
|
},
|
|
9
|
-
"
|
|
10
|
-
"
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
"
|
|
15
|
-
"
|
|
16
|
+
"sideEffects": false,
|
|
17
|
+
"peerDependencies": {
|
|
18
|
+
"@progress/kendo-data-query": "^1.0.0",
|
|
19
|
+
"@progress/kendo-drawing": "^1.17.2",
|
|
20
|
+
"@progress/kendo-licensing": "^1.3.0",
|
|
21
|
+
"@progress/kendo-react-animation": "7.0.0-develop.1",
|
|
22
|
+
"@progress/kendo-react-buttons": "7.0.0-develop.1",
|
|
23
|
+
"@progress/kendo-react-common": "7.0.0-develop.1",
|
|
24
|
+
"@progress/kendo-react-data-tools": "7.0.0-develop.1",
|
|
25
|
+
"@progress/kendo-react-dateinputs": "7.0.0-develop.1",
|
|
26
|
+
"@progress/kendo-react-dropdowns": "7.0.0-develop.1",
|
|
27
|
+
"@progress/kendo-react-inputs": "7.0.0-develop.1",
|
|
28
|
+
"@progress/kendo-react-intl": "7.0.0-develop.1",
|
|
29
|
+
"@progress/kendo-react-popup": "7.0.0-develop.1",
|
|
30
|
+
"@progress/kendo-svg-icons": "^2.0.0",
|
|
31
|
+
"react": "^16.8.2 || ^17.0.0 || ^18.0.0",
|
|
32
|
+
"react-dom": "^16.8.2 || ^17.0.0 || ^18.0.0"
|
|
33
|
+
},
|
|
34
|
+
"dependencies": {
|
|
35
|
+
"prop-types": "^15.6.0"
|
|
16
36
|
},
|
|
17
|
-
"homepage": "https://www.telerik.com/kendo-react-ui",
|
|
18
37
|
"keywords": [
|
|
19
38
|
"Kendo UI",
|
|
20
39
|
"React",
|
|
@@ -33,57 +52,15 @@
|
|
|
33
52
|
"Excel export",
|
|
34
53
|
"Telerik"
|
|
35
54
|
],
|
|
36
|
-
"peerDependencies": {
|
|
37
|
-
"@progress/kendo-data-query": "^1.0.0",
|
|
38
|
-
"@progress/kendo-drawing": "^1.17.2",
|
|
39
|
-
"@progress/kendo-licensing": "^1.3.0",
|
|
40
|
-
"@progress/kendo-react-animation": "^6.0.0",
|
|
41
|
-
"@progress/kendo-react-buttons": "^6.0.0",
|
|
42
|
-
"@progress/kendo-react-data-tools": "^6.0.0",
|
|
43
|
-
"@progress/kendo-react-dateinputs": "^6.0.0",
|
|
44
|
-
"@progress/kendo-react-dropdowns": "^6.0.0",
|
|
45
|
-
"@progress/kendo-react-inputs": "^6.0.0",
|
|
46
|
-
"@progress/kendo-react-intl": "^6.0.0",
|
|
47
|
-
"@progress/kendo-react-popup": "^6.0.0",
|
|
48
|
-
"@progress/kendo-svg-icons": "^2.0.0",
|
|
49
|
-
"react": "^16.8.2 || ^17.0.0 || ^18.0.0",
|
|
50
|
-
"react-dom": "^16.8.2 || ^17.0.0 || ^18.0.0"
|
|
51
|
-
},
|
|
52
|
-
"dependencies": {
|
|
53
|
-
"@progress/kendo-react-common": "6.1.1",
|
|
54
|
-
"prop-types": "^15.6.0"
|
|
55
|
-
},
|
|
56
|
-
"devDependencies": {
|
|
57
|
-
"@progress/kendo-data-query": "^1.0.0",
|
|
58
|
-
"@progress/kendo-date-math": "^1.4.1",
|
|
59
|
-
"@progress/kendo-drawing": "^1.17.2",
|
|
60
|
-
"@progress/kendo-licensing": "^1.3.0",
|
|
61
|
-
"@progress/kendo-react-animation": "6.1.1",
|
|
62
|
-
"@progress/kendo-react-buttons": "6.1.1",
|
|
63
|
-
"@progress/kendo-react-data-tools": "6.1.1",
|
|
64
|
-
"@progress/kendo-react-dateinputs": "6.1.1",
|
|
65
|
-
"@progress/kendo-react-dialogs": "6.1.1",
|
|
66
|
-
"@progress/kendo-react-dropdowns": "6.1.1",
|
|
67
|
-
"@progress/kendo-react-excel-export": "6.1.1",
|
|
68
|
-
"@progress/kendo-react-form": "6.1.1",
|
|
69
|
-
"@progress/kendo-react-indicators": "6.1.1",
|
|
70
|
-
"@progress/kendo-react-inputs": "6.1.1",
|
|
71
|
-
"@progress/kendo-react-intl": "6.1.1",
|
|
72
|
-
"@progress/kendo-react-labels": "6.1.1",
|
|
73
|
-
"@progress/kendo-react-layout": "6.1.1",
|
|
74
|
-
"@progress/kendo-react-pdf": "6.1.1",
|
|
75
|
-
"@progress/kendo-react-popup": "6.1.1",
|
|
76
|
-
"@progress/kendo-react-treeview": "6.1.1",
|
|
77
|
-
"@progress/kendo-svg-icons": "^2.0.0"
|
|
78
|
-
},
|
|
79
55
|
"@progress": {
|
|
80
56
|
"friendlyName": "Grid",
|
|
81
57
|
"framework": "KendoReact"
|
|
82
58
|
},
|
|
83
|
-
"author": "Progress",
|
|
84
|
-
"license": "SEE LICENSE IN LICENSE.md",
|
|
85
59
|
"publishConfig": {
|
|
86
60
|
"access": "public"
|
|
87
61
|
},
|
|
88
|
-
"
|
|
89
|
-
|
|
62
|
+
"repository": {
|
|
63
|
+
"type": "git",
|
|
64
|
+
"url": "https://github.com/telerik/kendo-react.git"
|
|
65
|
+
}
|
|
66
|
+
}
|
|
@@ -1,3 +1,7 @@
|
|
|
1
|
+
/**-----------------------------------------------------------------------------------------
|
|
2
|
+
* Copyright © 2023 Progress Software Corporation. All rights reserved.
|
|
3
|
+
* Licensed under commercial license. See LICENSE.md in the package root for more information
|
|
4
|
+
*-------------------------------------------------------------------------------------------*/
|
|
1
5
|
/**
|
|
2
6
|
* The type of the Grid pager.
|
|
3
7
|
*
|
|
@@ -15,7 +19,7 @@
|
|
|
15
19
|
* </Grid>
|
|
16
20
|
* ```
|
|
17
21
|
*/
|
|
18
|
-
export
|
|
22
|
+
export type GridPagerType = 'numeric' | 'input';
|
|
19
23
|
/**
|
|
20
24
|
* The pager settings of the Grid ([see example]({% slug paging_grid %})).
|
|
21
25
|
*
|
|
@@ -30,7 +34,7 @@ export declare type GridPagerType = 'numeric' | 'input';
|
|
|
30
34
|
* </Grid>
|
|
31
35
|
* ```
|
|
32
36
|
*/
|
|
33
|
-
export
|
|
37
|
+
export type GridPagerSettings = {
|
|
34
38
|
/**
|
|
35
39
|
* Sets the selected value of the page size Dropdownlist.
|
|
36
40
|
* It is useful when the selected value could also be a string not only a number.
|
package/paging/Page.d.ts
ADDED
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
/**-----------------------------------------------------------------------------------------
|
|
2
|
+
* Copyright © 2023 Progress Software Corporation. All rights reserved.
|
|
3
|
+
* Licensed under commercial license. See LICENSE.md in the package root for more information
|
|
4
|
+
*-------------------------------------------------------------------------------------------*/
|
|
5
|
+
/**
|
|
6
|
+
* Represents the `skip` and `take` configurations which are wrapped in the `Page` object.
|
|
7
|
+
*/
|
|
8
|
+
export interface Page {
|
|
9
|
+
/**
|
|
10
|
+
* The number of records that will be skipped.
|
|
11
|
+
*/
|
|
12
|
+
skip: number;
|
|
13
|
+
/**
|
|
14
|
+
* The number of records that will be taken.
|
|
15
|
+
*/
|
|
16
|
+
take: number;
|
|
17
|
+
}
|
|
@@ -1,3 +1,7 @@
|
|
|
1
|
+
/**-----------------------------------------------------------------------------------------
|
|
2
|
+
* Copyright © 2023 Progress Software Corporation. All rights reserved.
|
|
3
|
+
* Licensed under commercial license. See LICENSE.md in the package root for more information
|
|
4
|
+
*-------------------------------------------------------------------------------------------*/
|
|
1
5
|
import * as React from 'react';
|
|
2
6
|
import { GridDetailRowProps } from '../interfaces/GridDetailRowProps';
|
|
3
7
|
/**
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
/**-----------------------------------------------------------------------------------------
|
|
2
|
+
* Copyright © 2023 Progress Software Corporation. All rights reserved.
|
|
3
|
+
* Licensed under commercial license. See LICENSE.md in the package root for more information
|
|
4
|
+
*-------------------------------------------------------------------------------------------*/
|
|
5
|
+
import * as React from 'react';
|
|
6
|
+
import { GridRowProps } from '../interfaces/GridRowProps';
|
|
7
|
+
/**
|
|
8
|
+
* The component for each of the items in the `data` property which the Grid renders.
|
|
9
|
+
*/
|
|
10
|
+
export declare class GridRow extends React.Component<GridRowProps, {}> {
|
|
11
|
+
/**
|
|
12
|
+
* @hidden
|
|
13
|
+
*/
|
|
14
|
+
render(): string | number | boolean | Iterable<React.ReactNode> | import("react/jsx-runtime").JSX.Element | null | undefined;
|
|
15
|
+
}
|
|
@@ -1,3 +1,14 @@
|
|
|
1
|
+
/**-----------------------------------------------------------------------------------------
|
|
2
|
+
* Copyright © 2023 Progress Software Corporation. All rights reserved.
|
|
3
|
+
* Licensed under commercial license. See LICENSE.md in the package root for more information
|
|
4
|
+
*-------------------------------------------------------------------------------------------*/
|
|
5
|
+
import * as React from 'react';
|
|
6
|
+
import { GridProps } from '../interfaces/GridProps';
|
|
7
|
+
import { ExtendedColumnProps } from '../GridColumn';
|
|
8
|
+
import { DataResult, GroupDescriptor } from '@progress/kendo-data-query';
|
|
9
|
+
import { GridRowType } from '../interfaces/GridRowType';
|
|
10
|
+
import { GridColumnProps } from '../interfaces/GridColumnProps';
|
|
11
|
+
import { GridCellsSettings } from '../interfaces/GridCellsSettings';
|
|
1
12
|
/**
|
|
2
13
|
* @hidden
|
|
3
14
|
*/
|
|
@@ -22,13 +33,6 @@ export declare function flatData(output: Array<DataItemWrapper>, input: Array<an
|
|
|
22
33
|
* @hidden
|
|
23
34
|
*/
|
|
24
35
|
export declare function checkPropCompatibility(props: GridProps): void;
|
|
25
|
-
import * as React from 'react';
|
|
26
|
-
import { GridProps } from '../interfaces/GridProps';
|
|
27
|
-
import { ExtendedColumnProps } from '../GridColumn';
|
|
28
|
-
import { DataResult, GroupDescriptor } from '@progress/kendo-data-query';
|
|
29
|
-
import { GridRowType } from '../interfaces/GridRowType';
|
|
30
|
-
import { GridColumnProps } from '../interfaces/GridColumnProps';
|
|
31
|
-
import { GridCellsSettings } from '../interfaces/GridCellsSettings';
|
|
32
36
|
/**
|
|
33
37
|
* @hidden
|
|
34
38
|
*/
|
package/about.md
DELETED
|
@@ -1,3 +0,0 @@
|
|
|
1
|
-
<a href="https://www.telerik.com/kendo-react-ui?utm_medium=referral&utm_source=npm&utm_campaign=kendo-ui-react-trial-npm-grid&utm_content=banner" target="_blank">
|
|
2
|
-
<img src="https://www.telerik.com/kendo-react-ui/components/npm-banner.svg" alt="KendoReact NPM Banner">
|
|
3
|
-
</a>
|