@mui/x-data-grid 8.0.0-beta.3 → 8.1.0
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/CHANGELOG.md +388 -96
- package/DataGrid/DataGrid.js +5 -2
- package/DataGrid/index.d.ts +1 -0
- package/DataGrid/index.js +1 -0
- package/DataGrid/useDataGridComponent.d.ts +2 -2
- package/DataGrid/useDataGridComponent.js +2 -3
- package/components/GridColumnSortButton.d.ts +16 -0
- package/components/GridColumnSortButton.js +109 -0
- package/components/GridColumnUnsortedIcon.d.ts +8 -0
- package/{material/icons → components}/GridColumnUnsortedIcon.js +1 -1
- package/components/GridRowCount.js +1 -2
- package/components/GridSelectedRowCount.js +1 -2
- package/components/GridShadowScrollArea.d.ts +2 -1
- package/components/GridShadowScrollArea.js +14 -3
- package/components/GridSkeletonLoadingOverlay.js +1 -2
- package/components/base/GridOverlays.js +3 -5
- package/components/cell/GridActionsCellItem.d.ts +2 -2
- package/components/cell/GridActionsCellItem.js +1 -1
- package/components/cell/GridCell.js +7 -0
- package/components/columnHeaders/GridBaseColumnHeaders.js +1 -2
- package/components/columnHeaders/GridColumnHeaderSortIcon.d.ts +3 -9
- package/components/columnHeaders/GridColumnHeaderSortIcon.js +18 -66
- package/components/columnHeaders/GridColumnHeaderTitle.js +1 -2
- package/components/columnHeaders/GridIconButtonContainer.js +1 -2
- package/components/columnsManagement/GridColumnsManagement.js +11 -7
- package/components/columnsPanel/ColumnsPanelTrigger.js +4 -4
- package/components/containers/GridFooterContainer.js +1 -2
- package/components/containers/GridOverlay.js +2 -0
- package/components/containers/GridRoot.d.ts +1 -0
- package/components/containers/GridRoot.js +12 -6
- package/components/containers/GridRootStyles.js +41 -16
- package/components/containers/GridToolbarContainer.d.ts +3 -0
- package/components/containers/GridToolbarContainer.js +4 -0
- package/components/filterPanel/FilterPanelTrigger.js +2 -2
- package/components/index.d.ts +1 -0
- package/components/index.js +12 -0
- package/components/panel/GridPanel.d.ts +1 -0
- package/components/panel/GridPanel.js +8 -7
- package/components/panel/GridPanelContext.d.ts +13 -0
- package/components/panel/{GridPreferencePanelContext.js → GridPanelContext.js} +11 -9
- package/components/panel/GridPanelFooter.js +1 -2
- package/components/panel/GridPanelHeader.js +1 -2
- package/components/panel/GridPreferencesPanel.js +19 -4
- package/components/panel/filterPanel/GridFilterForm.js +16 -13
- package/components/quickFilter/QuickFilterControl.js +2 -0
- package/components/toolbar/GridToolbar.d.ts +3 -0
- package/components/toolbar/GridToolbar.js +3 -0
- package/components/toolbar/GridToolbarColumnsButton.d.ts +3 -0
- package/components/toolbar/GridToolbarColumnsButton.js +5 -2
- package/components/toolbar/GridToolbarDensitySelector.d.ts +3 -0
- package/components/toolbar/GridToolbarDensitySelector.js +3 -0
- package/components/toolbar/GridToolbarExport.d.ts +3 -0
- package/components/toolbar/GridToolbarExport.js +4 -0
- package/components/toolbar/GridToolbarFilterButton.d.ts +3 -0
- package/components/toolbar/GridToolbarFilterButton.js +6 -4
- package/components/toolbar/GridToolbarQuickFilter.d.ts +3 -0
- package/components/toolbar/GridToolbarQuickFilter.js +4 -0
- package/components/toolbarV8/GridToolbar.d.ts +1 -0
- package/components/toolbarV8/GridToolbar.js +4 -1
- package/components/toolbarV8/Toolbar.d.ts +1 -5
- package/components/toolbarV8/Toolbar.js +1 -2
- package/components/virtualization/GridVirtualScrollerRenderZone.js +1 -2
- package/constants/cssVariables.d.ts +3 -0
- package/constants/cssVariables.js +2 -1
- package/constants/gridClasses.d.ts +215 -21
- package/constants/gridClasses.js +1 -1
- package/constants/localeTextConstants.js +79 -11
- package/context/GridContextProvider.js +2 -2
- package/esm/DataGrid/DataGrid.js +5 -2
- package/esm/DataGrid/index.d.ts +1 -0
- package/esm/DataGrid/index.js +1 -0
- package/esm/DataGrid/useDataGridComponent.d.ts +2 -2
- package/esm/DataGrid/useDataGridComponent.js +2 -3
- package/esm/components/GridColumnSortButton.d.ts +16 -0
- package/{modern/components/columnHeaders/GridColumnHeaderSortIcon.js → esm/components/GridColumnSortButton.js} +32 -15
- package/esm/components/GridColumnUnsortedIcon.d.ts +8 -0
- package/esm/{material/icons → components}/GridColumnUnsortedIcon.js +1 -1
- package/esm/components/GridRowCount.js +1 -2
- package/esm/components/GridSelectedRowCount.js +1 -2
- package/esm/components/GridShadowScrollArea.d.ts +2 -1
- package/esm/components/GridShadowScrollArea.js +14 -2
- package/esm/components/GridSkeletonLoadingOverlay.js +1 -2
- package/esm/components/base/GridOverlays.js +3 -5
- package/esm/components/cell/GridActionsCellItem.d.ts +2 -2
- package/esm/components/cell/GridActionsCellItem.js +1 -1
- package/esm/components/cell/GridCell.js +7 -0
- package/esm/components/columnHeaders/GridBaseColumnHeaders.js +1 -2
- package/esm/components/columnHeaders/GridColumnHeaderSortIcon.d.ts +3 -9
- package/esm/components/columnHeaders/GridColumnHeaderSortIcon.js +18 -66
- package/esm/components/columnHeaders/GridColumnHeaderTitle.js +1 -2
- package/esm/components/columnHeaders/GridIconButtonContainer.js +1 -2
- package/esm/components/columnsManagement/GridColumnsManagement.js +11 -7
- package/esm/components/columnsPanel/ColumnsPanelTrigger.js +4 -4
- package/esm/components/containers/GridFooterContainer.js +1 -2
- package/esm/components/containers/GridOverlay.js +2 -0
- package/esm/components/containers/GridRoot.d.ts +1 -0
- package/esm/components/containers/GridRoot.js +13 -7
- package/esm/components/containers/GridRootStyles.js +41 -16
- package/esm/components/containers/GridToolbarContainer.d.ts +3 -0
- package/esm/components/containers/GridToolbarContainer.js +4 -0
- package/esm/components/filterPanel/FilterPanelTrigger.js +2 -2
- package/esm/components/index.d.ts +1 -0
- package/esm/components/index.js +1 -0
- package/esm/components/panel/GridPanel.d.ts +1 -0
- package/esm/components/panel/GridPanel.js +8 -7
- package/esm/components/panel/GridPanelContext.d.ts +13 -0
- package/{modern/components/panel/GridPreferencePanelContext.js → esm/components/panel/GridPanelContext.js} +8 -6
- package/esm/components/panel/GridPanelFooter.js +1 -2
- package/esm/components/panel/GridPanelHeader.js +1 -2
- package/esm/components/panel/GridPreferencesPanel.js +19 -4
- package/esm/components/panel/filterPanel/GridFilterForm.js +16 -13
- package/esm/components/quickFilter/QuickFilterControl.js +2 -0
- package/esm/components/toolbar/GridToolbar.d.ts +3 -0
- package/esm/components/toolbar/GridToolbar.js +3 -0
- package/esm/components/toolbar/GridToolbarColumnsButton.d.ts +3 -0
- package/esm/components/toolbar/GridToolbarColumnsButton.js +5 -2
- package/esm/components/toolbar/GridToolbarDensitySelector.d.ts +3 -0
- package/esm/components/toolbar/GridToolbarDensitySelector.js +3 -0
- package/esm/components/toolbar/GridToolbarExport.d.ts +3 -0
- package/esm/components/toolbar/GridToolbarExport.js +4 -0
- package/esm/components/toolbar/GridToolbarFilterButton.d.ts +3 -0
- package/esm/components/toolbar/GridToolbarFilterButton.js +6 -4
- package/esm/components/toolbar/GridToolbarQuickFilter.d.ts +3 -0
- package/esm/components/toolbar/GridToolbarQuickFilter.js +4 -0
- package/esm/components/toolbarV8/GridToolbar.d.ts +1 -0
- package/esm/components/toolbarV8/GridToolbar.js +4 -1
- package/esm/components/toolbarV8/Toolbar.d.ts +1 -5
- package/esm/components/toolbarV8/Toolbar.js +1 -2
- package/esm/components/virtualization/GridVirtualScrollerRenderZone.js +1 -2
- package/esm/constants/cssVariables.d.ts +3 -0
- package/esm/constants/cssVariables.js +2 -1
- package/esm/constants/gridClasses.d.ts +215 -21
- package/esm/constants/gridClasses.js +1 -1
- package/esm/constants/localeTextConstants.js +79 -11
- package/esm/context/GridContextProvider.js +2 -2
- package/esm/hooks/core/useGridInitialization.d.ts +2 -2
- package/esm/hooks/core/useGridInitialization.js +1 -4
- package/esm/hooks/features/columnGrouping/useGridColumnGrouping.d.ts +1 -1
- package/esm/hooks/features/columnHeaders/useGridColumnHeaders.js +1 -2
- package/esm/hooks/features/columns/gridColumnsUtils.d.ts +1 -0
- package/esm/hooks/features/columns/gridColumnsUtils.js +1 -1
- package/esm/hooks/features/columns/useGridColumns.js +8 -2
- package/esm/hooks/features/dataSource/cache.d.ts +1 -1
- package/esm/hooks/features/dataSource/cache.js +1 -1
- package/esm/hooks/features/dataSource/models.d.ts +15 -2
- package/esm/hooks/features/dataSource/useGridDataSourceBase.d.ts +3 -8
- package/esm/hooks/features/dataSource/useGridDataSourceBase.js +38 -6
- package/esm/hooks/features/dataSource/utils.d.ts +1 -1
- package/esm/hooks/features/editing/useGridCellEditing.d.ts +1 -1
- package/esm/hooks/features/editing/useGridCellEditing.js +26 -3
- package/esm/hooks/features/editing/useGridEditing.d.ts +1 -1
- package/esm/hooks/features/editing/useGridRowEditing.d.ts +1 -1
- package/esm/hooks/features/editing/useGridRowEditing.js +26 -2
- package/esm/hooks/features/keyboardNavigation/useGridKeyboardNavigation.d.ts +1 -1
- package/esm/hooks/features/overlays/useGridOverlays.d.ts +1 -1
- package/esm/hooks/features/overlays/useGridOverlays.js +9 -3
- package/esm/hooks/features/pivoting/gridPivotingInterfaces.d.ts +11 -0
- package/esm/hooks/features/pivoting/gridPivotingSelectors.d.ts +6 -0
- package/esm/hooks/features/pivoting/gridPivotingSelectors.js +8 -0
- package/esm/hooks/features/pivoting/index.d.ts +2 -0
- package/esm/hooks/features/pivoting/index.js +2 -0
- package/esm/hooks/features/preferencesPanel/gridPreferencePanelsValue.d.ts +1 -0
- package/esm/hooks/features/preferencesPanel/gridPreferencePanelsValue.js +1 -0
- package/esm/hooks/features/rowSelection/useGridRowSelection.js +7 -6
- package/esm/hooks/features/rows/useGridParamsApi.js +1 -1
- package/esm/hooks/features/rows/useGridRows.js +12 -6
- package/esm/hooks/features/virtualization/useGridVirtualScroller.js +5 -5
- package/esm/hooks/utils/useGridSelector.js +1 -4
- package/esm/hooks/utils/useIsSSR.js +1 -4
- package/esm/index.css +5 -0
- package/esm/index.js +1 -1
- package/esm/internals/index.d.ts +11 -4
- package/esm/internals/index.js +8 -3
- package/esm/locales/arSD.js +86 -11
- package/esm/locales/beBY.js +86 -11
- package/esm/locales/bgBG.js +86 -11
- package/esm/locales/bnBD.js +87 -11
- package/esm/locales/csCZ.js +87 -11
- package/esm/locales/daDK.js +86 -11
- package/esm/locales/deDE.js +87 -11
- package/esm/locales/elGR.js +86 -11
- package/esm/locales/esES.js +86 -11
- package/esm/locales/faIR.js +86 -11
- package/esm/locales/fiFI.js +86 -11
- package/esm/locales/frFR.js +86 -11
- package/esm/locales/heIL.js +86 -11
- package/esm/locales/hrHR.js +99 -29
- package/esm/locales/huHU.js +87 -11
- package/{modern/locales/arSD.d.ts → esm/locales/hyAM.d.ts} +1 -1
- package/esm/locales/hyAM.js +296 -0
- package/esm/locales/index.d.ts +1 -0
- package/esm/locales/index.js +1 -0
- package/esm/locales/isIS.js +86 -11
- package/esm/locales/itIT.js +86 -11
- package/esm/locales/jaJP.js +86 -11
- package/esm/locales/koKR.js +86 -11
- package/esm/locales/nbNO.js +86 -11
- package/esm/locales/nlNL.js +87 -11
- package/esm/locales/nnNO.js +86 -11
- package/esm/locales/plPL.js +88 -13
- package/esm/locales/ptBR.js +86 -11
- package/esm/locales/ptPT.js +86 -11
- package/esm/locales/roRO.js +86 -11
- package/esm/locales/ruRU.js +87 -11
- package/esm/locales/skSK.js +87 -11
- package/esm/locales/svSE.js +89 -14
- package/esm/locales/trTR.js +86 -11
- package/esm/locales/ukUA.js +87 -11
- package/esm/locales/urPK.js +86 -11
- package/esm/locales/viVN.js +86 -11
- package/esm/locales/zhCN.js +87 -11
- package/esm/locales/zhHK.js +87 -11
- package/esm/locales/zhTW.js +87 -11
- package/esm/material/augmentation.d.ts +7 -0
- package/esm/material/icons/createSvgIcon.d.ts +2 -0
- package/esm/material/icons/createSvgIcon.js +2 -0
- package/esm/material/icons/index.d.ts +29 -84
- package/esm/material/icons/index.js +1 -1
- package/esm/material/index.js +71 -36
- package/esm/material/variables.js +2 -1
- package/esm/models/api/gridApiCommon.d.ts +2 -1
- package/esm/models/api/gridEditingApi.d.ts +1 -1
- package/esm/models/api/gridFocusApi.d.ts +1 -1
- package/esm/models/api/gridLocaleTextApi.d.ts +61 -9
- package/esm/models/api/gridPreferencesPanelApi.d.ts +1 -1
- package/esm/models/api/gridRowApi.d.ts +2 -3
- package/esm/models/colDef/gridColDef.d.ts +1 -1
- package/esm/models/configuration/gridConfiguration.d.ts +5 -0
- package/esm/models/events/gridEventListener.d.ts +1 -1
- package/esm/models/events/gridEventLookup.d.ts +1 -1
- package/esm/models/events/gridEventPublisher.d.ts +1 -1
- package/esm/models/gridBaseSlots.d.ts +18 -2
- package/esm/models/gridIconSlotsComponent.d.ts +37 -41
- package/esm/models/gridSlotsComponent.d.ts +5 -0
- package/esm/models/gridSlotsComponentsProps.d.ts +5 -2
- package/esm/models/index.d.ts +2 -2
- package/esm/models/index.js +0 -1
- package/esm/models/params/gridColumnResizeParams.d.ts +0 -1
- package/esm/package.json +1 -1
- package/hooks/core/useGridInitialization.d.ts +2 -2
- package/hooks/core/useGridInitialization.js +1 -4
- package/hooks/features/columnGrouping/useGridColumnGrouping.d.ts +1 -1
- package/hooks/features/columnHeaders/useGridColumnHeaders.js +1 -2
- package/hooks/features/columns/gridColumnsUtils.d.ts +1 -0
- package/hooks/features/columns/gridColumnsUtils.js +1 -0
- package/hooks/features/columns/useGridColumns.js +8 -2
- package/hooks/features/dataSource/cache.d.ts +1 -1
- package/hooks/features/dataSource/cache.js +1 -1
- package/hooks/features/dataSource/models.d.ts +15 -2
- package/hooks/features/dataSource/useGridDataSourceBase.d.ts +3 -8
- package/hooks/features/dataSource/useGridDataSourceBase.js +37 -5
- package/hooks/features/dataSource/utils.d.ts +1 -1
- package/hooks/features/editing/useGridCellEditing.d.ts +1 -1
- package/hooks/features/editing/useGridCellEditing.js +26 -3
- package/hooks/features/editing/useGridEditing.d.ts +1 -1
- package/hooks/features/editing/useGridRowEditing.d.ts +1 -1
- package/hooks/features/editing/useGridRowEditing.js +26 -2
- package/hooks/features/keyboardNavigation/useGridKeyboardNavigation.d.ts +1 -1
- package/hooks/features/overlays/useGridOverlays.d.ts +1 -1
- package/hooks/features/overlays/useGridOverlays.js +9 -3
- package/hooks/features/pivoting/gridPivotingInterfaces.d.ts +11 -0
- package/hooks/features/pivoting/gridPivotingSelectors.d.ts +6 -0
- package/hooks/features/pivoting/gridPivotingSelectors.js +14 -0
- package/hooks/features/pivoting/index.d.ts +2 -0
- package/hooks/features/pivoting/index.js +27 -0
- package/hooks/features/preferencesPanel/gridPreferencePanelsValue.d.ts +1 -0
- package/hooks/features/preferencesPanel/gridPreferencePanelsValue.js +1 -0
- package/hooks/features/rowSelection/useGridRowSelection.js +7 -6
- package/hooks/features/rows/useGridParamsApi.js +1 -1
- package/hooks/features/rows/useGridRows.js +12 -6
- package/hooks/features/virtualization/useGridVirtualScroller.js +5 -5
- package/hooks/utils/useGridSelector.js +2 -6
- package/hooks/utils/useIsSSR.js +2 -6
- package/index.css +5 -0
- package/index.js +1 -1
- package/internals/index.d.ts +11 -4
- package/internals/index.js +60 -2
- package/locales/arSD.js +86 -11
- package/locales/beBY.js +86 -11
- package/locales/bgBG.js +86 -11
- package/locales/bnBD.js +87 -11
- package/locales/csCZ.js +87 -11
- package/locales/daDK.js +86 -11
- package/locales/deDE.js +87 -11
- package/locales/elGR.js +86 -11
- package/locales/esES.js +86 -11
- package/locales/faIR.js +86 -11
- package/locales/fiFI.js +86 -11
- package/locales/frFR.js +86 -11
- package/locales/heIL.js +86 -11
- package/locales/hrHR.js +99 -29
- package/locales/huHU.js +87 -11
- package/{modern/locales/beBY.d.ts → locales/hyAM.d.ts} +1 -1
- package/locales/hyAM.js +302 -0
- package/locales/index.d.ts +1 -0
- package/locales/index.js +11 -0
- package/locales/isIS.js +86 -11
- package/locales/itIT.js +86 -11
- package/locales/jaJP.js +86 -11
- package/locales/koKR.js +86 -11
- package/locales/nbNO.js +86 -11
- package/locales/nlNL.js +87 -11
- package/locales/nnNO.js +86 -11
- package/locales/plPL.js +88 -13
- package/locales/ptBR.js +86 -11
- package/locales/ptPT.js +86 -11
- package/locales/roRO.js +86 -11
- package/locales/ruRU.js +87 -11
- package/locales/skSK.js +87 -11
- package/locales/svSE.js +89 -14
- package/locales/trTR.js +86 -11
- package/locales/ukUA.js +87 -11
- package/locales/urPK.js +86 -11
- package/locales/viVN.js +86 -11
- package/locales/zhCN.js +87 -11
- package/locales/zhHK.js +87 -11
- package/locales/zhTW.js +87 -11
- package/material/augmentation.d.ts +7 -0
- package/material/icons/createSvgIcon.d.ts +2 -0
- package/material/icons/createSvgIcon.js +8 -0
- package/material/icons/index.d.ts +29 -84
- package/material/icons/index.js +29 -29
- package/material/index.js +71 -36
- package/material/variables.js +2 -1
- package/models/api/gridApiCommon.d.ts +2 -1
- package/models/api/gridEditingApi.d.ts +1 -1
- package/models/api/gridFocusApi.d.ts +1 -1
- package/models/api/gridLocaleTextApi.d.ts +61 -9
- package/models/api/gridPreferencesPanelApi.d.ts +1 -1
- package/models/api/gridRowApi.d.ts +2 -3
- package/models/colDef/gridColDef.d.ts +1 -1
- package/models/configuration/gridConfiguration.d.ts +5 -0
- package/models/events/gridEventListener.d.ts +1 -1
- package/models/events/gridEventLookup.d.ts +1 -1
- package/models/events/gridEventPublisher.d.ts +1 -1
- package/models/gridBaseSlots.d.ts +18 -2
- package/models/gridIconSlotsComponent.d.ts +37 -41
- package/models/gridSlotsComponent.d.ts +5 -0
- package/models/gridSlotsComponentsProps.d.ts +5 -2
- package/models/index.d.ts +2 -2
- package/models/index.js +0 -12
- package/models/params/gridColumnResizeParams.d.ts +0 -1
- package/package.json +7 -13
- package/components/panel/GridPreferencePanelContext.d.ts +0 -12
- package/esm/components/panel/GridPreferencePanelContext.d.ts +0 -12
- package/esm/components/panel/GridPreferencePanelContext.js +0 -24
- package/esm/material/icons/GridColumnUnsortedIcon.d.ts +0 -8
- package/esm/models/muiEvent.d.ts +0 -5
- package/material/icons/GridColumnUnsortedIcon.d.ts +0 -8
- package/models/muiEvent.d.ts +0 -5
- package/modern/DataGrid/DataGrid.d.ts +0 -16
- package/modern/DataGrid/DataGrid.js +0 -792
- package/modern/DataGrid/index.d.ts +0 -1
- package/modern/DataGrid/index.js +0 -1
- package/modern/DataGrid/useDataGridComponent.d.ts +0 -4
- package/modern/DataGrid/useDataGridComponent.js +0 -94
- package/modern/DataGrid/useDataGridProps.d.ts +0 -3
- package/modern/DataGrid/useDataGridProps.js +0 -49
- package/modern/colDef/gridActionsColDef.d.ts +0 -3
- package/modern/colDef/gridActionsColDef.js +0 -19
- package/modern/colDef/gridBooleanColDef.d.ts +0 -2
- package/modern/colDef/gridBooleanColDef.js +0 -41
- package/modern/colDef/gridBooleanOperators.d.ts +0 -2
- package/modern/colDef/gridBooleanOperators.js +0 -12
- package/modern/colDef/gridCheckboxSelectionColDef.d.ts +0 -3
- package/modern/colDef/gridCheckboxSelectionColDef.js +0 -29
- package/modern/colDef/gridDateColDef.d.ts +0 -5
- package/modern/colDef/gridDateColDef.js +0 -60
- package/modern/colDef/gridDateOperators.d.ts +0 -3
- package/modern/colDef/gridDateOperators.js +0 -108
- package/modern/colDef/gridDefaultColumnTypes.d.ts +0 -3
- package/modern/colDef/gridDefaultColumnTypes.js +0 -20
- package/modern/colDef/gridNumericColDef.d.ts +0 -2
- package/modern/colDef/gridNumericColDef.js +0 -15
- package/modern/colDef/gridNumericOperators.d.ts +0 -7
- package/modern/colDef/gridNumericOperators.js +0 -143
- package/modern/colDef/gridSingleSelectColDef.d.ts +0 -2
- package/modern/colDef/gridSingleSelectColDef.js +0 -61
- package/modern/colDef/gridSingleSelectOperators.d.ts +0 -2
- package/modern/colDef/gridSingleSelectOperators.js +0 -38
- package/modern/colDef/gridStringColDef.d.ts +0 -5
- package/modern/colDef/gridStringColDef.js +0 -27
- package/modern/colDef/gridStringOperators.d.ts +0 -4
- package/modern/colDef/gridStringOperators.js +0 -121
- package/modern/colDef/index.d.ts +0 -13
- package/modern/colDef/index.js +0 -13
- package/modern/components/GridApiContext.d.ts +0 -2
- package/modern/components/GridApiContext.js +0 -7
- package/modern/components/GridColumnHeaders.d.ts +0 -7
- package/modern/components/GridColumnHeaders.js +0 -85
- package/modern/components/GridConfigurationContext.d.ts +0 -2
- package/modern/components/GridConfigurationContext.js +0 -7
- package/modern/components/GridDetailPanels.d.ts +0 -5
- package/modern/components/GridDetailPanels.js +0 -3
- package/modern/components/GridFooter.d.ts +0 -6
- package/modern/components/GridFooter.js +0 -40
- package/modern/components/GridHeader.d.ts +0 -2
- package/modern/components/GridHeader.js +0 -11
- package/modern/components/GridHeaders.d.ts +0 -4
- package/modern/components/GridHeaders.js +0 -48
- package/modern/components/GridLoadingOverlay.d.ts +0 -17
- package/modern/components/GridLoadingOverlay.js +0 -67
- package/modern/components/GridNoColumnsOverlay.d.ts +0 -6
- package/modern/components/GridNoColumnsOverlay.js +0 -36
- package/modern/components/GridNoResultsOverlay.d.ts +0 -5
- package/modern/components/GridNoResultsOverlay.js +0 -14
- package/modern/components/GridNoRowsOverlay.d.ts +0 -6
- package/modern/components/GridNoRowsOverlay.js +0 -23
- package/modern/components/GridPagination.d.ts +0 -6
- package/modern/components/GridPagination.js +0 -80
- package/modern/components/GridPinnedRows.d.ts +0 -6
- package/modern/components/GridPinnedRows.js +0 -3
- package/modern/components/GridRow.d.ts +0 -39
- package/modern/components/GridRow.js +0 -341
- package/modern/components/GridRowCount.d.ts +0 -13
- package/modern/components/GridRowCount.js +0 -64
- package/modern/components/GridScrollArea.d.ts +0 -10
- package/modern/components/GridScrollArea.js +0 -151
- package/modern/components/GridScrollbarFillerCell.d.ts +0 -13
- package/modern/components/GridScrollbarFillerCell.js +0 -23
- package/modern/components/GridSelectedRowCount.d.ts +0 -12
- package/modern/components/GridSelectedRowCount.js +0 -67
- package/modern/components/GridShadowScrollArea.d.ts +0 -8
- package/modern/components/GridShadowScrollArea.js +0 -82
- package/modern/components/GridSkeletonLoadingOverlay.d.ts +0 -14
- package/modern/components/GridSkeletonLoadingOverlay.js +0 -199
- package/modern/components/base/GridBody.d.ts +0 -2
- package/modern/components/base/GridBody.js +0 -2
- package/modern/components/base/GridFooterPlaceholder.d.ts +0 -2
- package/modern/components/base/GridFooterPlaceholder.js +0 -11
- package/modern/components/base/GridOverlays.d.ts +0 -13
- package/modern/components/base/GridOverlays.js +0 -86
- package/modern/components/base/index.d.ts +0 -2
- package/modern/components/base/index.js +0 -2
- package/modern/components/cell/GridActionsCell.d.ts +0 -13
- package/modern/components/cell/GridActionsCell.js +0 -261
- package/modern/components/cell/GridActionsCellItem.d.ts +0 -52
- package/modern/components/cell/GridActionsCellItem.js +0 -73
- package/modern/components/cell/GridBooleanCell.d.ts +0 -13
- package/modern/components/cell/GridBooleanCell.js +0 -124
- package/modern/components/cell/GridCell.d.ts +0 -77
- package/modern/components/cell/GridCell.js +0 -325
- package/modern/components/cell/GridEditBooleanCell.d.ts +0 -17
- package/modern/components/cell/GridEditBooleanCell.js +0 -139
- package/modern/components/cell/GridEditDateCell.d.ts +0 -21
- package/modern/components/cell/GridEditDateCell.js +0 -193
- package/modern/components/cell/GridEditInputCell.d.ts +0 -19
- package/modern/components/cell/GridEditInputCell.js +0 -168
- package/modern/components/cell/GridEditSingleSelectCell.d.ts +0 -22
- package/modern/components/cell/GridEditSingleSelectCell.js +0 -189
- package/modern/components/cell/GridSkeletonCell.d.ts +0 -20
- package/modern/components/cell/GridSkeletonCell.js +0 -104
- package/modern/components/cell/index.d.ts +0 -10
- package/modern/components/cell/index.js +0 -9
- package/modern/components/columnHeaders/ColumnHeaderMenuIcon.d.ts +0 -10
- package/modern/components/columnHeaders/ColumnHeaderMenuIcon.js +0 -63
- package/modern/components/columnHeaders/GridBaseColumnHeaders.d.ts +0 -7
- package/modern/components/columnHeaders/GridBaseColumnHeaders.js +0 -45
- package/modern/components/columnHeaders/GridColumnGroupHeader.d.ts +0 -21
- package/modern/components/columnHeaders/GridColumnGroupHeader.js +0 -137
- package/modern/components/columnHeaders/GridColumnHeaderFilterIconButton.d.ts +0 -12
- package/modern/components/columnHeaders/GridColumnHeaderFilterIconButton.js +0 -108
- package/modern/components/columnHeaders/GridColumnHeaderItem.d.ts +0 -34
- package/modern/components/columnHeaders/GridColumnHeaderItem.js +0 -231
- package/modern/components/columnHeaders/GridColumnHeaderSeparator.d.ts +0 -17
- package/modern/components/columnHeaders/GridColumnHeaderSeparator.js +0 -71
- package/modern/components/columnHeaders/GridColumnHeaderSortIcon.d.ts +0 -15
- package/modern/components/columnHeaders/GridColumnHeaderTitle.d.ts +0 -11
- package/modern/components/columnHeaders/GridColumnHeaderTitle.js +0 -88
- package/modern/components/columnHeaders/GridGenericColumnHeaderItem.d.ts +0 -32
- package/modern/components/columnHeaders/GridGenericColumnHeaderItem.js +0 -93
- package/modern/components/columnHeaders/GridIconButtonContainer.d.ts +0 -3
- package/modern/components/columnHeaders/GridIconButtonContainer.js +0 -43
- package/modern/components/columnHeaders/index.d.ts +0 -5
- package/modern/components/columnHeaders/index.js +0 -5
- package/modern/components/columnSelection/GridCellCheckboxRenderer.d.ts +0 -5
- package/modern/components/columnSelection/GridCellCheckboxRenderer.js +0 -153
- package/modern/components/columnSelection/GridHeaderCheckbox.d.ts +0 -4
- package/modern/components/columnSelection/GridHeaderCheckbox.js +0 -169
- package/modern/components/columnSelection/index.d.ts +0 -2
- package/modern/components/columnSelection/index.js +0 -2
- package/modern/components/columnsManagement/GridColumnsManagement.d.ts +0 -45
- package/modern/components/columnsManagement/GridColumnsManagement.js +0 -294
- package/modern/components/columnsManagement/index.d.ts +0 -1
- package/modern/components/columnsManagement/index.js +0 -1
- package/modern/components/columnsManagement/utils.d.ts +0 -4
- package/modern/components/columnsManagement/utils.js +0 -16
- package/modern/components/columnsPanel/ColumnsPanelTrigger.d.ts +0 -33
- package/modern/components/columnsPanel/ColumnsPanelTrigger.js +0 -101
- package/modern/components/columnsPanel/index.d.ts +0 -1
- package/modern/components/columnsPanel/index.js +0 -1
- package/modern/components/containers/GridFooterContainer.d.ts +0 -9
- package/modern/components/containers/GridFooterContainer.js +0 -54
- package/modern/components/containers/GridOverlay.d.ts +0 -9
- package/modern/components/containers/GridOverlay.js +0 -58
- package/modern/components/containers/GridRoot.d.ts +0 -11
- package/modern/components/containers/GridRoot.js +0 -77
- package/modern/components/containers/GridRootStyles.d.ts +0 -5
- package/modern/components/containers/GridRootStyles.js +0 -849
- package/modern/components/containers/GridToolbarContainer.d.ts +0 -9
- package/modern/components/containers/GridToolbarContainer.js +0 -62
- package/modern/components/containers/index.d.ts +0 -4
- package/modern/components/containers/index.js +0 -4
- package/modern/components/export/ExportCsv.d.ts +0 -30
- package/modern/components/export/ExportCsv.js +0 -82
- package/modern/components/export/ExportPrint.d.ts +0 -30
- package/modern/components/export/ExportPrint.js +0 -82
- package/modern/components/export/index.d.ts +0 -2
- package/modern/components/export/index.js +0 -2
- package/modern/components/filterPanel/FilterPanelTrigger.d.ts +0 -37
- package/modern/components/filterPanel/FilterPanelTrigger.js +0 -104
- package/modern/components/filterPanel/index.d.ts +0 -1
- package/modern/components/filterPanel/index.js +0 -1
- package/modern/components/index.d.ts +0 -25
- package/modern/components/index.js +0 -25
- package/modern/components/menu/GridMenu.d.ts +0 -15
- package/modern/components/menu/GridMenu.js +0 -99
- package/modern/components/menu/columnMenu/GridColumnHeaderMenu.d.ts +0 -26
- package/modern/components/menu/columnMenu/GridColumnHeaderMenu.js +0 -63
- package/modern/components/menu/columnMenu/GridColumnMenu.d.ts +0 -24
- package/modern/components/menu/columnMenu/GridColumnMenu.js +0 -109
- package/modern/components/menu/columnMenu/GridColumnMenuContainer.d.ts +0 -4
- package/modern/components/menu/columnMenu/GridColumnMenuContainer.js +0 -59
- package/modern/components/menu/columnMenu/GridColumnMenuItemProps.d.ts +0 -7
- package/modern/components/menu/columnMenu/GridColumnMenuItemProps.js +0 -1
- package/modern/components/menu/columnMenu/GridColumnMenuProps.d.ts +0 -12
- package/modern/components/menu/columnMenu/GridColumnMenuProps.js +0 -1
- package/modern/components/menu/columnMenu/index.d.ts +0 -6
- package/modern/components/menu/columnMenu/index.js +0 -9
- package/modern/components/menu/columnMenu/menuItems/GridColumnMenuColumnsItem.d.ts +0 -7
- package/modern/components/menu/columnMenu/menuItems/GridColumnMenuColumnsItem.js +0 -20
- package/modern/components/menu/columnMenu/menuItems/GridColumnMenuFilterItem.d.ts +0 -7
- package/modern/components/menu/columnMenu/menuItems/GridColumnMenuFilterItem.js +0 -36
- package/modern/components/menu/columnMenu/menuItems/GridColumnMenuHideItem.d.ts +0 -7
- package/modern/components/menu/columnMenu/menuItems/GridColumnMenuHideItem.js +0 -53
- package/modern/components/menu/columnMenu/menuItems/GridColumnMenuManageItem.d.ts +0 -7
- package/modern/components/menu/columnMenu/menuItems/GridColumnMenuManageItem.js +0 -36
- package/modern/components/menu/columnMenu/menuItems/GridColumnMenuSortItem.d.ts +0 -7
- package/modern/components/menu/columnMenu/menuItems/GridColumnMenuSortItem.js +0 -68
- package/modern/components/menu/columnMenu/menuItems/index.d.ts +0 -5
- package/modern/components/menu/columnMenu/menuItems/index.js +0 -5
- package/modern/components/menu/index.d.ts +0 -2
- package/modern/components/menu/index.js +0 -2
- package/modern/components/panel/GridColumnsPanel.d.ts +0 -5
- package/modern/components/panel/GridColumnsPanel.js +0 -12
- package/modern/components/panel/GridPanel.d.ts +0 -20
- package/modern/components/panel/GridPanel.js +0 -107
- package/modern/components/panel/GridPanelContent.d.ts +0 -9
- package/modern/components/panel/GridPanelContent.js +0 -53
- package/modern/components/panel/GridPanelFooter.d.ts +0 -9
- package/modern/components/panel/GridPanelFooter.js +0 -51
- package/modern/components/panel/GridPanelHeader.d.ts +0 -9
- package/modern/components/panel/GridPanelHeader.js +0 -48
- package/modern/components/panel/GridPanelWrapper.d.ts +0 -6
- package/modern/components/panel/GridPanelWrapper.js +0 -47
- package/modern/components/panel/GridPreferencePanelContext.d.ts +0 -12
- package/modern/components/panel/GridPreferencesPanel.d.ts +0 -2
- package/modern/components/panel/GridPreferencesPanel.js +0 -29
- package/modern/components/panel/filterPanel/GridFilterForm.d.ts +0 -107
- package/modern/components/panel/filterPanel/GridFilterForm.js +0 -466
- package/modern/components/panel/filterPanel/GridFilterInputBoolean.d.ts +0 -10
- package/modern/components/panel/filterPanel/GridFilterInputBoolean.js +0 -122
- package/modern/components/panel/filterPanel/GridFilterInputDate.d.ts +0 -11
- package/modern/components/panel/filterPanel/GridFilterInputDate.js +0 -135
- package/modern/components/panel/filterPanel/GridFilterInputMultipleSingleSelect.d.ts +0 -12
- package/modern/components/panel/filterPanel/GridFilterInputMultipleSingleSelect.js +0 -116
- package/modern/components/panel/filterPanel/GridFilterInputMultipleValue.d.ts +0 -11
- package/modern/components/panel/filterPanel/GridFilterInputMultipleValue.js +0 -98
- package/modern/components/panel/filterPanel/GridFilterInputSingleSelect.d.ts +0 -11
- package/modern/components/panel/filterPanel/GridFilterInputSingleSelect.js +0 -147
- package/modern/components/panel/filterPanel/GridFilterInputValue.d.ts +0 -15
- package/modern/components/panel/filterPanel/GridFilterInputValue.js +0 -121
- package/modern/components/panel/filterPanel/GridFilterPanel.d.ts +0 -49
- package/modern/components/panel/filterPanel/GridFilterPanel.js +0 -247
- package/modern/components/panel/filterPanel/filterPanelUtils.d.ts +0 -5
- package/modern/components/panel/filterPanel/filterPanelUtils.js +0 -22
- package/modern/components/panel/filterPanel/index.d.ts +0 -10
- package/modern/components/panel/filterPanel/index.js +0 -8
- package/modern/components/panel/index.d.ts +0 -7
- package/modern/components/panel/index.js +0 -7
- package/modern/components/quickFilter/QuickFilter.d.ts +0 -64
- package/modern/components/quickFilter/QuickFilter.js +0 -189
- package/modern/components/quickFilter/QuickFilterClear.d.ts +0 -28
- package/modern/components/quickFilter/QuickFilterClear.js +0 -76
- package/modern/components/quickFilter/QuickFilterContext.d.ts +0 -16
- package/modern/components/quickFilter/QuickFilterContext.js +0 -9
- package/modern/components/quickFilter/QuickFilterControl.d.ts +0 -28
- package/modern/components/quickFilter/QuickFilterControl.js +0 -121
- package/modern/components/quickFilter/QuickFilterTrigger.d.ts +0 -28
- package/modern/components/quickFilter/QuickFilterTrigger.js +0 -79
- package/modern/components/quickFilter/index.d.ts +0 -4
- package/modern/components/quickFilter/index.js +0 -4
- package/modern/components/reexportable.d.ts +0 -1
- package/modern/components/reexportable.js +0 -1
- package/modern/components/toolbar/GridToolbar.d.ts +0 -17
- package/modern/components/toolbar/GridToolbar.js +0 -78
- package/modern/components/toolbar/GridToolbarColumnsButton.d.ts +0 -14
- package/modern/components/toolbar/GridToolbarColumnsButton.js +0 -79
- package/modern/components/toolbar/GridToolbarDensitySelector.d.ts +0 -14
- package/modern/components/toolbar/GridToolbarDensitySelector.js +0 -126
- package/modern/components/toolbar/GridToolbarExport.d.ts +0 -39
- package/modern/components/toolbar/GridToolbarExport.js +0 -124
- package/modern/components/toolbar/GridToolbarExportContainer.d.ts +0 -16
- package/modern/components/toolbar/GridToolbarExportContainer.js +0 -94
- package/modern/components/toolbar/GridToolbarFilterButton.d.ts +0 -15
- package/modern/components/toolbar/GridToolbarFilterButton.js +0 -142
- package/modern/components/toolbar/GridToolbarQuickFilter.d.ts +0 -43
- package/modern/components/toolbar/GridToolbarQuickFilter.js +0 -185
- package/modern/components/toolbar/index.d.ts +0 -8
- package/modern/components/toolbar/index.js +0 -7
- package/modern/components/toolbarV8/GridToolbar.d.ts +0 -16
- package/modern/components/toolbarV8/GridToolbar.js +0 -191
- package/modern/components/toolbarV8/Toolbar.d.ts +0 -32
- package/modern/components/toolbarV8/Toolbar.js +0 -180
- package/modern/components/toolbarV8/ToolbarButton.d.ts +0 -23
- package/modern/components/toolbarV8/ToolbarButton.js +0 -108
- package/modern/components/toolbarV8/ToolbarContext.d.ts +0 -11
- package/modern/components/toolbarV8/ToolbarContext.js +0 -9
- package/modern/components/toolbarV8/index.d.ts +0 -2
- package/modern/components/toolbarV8/index.js +0 -2
- package/modern/components/virtualization/GridBottomContainer.d.ts +0 -3
- package/modern/components/virtualization/GridBottomContainer.js +0 -25
- package/modern/components/virtualization/GridMainContainer.d.ts +0 -20
- package/modern/components/virtualization/GridMainContainer.js +0 -51
- package/modern/components/virtualization/GridTopContainer.d.ts +0 -2
- package/modern/components/virtualization/GridTopContainer.js +0 -25
- package/modern/components/virtualization/GridVirtualScrollbar.d.ts +0 -11
- package/modern/components/virtualization/GridVirtualScrollbar.js +0 -148
- package/modern/components/virtualization/GridVirtualScroller.d.ts +0 -6
- package/modern/components/virtualization/GridVirtualScroller.js +0 -130
- package/modern/components/virtualization/GridVirtualScrollerContent.d.ts +0 -8
- package/modern/components/virtualization/GridVirtualScrollerContent.js +0 -43
- package/modern/components/virtualization/GridVirtualScrollerFiller.d.ts +0 -10
- package/modern/components/virtualization/GridVirtualScrollerFiller.js +0 -74
- package/modern/components/virtualization/GridVirtualScrollerRenderZone.d.ts +0 -8
- package/modern/components/virtualization/GridVirtualScrollerRenderZone.js +0 -58
- package/modern/constants/cssVariables.d.ts +0 -267
- package/modern/constants/cssVariables.js +0 -152
- package/modern/constants/dataGridPropsDefaultValues.d.ts +0 -5
- package/modern/constants/dataGridPropsDefaultValues.js +0 -59
- package/modern/constants/defaultGridSlotsComponents.d.ts +0 -2
- package/modern/constants/defaultGridSlotsComponents.js +0 -38
- package/modern/constants/envConstants.d.ts +0 -1
- package/modern/constants/envConstants.js +0 -19
- package/modern/constants/gridClasses.d.ts +0 -717
- package/modern/constants/gridClasses.js +0 -5
- package/modern/constants/index.d.ts +0 -4
- package/modern/constants/index.js +0 -4
- package/modern/constants/localeTextConstants.d.ts +0 -2
- package/modern/constants/localeTextConstants.js +0 -191
- package/modern/constants/signature.d.ts +0 -9
- package/modern/constants/signature.js +0 -10
- package/modern/context/GridContextProvider.d.ts +0 -17
- package/modern/context/GridContextProvider.js +0 -33
- package/modern/context/GridRootPropsContext.d.ts +0 -3
- package/modern/context/GridRootPropsContext.js +0 -8
- package/modern/context/index.d.ts +0 -1
- package/modern/context/index.js +0 -1
- package/modern/hooks/core/gridCoreSelector.d.ts +0 -6
- package/modern/hooks/core/gridCoreSelector.js +0 -6
- package/modern/hooks/core/gridPropsSelectors.d.ts +0 -9
- package/modern/hooks/core/gridPropsSelectors.js +0 -15
- package/modern/hooks/core/index.d.ts +0 -2
- package/modern/hooks/core/index.js +0 -1
- package/modern/hooks/core/pipeProcessing/gridPipeProcessingApi.d.ts +0 -142
- package/modern/hooks/core/pipeProcessing/gridPipeProcessingApi.js +0 -1
- package/modern/hooks/core/pipeProcessing/index.d.ts +0 -4
- package/modern/hooks/core/pipeProcessing/index.js +0 -4
- package/modern/hooks/core/pipeProcessing/useGridPipeProcessing.d.ts +0 -32
- package/modern/hooks/core/pipeProcessing/useGridPipeProcessing.js +0 -107
- package/modern/hooks/core/pipeProcessing/useGridRegisterPipeApplier.d.ts +0 -4
- package/modern/hooks/core/pipeProcessing/useGridRegisterPipeApplier.js +0 -26
- package/modern/hooks/core/pipeProcessing/useGridRegisterPipeProcessor.d.ts +0 -4
- package/modern/hooks/core/pipeProcessing/useGridRegisterPipeProcessor.js +0 -28
- package/modern/hooks/core/strategyProcessing/gridStrategyProcessingApi.d.ts +0 -79
- package/modern/hooks/core/strategyProcessing/gridStrategyProcessingApi.js +0 -5
- package/modern/hooks/core/strategyProcessing/index.d.ts +0 -3
- package/modern/hooks/core/strategyProcessing/index.js +0 -3
- package/modern/hooks/core/strategyProcessing/useGridRegisterStrategyProcessor.d.ts +0 -4
- package/modern/hooks/core/strategyProcessing/useGridRegisterStrategyProcessor.js +0 -18
- package/modern/hooks/core/strategyProcessing/useGridStrategyProcessing.d.ts +0 -43
- package/modern/hooks/core/strategyProcessing/useGridStrategyProcessing.js +0 -110
- package/modern/hooks/core/useGridApiInitialization.d.ts +0 -5
- package/modern/hooks/core/useGridApiInitialization.js +0 -112
- package/modern/hooks/core/useGridInitialization.d.ts +0 -7
- package/modern/hooks/core/useGridInitialization.js +0 -28
- package/modern/hooks/core/useGridIsRtl.d.ts +0 -3
- package/modern/hooks/core/useGridIsRtl.js +0 -19
- package/modern/hooks/core/useGridLocaleText.d.ts +0 -4
- package/modern/hooks/core/useGridLocaleText.js +0 -12
- package/modern/hooks/core/useGridLoggerFactory.d.ts +0 -4
- package/modern/hooks/core/useGridLoggerFactory.js +0 -44
- package/modern/hooks/core/useGridProps.d.ts +0 -8
- package/modern/hooks/core/useGridProps.js +0 -18
- package/modern/hooks/core/useGridRefs.d.ts +0 -3
- package/modern/hooks/core/useGridRefs.js +0 -19
- package/modern/hooks/core/useGridStateInitialization.d.ts +0 -3
- package/modern/hooks/core/useGridStateInitialization.js +0 -95
- package/modern/hooks/features/clipboard/useGridClipboard.d.ts +0 -8
- package/modern/hooks/features/clipboard/useGridClipboard.js +0 -97
- package/modern/hooks/features/columnGrouping/gridColumnGroupsInterfaces.d.ts +0 -16
- package/modern/hooks/features/columnGrouping/gridColumnGroupsInterfaces.js +0 -1
- package/modern/hooks/features/columnGrouping/gridColumnGroupsSelector.d.ts +0 -12
- package/modern/hooks/features/columnGrouping/gridColumnGroupsSelector.js +0 -10
- package/modern/hooks/features/columnGrouping/gridColumnGroupsUtils.d.ts +0 -18
- package/modern/hooks/features/columnGrouping/gridColumnGroupsUtils.js +0 -82
- package/modern/hooks/features/columnGrouping/index.d.ts +0 -2
- package/modern/hooks/features/columnGrouping/index.js +0 -2
- package/modern/hooks/features/columnGrouping/useGridColumnGrouping.d.ts +0 -10
- package/modern/hooks/features/columnGrouping/useGridColumnGrouping.js +0 -131
- package/modern/hooks/features/columnHeaders/useGridColumnHeaders.d.ts +0 -65
- package/modern/hooks/features/columnHeaders/useGridColumnHeaders.js +0 -317
- package/modern/hooks/features/columnMenu/columnMenuInterfaces.d.ts +0 -47
- package/modern/hooks/features/columnMenu/columnMenuInterfaces.js +0 -1
- package/modern/hooks/features/columnMenu/columnMenuSelector.d.ts +0 -2
- package/modern/hooks/features/columnMenu/columnMenuSelector.js +0 -2
- package/modern/hooks/features/columnMenu/index.d.ts +0 -2
- package/modern/hooks/features/columnMenu/index.js +0 -2
- package/modern/hooks/features/columnMenu/useGridColumnMenu.d.ts +0 -9
- package/modern/hooks/features/columnMenu/useGridColumnMenu.js +0 -104
- package/modern/hooks/features/columnMenu/useGridColumnMenuSlots.d.ts +0 -13
- package/modern/hooks/features/columnMenu/useGridColumnMenuSlots.js +0 -59
- package/modern/hooks/features/columnResize/columnResizeSelector.d.ts +0 -3
- package/modern/hooks/features/columnResize/columnResizeSelector.js +0 -3
- package/modern/hooks/features/columnResize/columnResizeState.d.ts +0 -3
- package/modern/hooks/features/columnResize/columnResizeState.js +0 -1
- package/modern/hooks/features/columnResize/gridColumnResizeApi.d.ts +0 -50
- package/modern/hooks/features/columnResize/gridColumnResizeApi.js +0 -11
- package/modern/hooks/features/columnResize/index.d.ts +0 -3
- package/modern/hooks/features/columnResize/index.js +0 -3
- package/modern/hooks/features/columnResize/useGridColumnResize.d.ts +0 -10
- package/modern/hooks/features/columnResize/useGridColumnResize.js +0 -562
- package/modern/hooks/features/columns/gridColumnsInterfaces.d.ts +0 -42
- package/modern/hooks/features/columns/gridColumnsInterfaces.js +0 -9
- package/modern/hooks/features/columns/gridColumnsSelector.d.ts +0 -79
- package/modern/hooks/features/columns/gridColumnsSelector.js +0 -140
- package/modern/hooks/features/columns/gridColumnsUtils.d.ts +0 -74
- package/modern/hooks/features/columns/gridColumnsUtils.js +0 -328
- package/modern/hooks/features/columns/index.d.ts +0 -2
- package/modern/hooks/features/columns/index.js +0 -2
- package/modern/hooks/features/columns/useGridColumnSpanning.d.ts +0 -7
- package/modern/hooks/features/columns/useGridColumnSpanning.js +0 -107
- package/modern/hooks/features/columns/useGridColumns.d.ts +0 -11
- package/modern/hooks/features/columns/useGridColumns.js +0 -307
- package/modern/hooks/features/dataSource/cache.d.ts +0 -29
- package/modern/hooks/features/dataSource/cache.js +0 -39
- package/modern/hooks/features/dataSource/gridDataSourceError.d.ts +0 -31
- package/modern/hooks/features/dataSource/gridDataSourceError.js +0 -32
- package/modern/hooks/features/dataSource/gridDataSourceSelector.d.ts +0 -8
- package/modern/hooks/features/dataSource/gridDataSourceSelector.js +0 -12
- package/modern/hooks/features/dataSource/index.d.ts +0 -2
- package/modern/hooks/features/dataSource/index.js +0 -2
- package/modern/hooks/features/dataSource/models.d.ts +0 -22
- package/modern/hooks/features/dataSource/models.js +0 -1
- package/modern/hooks/features/dataSource/useGridDataSource.d.ts +0 -7
- package/modern/hooks/features/dataSource/useGridDataSource.js +0 -24
- package/modern/hooks/features/dataSource/useGridDataSourceBase.d.ts +0 -33
- package/modern/hooks/features/dataSource/useGridDataSourceBase.js +0 -165
- package/modern/hooks/features/dataSource/utils.d.ts +0 -23
- package/modern/hooks/features/dataSource/utils.js +0 -71
- package/modern/hooks/features/density/densitySelector.d.ts +0 -6
- package/modern/hooks/features/density/densitySelector.js +0 -10
- package/modern/hooks/features/density/densityState.d.ts +0 -2
- package/modern/hooks/features/density/densityState.js +0 -1
- package/modern/hooks/features/density/index.d.ts +0 -2
- package/modern/hooks/features/density/index.js +0 -2
- package/modern/hooks/features/density/useGridDensity.d.ts +0 -6
- package/modern/hooks/features/density/useGridDensity.js +0 -64
- package/modern/hooks/features/dimensions/gridDimensionsApi.d.ts +0 -103
- package/modern/hooks/features/dimensions/gridDimensionsApi.js +0 -1
- package/modern/hooks/features/dimensions/gridDimensionsSelectors.d.ts +0 -18
- package/modern/hooks/features/dimensions/gridDimensionsSelectors.js +0 -25
- package/modern/hooks/features/dimensions/index.d.ts +0 -3
- package/modern/hooks/features/dimensions/index.js +0 -1
- package/modern/hooks/features/dimensions/useGridDimensions.d.ts +0 -10
- package/modern/hooks/features/dimensions/useGridDimensions.js +0 -299
- package/modern/hooks/features/editing/gridEditingSelectors.d.ts +0 -15
- package/modern/hooks/features/editing/gridEditingSelectors.js +0 -15
- package/modern/hooks/features/editing/index.d.ts +0 -1
- package/modern/hooks/features/editing/index.js +0 -1
- package/modern/hooks/features/editing/useGridCellEditing.d.ts +0 -4
- package/modern/hooks/features/editing/useGridCellEditing.js +0 -469
- package/modern/hooks/features/editing/useGridEditing.d.ts +0 -6
- package/modern/hooks/features/editing/useGridEditing.js +0 -123
- package/modern/hooks/features/editing/useGridRowEditing.d.ts +0 -4
- package/modern/hooks/features/editing/useGridRowEditing.js +0 -605
- package/modern/hooks/features/editing/utils.d.ts +0 -2
- package/modern/hooks/features/editing/utils.js +0 -15
- package/modern/hooks/features/events/useGridEvents.d.ts +0 -8
- package/modern/hooks/features/events/useGridEvents.js +0 -24
- package/modern/hooks/features/export/serializers/csvSerializer.d.ts +0 -19
- package/modern/hooks/features/export/serializers/csvSerializer.js +0 -144
- package/modern/hooks/features/export/useGridCsvExport.d.ts +0 -11
- package/modern/hooks/features/export/useGridCsvExport.js +0 -74
- package/modern/hooks/features/export/useGridPrintExport.d.ts +0 -10
- package/modern/hooks/features/export/useGridPrintExport.js +0 -290
- package/modern/hooks/features/export/utils.d.ts +0 -20
- package/modern/hooks/features/export/utils.js +0 -39
- package/modern/hooks/features/filter/gridFilterSelector.d.ts +0 -103
- package/modern/hooks/features/filter/gridFilterSelector.js +0 -177
- package/modern/hooks/features/filter/gridFilterState.d.ts +0 -61
- package/modern/hooks/features/filter/gridFilterState.js +0 -23
- package/modern/hooks/features/filter/gridFilterUtils.d.ts +0 -23
- package/modern/hooks/features/filter/gridFilterUtils.js +0 -311
- package/modern/hooks/features/filter/index.d.ts +0 -4
- package/modern/hooks/features/filter/index.js +0 -2
- package/modern/hooks/features/filter/useGridFilter.d.ts +0 -11
- package/modern/hooks/features/filter/useGridFilter.js +0 -366
- package/modern/hooks/features/focus/gridFocusState.d.ts +0 -20
- package/modern/hooks/features/focus/gridFocusState.js +0 -1
- package/modern/hooks/features/focus/gridFocusStateSelector.d.ts +0 -12
- package/modern/hooks/features/focus/gridFocusStateSelector.js +0 -11
- package/modern/hooks/features/focus/index.d.ts +0 -2
- package/modern/hooks/features/focus/index.js +0 -2
- package/modern/hooks/features/focus/useGridFocus.d.ts +0 -11
- package/modern/hooks/features/focus/useGridFocus.js +0 -406
- package/modern/hooks/features/headerFiltering/gridHeaderFilteringSelectors.d.ts +0 -5
- package/modern/hooks/features/headerFiltering/gridHeaderFilteringSelectors.js +0 -7
- package/modern/hooks/features/headerFiltering/index.d.ts +0 -1
- package/modern/hooks/features/headerFiltering/index.js +0 -1
- package/modern/hooks/features/headerFiltering/useGridHeaderFiltering.d.ts +0 -6
- package/modern/hooks/features/headerFiltering/useGridHeaderFiltering.js +0 -105
- package/modern/hooks/features/index.d.ts +0 -19
- package/modern/hooks/features/index.js +0 -20
- package/modern/hooks/features/keyboardNavigation/useGridKeyboardNavigation.d.ts +0 -13
- package/modern/hooks/features/keyboardNavigation/useGridKeyboardNavigation.js +0 -537
- package/modern/hooks/features/keyboardNavigation/utils.d.ts +0 -26
- package/modern/hooks/features/keyboardNavigation/utils.js +0 -53
- package/modern/hooks/features/listView/gridListViewSelectors.d.ts +0 -7
- package/modern/hooks/features/listView/gridListViewSelectors.js +0 -7
- package/modern/hooks/features/listView/index.d.ts +0 -1
- package/modern/hooks/features/listView/index.js +0 -1
- package/modern/hooks/features/listView/useGridListView.d.ts +0 -10
- package/modern/hooks/features/listView/useGridListView.js +0 -61
- package/modern/hooks/features/overlays/useGridOverlays.d.ts +0 -14
- package/modern/hooks/features/overlays/useGridOverlays.js +0 -62
- package/modern/hooks/features/pagination/gridPaginationInterfaces.d.ts +0 -58
- package/modern/hooks/features/pagination/gridPaginationInterfaces.js +0 -1
- package/modern/hooks/features/pagination/gridPaginationSelector.d.ts +0 -79
- package/modern/hooks/features/pagination/gridPaginationSelector.js +0 -153
- package/modern/hooks/features/pagination/gridPaginationUtils.d.ts +0 -9
- package/modern/hooks/features/pagination/gridPaginationUtils.js +0 -28
- package/modern/hooks/features/pagination/index.d.ts +0 -2
- package/modern/hooks/features/pagination/index.js +0 -2
- package/modern/hooks/features/pagination/useGridPagination.d.ts +0 -10
- package/modern/hooks/features/pagination/useGridPagination.js +0 -30
- package/modern/hooks/features/pagination/useGridPaginationMeta.d.ts +0 -4
- package/modern/hooks/features/pagination/useGridPaginationMeta.js +0 -77
- package/modern/hooks/features/pagination/useGridPaginationModel.d.ts +0 -11
- package/modern/hooks/features/pagination/useGridPaginationModel.js +0 -232
- package/modern/hooks/features/pagination/useGridRowCount.d.ts +0 -4
- package/modern/hooks/features/pagination/useGridRowCount.js +0 -108
- package/modern/hooks/features/preferencesPanel/gridPreferencePanelSelector.d.ts +0 -3
- package/modern/hooks/features/preferencesPanel/gridPreferencePanelSelector.js +0 -8
- package/modern/hooks/features/preferencesPanel/gridPreferencePanelState.d.ts +0 -13
- package/modern/hooks/features/preferencesPanel/gridPreferencePanelState.js +0 -1
- package/modern/hooks/features/preferencesPanel/gridPreferencePanelsValue.d.ts +0 -5
- package/modern/hooks/features/preferencesPanel/gridPreferencePanelsValue.js +0 -6
- package/modern/hooks/features/preferencesPanel/index.d.ts +0 -3
- package/modern/hooks/features/preferencesPanel/index.js +0 -3
- package/modern/hooks/features/preferencesPanel/useGridPreferencesPanel.d.ts +0 -9
- package/modern/hooks/features/preferencesPanel/useGridPreferencesPanel.js +0 -88
- package/modern/hooks/features/rowSelection/gridRowSelectionSelector.d.ts +0 -6
- package/modern/hooks/features/rowSelection/gridRowSelectionSelector.js +0 -29
- package/modern/hooks/features/rowSelection/index.d.ts +0 -1
- package/modern/hooks/features/rowSelection/index.js +0 -1
- package/modern/hooks/features/rowSelection/useGridRowSelection.d.ts +0 -12
- package/modern/hooks/features/rowSelection/useGridRowSelection.js +0 -583
- package/modern/hooks/features/rowSelection/useGridRowSelectionPreProcessors.d.ts +0 -4
- package/modern/hooks/features/rowSelection/useGridRowSelectionPreProcessors.js +0 -44
- package/modern/hooks/features/rowSelection/utils.d.ts +0 -14
- package/modern/hooks/features/rowSelection/utils.js +0 -165
- package/modern/hooks/features/rows/gridRowSpanningSelectors.d.ts +0 -4
- package/modern/hooks/features/rows/gridRowSpanningSelectors.js +0 -5
- package/modern/hooks/features/rows/gridRowSpanningUtils.d.ts +0 -10
- package/modern/hooks/features/rows/gridRowSpanningUtils.js +0 -42
- package/modern/hooks/features/rows/gridRowsInterfaces.d.ts +0 -108
- package/modern/hooks/features/rows/gridRowsInterfaces.js +0 -1
- package/modern/hooks/features/rows/gridRowsMetaInterfaces.d.ts +0 -16
- package/modern/hooks/features/rows/gridRowsMetaInterfaces.js +0 -1
- package/modern/hooks/features/rows/gridRowsMetaSelector.d.ts +0 -2
- package/modern/hooks/features/rows/gridRowsMetaSelector.js +0 -2
- package/modern/hooks/features/rows/gridRowsMetaState.d.ts +0 -21
- package/modern/hooks/features/rows/gridRowsMetaState.js +0 -1
- package/modern/hooks/features/rows/gridRowsSelector.d.ts +0 -50
- package/modern/hooks/features/rows/gridRowsSelector.js +0 -58
- package/modern/hooks/features/rows/gridRowsUtils.d.ts +0 -61
- package/modern/hooks/features/rows/gridRowsUtils.js +0 -302
- package/modern/hooks/features/rows/index.d.ts +0 -5
- package/modern/hooks/features/rows/index.js +0 -4
- package/modern/hooks/features/rows/useGridParamsApi.d.ts +0 -13
- package/modern/hooks/features/rows/useGridParamsApi.js +0 -137
- package/modern/hooks/features/rows/useGridRowAriaAttributes.d.ts +0 -2
- package/modern/hooks/features/rows/useGridRowAriaAttributes.js +0 -17
- package/modern/hooks/features/rows/useGridRowSpanning.d.ts +0 -27
- package/modern/hooks/features/rows/useGridRowSpanning.js +0 -270
- package/modern/hooks/features/rows/useGridRows.d.ts +0 -6
- package/modern/hooks/features/rows/useGridRows.js +0 -459
- package/modern/hooks/features/rows/useGridRowsMeta.d.ts +0 -10
- package/modern/hooks/features/rows/useGridRowsMeta.js +0 -227
- package/modern/hooks/features/rows/useGridRowsPreProcessors.d.ts +0 -3
- package/modern/hooks/features/rows/useGridRowsPreProcessors.js +0 -81
- package/modern/hooks/features/scroll/useGridScroll.d.ts +0 -12
- package/modern/hooks/features/scroll/useGridScroll.js +0 -134
- package/modern/hooks/features/sorting/gridSortingSelector.d.ts +0 -32
- package/modern/hooks/features/sorting/gridSortingSelector.js +0 -70
- package/modern/hooks/features/sorting/gridSortingState.d.ts +0 -14
- package/modern/hooks/features/sorting/gridSortingState.js +0 -1
- package/modern/hooks/features/sorting/gridSortingUtils.d.ts +0 -18
- package/modern/hooks/features/sorting/gridSortingUtils.js +0 -138
- package/modern/hooks/features/sorting/index.d.ts +0 -4
- package/modern/hooks/features/sorting/index.js +0 -2
- package/modern/hooks/features/sorting/useGridSorting.d.ts +0 -10
- package/modern/hooks/features/sorting/useGridSorting.js +0 -250
- package/modern/hooks/features/statePersistence/gridStatePersistenceInterface.d.ts +0 -40
- package/modern/hooks/features/statePersistence/gridStatePersistenceInterface.js +0 -1
- package/modern/hooks/features/statePersistence/index.d.ts +0 -1
- package/modern/hooks/features/statePersistence/index.js +0 -1
- package/modern/hooks/features/statePersistence/useGridStatePersistence.d.ts +0 -3
- package/modern/hooks/features/statePersistence/useGridStatePersistence.js +0 -23
- package/modern/hooks/features/virtualization/gridFocusedVirtualCellSelector.d.ts +0 -6
- package/modern/hooks/features/virtualization/gridFocusedVirtualCellSelector.js +0 -32
- package/modern/hooks/features/virtualization/gridVirtualizationSelectors.d.ts +0 -36
- package/modern/hooks/features/virtualization/gridVirtualizationSelectors.js +0 -43
- package/modern/hooks/features/virtualization/index.d.ts +0 -2
- package/modern/hooks/features/virtualization/index.js +0 -2
- package/modern/hooks/features/virtualization/useGridVirtualScroller.d.ts +0 -56
- package/modern/hooks/features/virtualization/useGridVirtualScroller.js +0 -843
- package/modern/hooks/features/virtualization/useGridVirtualization.d.ts +0 -21
- package/modern/hooks/features/virtualization/useGridVirtualization.js +0 -61
- package/modern/hooks/index.d.ts +0 -3
- package/modern/hooks/index.js +0 -3
- package/modern/hooks/utils/index.d.ts +0 -9
- package/modern/hooks/utils/index.js +0 -8
- package/modern/hooks/utils/useFirstRender.d.ts +0 -1
- package/modern/hooks/utils/useFirstRender.js +0 -8
- package/modern/hooks/utils/useGridApiContext.d.ts +0 -4
- package/modern/hooks/utils/useGridApiContext.js +0 -9
- package/modern/hooks/utils/useGridApiMethod.d.ts +0 -7
- package/modern/hooks/utils/useGridApiMethod.js +0 -12
- package/modern/hooks/utils/useGridApiRef.d.ts +0 -7
- package/modern/hooks/utils/useGridApiRef.js +0 -5
- package/modern/hooks/utils/useGridAriaAttributes.d.ts +0 -2
- package/modern/hooks/utils/useGridAriaAttributes.js +0 -28
- package/modern/hooks/utils/useGridComponentRenderer.d.ts +0 -12
- package/modern/hooks/utils/useGridComponentRenderer.js +0 -36
- package/modern/hooks/utils/useGridConfiguration.d.ts +0 -2
- package/modern/hooks/utils/useGridConfiguration.js +0 -9
- package/modern/hooks/utils/useGridEvent.d.ts +0 -12
- package/modern/hooks/utils/useGridEvent.js +0 -88
- package/modern/hooks/utils/useGridInitializeState.d.ts +0 -8
- package/modern/hooks/utils/useGridInitializeState.js +0 -8
- package/modern/hooks/utils/useGridLogger.d.ts +0 -4
- package/modern/hooks/utils/useGridLogger.js +0 -10
- package/modern/hooks/utils/useGridNativeEventListener.d.ts +0 -3
- package/modern/hooks/utils/useGridNativeEventListener.js +0 -17
- package/modern/hooks/utils/useGridPrivateApiContext.d.ts +0 -6
- package/modern/hooks/utils/useGridPrivateApiContext.js +0 -12
- package/modern/hooks/utils/useGridRootProps.d.ts +0 -2
- package/modern/hooks/utils/useGridRootProps.js +0 -9
- package/modern/hooks/utils/useGridSelector.d.ts +0 -8
- package/modern/hooks/utils/useGridSelector.js +0 -83
- package/modern/hooks/utils/useGridVisibleRows.d.ts +0 -26
- package/modern/hooks/utils/useGridVisibleRows.js +0 -17
- package/modern/hooks/utils/useIsSSR.d.ts +0 -1
- package/modern/hooks/utils/useIsSSR.js +0 -8
- package/modern/hooks/utils/useLazyRef.d.ts +0 -1
- package/modern/hooks/utils/useLazyRef.js +0 -1
- package/modern/hooks/utils/useOnMount.d.ts +0 -1
- package/modern/hooks/utils/useOnMount.js +0 -1
- package/modern/hooks/utils/useRunOnce.d.ts +0 -5
- package/modern/hooks/utils/useRunOnce.js +0 -18
- package/modern/hooks/utils/useTimeout.d.ts +0 -1
- package/modern/hooks/utils/useTimeout.js +0 -1
- package/modern/index.d.ts +0 -38
- package/modern/index.js +0 -38
- package/modern/internals/constants.d.ts +0 -9
- package/modern/internals/constants.js +0 -10
- package/modern/internals/demo/TailwindDemoContainer.d.ts +0 -11
- package/modern/internals/demo/TailwindDemoContainer.js +0 -55
- package/modern/internals/demo/index.d.ts +0 -1
- package/modern/internals/demo/index.js +0 -1
- package/modern/internals/index.d.ts +0 -112
- package/modern/internals/index.js +0 -90
- package/modern/internals/utils/attachPinnedStyle.d.ts +0 -2
- package/modern/internals/utils/attachPinnedStyle.js +0 -9
- package/modern/internals/utils/computeSlots.d.ts +0 -7
- package/modern/internals/utils/computeSlots.js +0 -18
- package/modern/internals/utils/getPinnedCellOffset.d.ts +0 -3
- package/modern/internals/utils/getPinnedCellOffset.js +0 -16
- package/modern/internals/utils/gridRowGroupingUtils.d.ts +0 -2
- package/modern/internals/utils/gridRowGroupingUtils.js +0 -9
- package/modern/internals/utils/index.d.ts +0 -4
- package/modern/internals/utils/index.js +0 -4
- package/modern/internals/utils/propValidation.d.ts +0 -4
- package/modern/internals/utils/propValidation.js +0 -12
- package/modern/locales/arSD.js +0 -197
- package/modern/locales/beBY.js +0 -220
- package/modern/locales/bgBG.d.ts +0 -2
- package/modern/locales/bgBG.js +0 -197
- package/modern/locales/bnBD.d.ts +0 -2
- package/modern/locales/bnBD.js +0 -194
- package/modern/locales/csCZ.d.ts +0 -2
- package/modern/locales/csCZ.js +0 -222
- package/modern/locales/daDK.d.ts +0 -2
- package/modern/locales/daDK.js +0 -197
- package/modern/locales/deDE.d.ts +0 -2
- package/modern/locales/deDE.js +0 -193
- package/modern/locales/elGR.d.ts +0 -2
- package/modern/locales/elGR.js +0 -198
- package/modern/locales/enUS.d.ts +0 -2
- package/modern/locales/enUS.js +0 -3
- package/modern/locales/esES.d.ts +0 -2
- package/modern/locales/esES.js +0 -195
- package/modern/locales/faIR.d.ts +0 -2
- package/modern/locales/faIR.js +0 -196
- package/modern/locales/fiFI.d.ts +0 -2
- package/modern/locales/fiFI.js +0 -197
- package/modern/locales/frFR.d.ts +0 -2
- package/modern/locales/frFR.js +0 -197
- package/modern/locales/heIL.d.ts +0 -2
- package/modern/locales/heIL.js +0 -195
- package/modern/locales/hrHR.d.ts +0 -1
- package/modern/locales/hrHR.js +0 -220
- package/modern/locales/huHU.d.ts +0 -2
- package/modern/locales/huHU.js +0 -194
- package/modern/locales/index.d.ts +0 -37
- package/modern/locales/index.js +0 -38
- package/modern/locales/isIS.d.ts +0 -2
- package/modern/locales/isIS.js +0 -197
- package/modern/locales/itIT.d.ts +0 -2
- package/modern/locales/itIT.js +0 -197
- package/modern/locales/jaJP.d.ts +0 -2
- package/modern/locales/jaJP.js +0 -197
- package/modern/locales/koKR.d.ts +0 -2
- package/modern/locales/koKR.js +0 -195
- package/modern/locales/nbNO.d.ts +0 -2
- package/modern/locales/nbNO.js +0 -197
- package/modern/locales/nlNL.d.ts +0 -2
- package/modern/locales/nlNL.js +0 -195
- package/modern/locales/nnNO.d.ts +0 -2
- package/modern/locales/nnNO.js +0 -197
- package/modern/locales/plPL.d.ts +0 -2
- package/modern/locales/plPL.js +0 -194
- package/modern/locales/ptBR.d.ts +0 -2
- package/modern/locales/ptBR.js +0 -195
- package/modern/locales/ptPT.d.ts +0 -1
- package/modern/locales/ptPT.js +0 -195
- package/modern/locales/roRO.d.ts +0 -2
- package/modern/locales/roRO.js +0 -195
- package/modern/locales/ruRU.d.ts +0 -2
- package/modern/locales/ruRU.js +0 -216
- package/modern/locales/skSK.d.ts +0 -2
- package/modern/locales/skSK.js +0 -222
- package/modern/locales/svSE.d.ts +0 -2
- package/modern/locales/svSE.js +0 -197
- package/modern/locales/trTR.d.ts +0 -2
- package/modern/locales/trTR.js +0 -195
- package/modern/locales/ukUA.d.ts +0 -2
- package/modern/locales/ukUA.js +0 -216
- package/modern/locales/urPK.d.ts +0 -2
- package/modern/locales/urPK.js +0 -197
- package/modern/locales/viVN.d.ts +0 -2
- package/modern/locales/viVN.js +0 -197
- package/modern/locales/zhCN.d.ts +0 -2
- package/modern/locales/zhCN.js +0 -192
- package/modern/locales/zhHK.d.ts +0 -1
- package/modern/locales/zhHK.js +0 -192
- package/modern/locales/zhTW.d.ts +0 -2
- package/modern/locales/zhTW.js +0 -192
- package/modern/material/augmentation.d.ts +0 -74
- package/modern/material/augmentation.js +0 -1
- package/modern/material/icons/GridColumnUnsortedIcon.d.ts +0 -8
- package/modern/material/icons/GridColumnUnsortedIcon.js +0 -16
- package/modern/material/icons/index.d.ts +0 -84
- package/modern/material/icons/index.js +0 -92
- package/modern/material/index.d.ts +0 -6
- package/modern/material/index.js +0 -665
- package/modern/material/variables.d.ts +0 -5
- package/modern/material/variables.js +0 -96
- package/modern/models/api/gridApiCommon.d.ts +0 -34
- package/modern/models/api/gridApiCommon.js +0 -1
- package/modern/models/api/gridApiCommunity.d.ts +0 -12
- package/modern/models/api/gridApiCommunity.js +0 -1
- package/modern/models/api/gridCallbackDetails.d.ts +0 -15
- package/modern/models/api/gridCallbackDetails.js +0 -1
- package/modern/models/api/gridColumnApi.d.ts +0 -74
- package/modern/models/api/gridColumnApi.js +0 -1
- package/modern/models/api/gridColumnGroupingApi.d.ts +0 -19
- package/modern/models/api/gridColumnGroupingApi.js +0 -1
- package/modern/models/api/gridColumnMenuApi.d.ts +0 -19
- package/modern/models/api/gridColumnMenuApi.js +0 -1
- package/modern/models/api/gridColumnSpanning.d.ts +0 -34
- package/modern/models/api/gridColumnSpanning.js +0 -1
- package/modern/models/api/gridCoreApi.d.ts +0 -96
- package/modern/models/api/gridCoreApi.js +0 -1
- package/modern/models/api/gridCsvExportApi.d.ts +0 -18
- package/modern/models/api/gridCsvExportApi.js +0 -1
- package/modern/models/api/gridDensityApi.d.ts +0 -17
- package/modern/models/api/gridDensityApi.js +0 -1
- package/modern/models/api/gridEditingApi.d.ts +0 -238
- package/modern/models/api/gridEditingApi.js +0 -1
- package/modern/models/api/gridFilterApi.d.ts +0 -67
- package/modern/models/api/gridFilterApi.js +0 -1
- package/modern/models/api/gridFocusApi.d.ts +0 -46
- package/modern/models/api/gridFocusApi.js +0 -1
- package/modern/models/api/gridHeaderFilteringApi.d.ts +0 -30
- package/modern/models/api/gridHeaderFilteringApi.js +0 -1
- package/modern/models/api/gridInfiniteLoaderApi.d.ts +0 -7
- package/modern/models/api/gridInfiniteLoaderApi.js +0 -1
- package/modern/models/api/gridLocaleTextApi.d.ts +0 -163
- package/modern/models/api/gridLocaleTextApi.js +0 -1
- package/modern/models/api/gridLoggerApi.d.ts +0 -11
- package/modern/models/api/gridLoggerApi.js +0 -1
- package/modern/models/api/gridParamsApi.d.ts +0 -107
- package/modern/models/api/gridParamsApi.js +0 -1
- package/modern/models/api/gridPreferencesPanelApi.d.ts +0 -17
- package/modern/models/api/gridPreferencesPanelApi.js +0 -1
- package/modern/models/api/gridPrintExportApi.d.ts +0 -11
- package/modern/models/api/gridPrintExportApi.js +0 -1
- package/modern/models/api/gridRowApi.d.ts +0 -120
- package/modern/models/api/gridRowApi.js +0 -1
- package/modern/models/api/gridRowSelectionApi.d.ts +0 -90
- package/modern/models/api/gridRowSelectionApi.js +0 -1
- package/modern/models/api/gridRowsMetaApi.d.ts +0 -60
- package/modern/models/api/gridRowsMetaApi.js +0 -1
- package/modern/models/api/gridScrollApi.d.ts +0 -24
- package/modern/models/api/gridScrollApi.js +0 -1
- package/modern/models/api/gridSortApi.d.ts +0 -46
- package/modern/models/api/gridSortApi.js +0 -1
- package/modern/models/api/gridStateApi.d.ts +0 -33
- package/modern/models/api/gridStateApi.js +0 -1
- package/modern/models/api/gridVirtualizationApi.d.ts +0 -19
- package/modern/models/api/gridVirtualizationApi.js +0 -1
- package/modern/models/api/index.d.ts +0 -23
- package/modern/models/api/index.js +0 -13
- package/modern/models/colDef/gridColDef.d.ts +0 -317
- package/modern/models/colDef/gridColDef.js +0 -1
- package/modern/models/colDef/gridColType.d.ts +0 -11
- package/modern/models/colDef/gridColType.js +0 -1
- package/modern/models/colDef/gridColumnTypesRecord.d.ts +0 -3
- package/modern/models/colDef/gridColumnTypesRecord.js +0 -1
- package/modern/models/colDef/index.d.ts +0 -3
- package/modern/models/colDef/index.js +0 -6
- package/modern/models/configuration/gridConfiguration.d.ts +0 -15
- package/modern/models/configuration/gridConfiguration.js +0 -1
- package/modern/models/configuration/gridRowConfiguration.d.ts +0 -12
- package/modern/models/configuration/gridRowConfiguration.js +0 -1
- package/modern/models/controlStateItem.d.ts +0 -14
- package/modern/models/controlStateItem.js +0 -1
- package/modern/models/cursorCoordinates.d.ts +0 -4
- package/modern/models/cursorCoordinates.js +0 -1
- package/modern/models/elementSize.d.ts +0 -13
- package/modern/models/elementSize.js +0 -1
- package/modern/models/events/gridEventListener.d.ts +0 -8
- package/modern/models/events/gridEventListener.js +0 -1
- package/modern/models/events/gridEventLookup.d.ts +0 -661
- package/modern/models/events/gridEventLookup.js +0 -1
- package/modern/models/events/gridEventPublisher.d.ts +0 -29
- package/modern/models/events/gridEventPublisher.js +0 -1
- package/modern/models/events/index.d.ts +0 -3
- package/modern/models/events/index.js +0 -3
- package/modern/models/gridApiCaches.d.ts +0 -6
- package/modern/models/gridApiCaches.js +0 -1
- package/modern/models/gridBaseSlots.d.ts +0 -260
- package/modern/models/gridBaseSlots.js +0 -1
- package/modern/models/gridCell.d.ts +0 -30
- package/modern/models/gridCell.js +0 -1
- package/modern/models/gridCellClass.d.ts +0 -10
- package/modern/models/gridCellClass.js +0 -1
- package/modern/models/gridColumnGrouping.d.ts +0 -41
- package/modern/models/gridColumnGrouping.js +0 -11
- package/modern/models/gridColumnHeaderClass.d.ts +0 -9
- package/modern/models/gridColumnHeaderClass.js +0 -1
- package/modern/models/gridColumnSpanning.d.ts +0 -12
- package/modern/models/gridColumnSpanning.js +0 -1
- package/modern/models/gridDataSource.d.ts +0 -70
- package/modern/models/gridDataSource.js +0 -1
- package/modern/models/gridDensity.d.ts +0 -4
- package/modern/models/gridDensity.js +0 -1
- package/modern/models/gridEditRowModel.d.ts +0 -28
- package/modern/models/gridEditRowModel.js +0 -16
- package/modern/models/gridExport.d.ts +0 -157
- package/modern/models/gridExport.js +0 -1
- package/modern/models/gridFeatureMode.d.ts +0 -1
- package/modern/models/gridFeatureMode.js +0 -1
- package/modern/models/gridFilterInputComponent.d.ts +0 -32
- package/modern/models/gridFilterInputComponent.js +0 -1
- package/modern/models/gridFilterItem.d.ts +0 -30
- package/modern/models/gridFilterItem.js +0 -11
- package/modern/models/gridFilterModel.d.ts +0 -34
- package/modern/models/gridFilterModel.js +0 -1
- package/modern/models/gridFilterOperator.d.ts +0 -58
- package/modern/models/gridFilterOperator.js +0 -1
- package/modern/models/gridHeaderFilteringModel.d.ts +0 -6
- package/modern/models/gridHeaderFilteringModel.js +0 -1
- package/modern/models/gridIconSlotsComponent.d.ts +0 -191
- package/modern/models/gridIconSlotsComponent.js +0 -1
- package/modern/models/gridPaginationProps.d.ts +0 -16
- package/modern/models/gridPaginationProps.js +0 -1
- package/modern/models/gridRenderContextProps.d.ts +0 -55
- package/modern/models/gridRenderContextProps.js +0 -1
- package/modern/models/gridRowSelectionManager.d.ts +0 -9
- package/modern/models/gridRowSelectionManager.js +0 -36
- package/modern/models/gridRowSelectionModel.d.ts +0 -9
- package/modern/models/gridRowSelectionModel.js +0 -1
- package/modern/models/gridRows.d.ts +0 -178
- package/modern/models/gridRows.js +0 -1
- package/modern/models/gridSlotsComponent.d.ts +0 -215
- package/modern/models/gridSlotsComponent.js +0 -1
- package/modern/models/gridSlotsComponentsProps.d.ts +0 -124
- package/modern/models/gridSlotsComponentsProps.js +0 -1
- package/modern/models/gridSortModel.d.ts +0 -30
- package/modern/models/gridSortModel.js +0 -1
- package/modern/models/gridStateCommunity.d.ts +0 -60
- package/modern/models/gridStateCommunity.js +0 -1
- package/modern/models/index.d.ts +0 -31
- package/modern/models/index.js +0 -30
- package/modern/models/logger.d.ts +0 -6
- package/modern/models/logger.js +0 -1
- package/modern/models/muiEvent.d.ts +0 -5
- package/modern/models/muiEvent.js +0 -1
- package/modern/models/params/gridCellParams.d.ts +0 -113
- package/modern/models/params/gridCellParams.js +0 -1
- package/modern/models/params/gridColumnGroupHeaderParams.d.ts +0 -30
- package/modern/models/params/gridColumnGroupHeaderParams.js +0 -1
- package/modern/models/params/gridColumnHeaderParams.d.ts +0 -15
- package/modern/models/params/gridColumnHeaderParams.js +0 -1
- package/modern/models/params/gridColumnOrderChangeParams.d.ts +0 -18
- package/modern/models/params/gridColumnOrderChangeParams.js +0 -1
- package/modern/models/params/gridColumnResizeParams.d.ts +0 -19
- package/modern/models/params/gridColumnResizeParams.js +0 -1
- package/modern/models/params/gridEditCellParams.d.ts +0 -65
- package/modern/models/params/gridEditCellParams.js +0 -27
- package/modern/models/params/gridHeaderSelectionCheckboxParams.d.ts +0 -3
- package/modern/models/params/gridHeaderSelectionCheckboxParams.js +0 -1
- package/modern/models/params/gridMenuParams.d.ts +0 -6
- package/modern/models/params/gridMenuParams.js +0 -1
- package/modern/models/params/gridPreferencePanelParams.d.ts +0 -2
- package/modern/models/params/gridPreferencePanelParams.js +0 -1
- package/modern/models/params/gridRowParams.d.ts +0 -110
- package/modern/models/params/gridRowParams.js +0 -44
- package/modern/models/params/gridRowSelectionCheckboxParams.d.ts +0 -5
- package/modern/models/params/gridRowSelectionCheckboxParams.js +0 -1
- package/modern/models/params/gridScrollParams.d.ts +0 -14
- package/modern/models/params/gridScrollParams.js +0 -1
- package/modern/models/params/gridValueOptionsParams.d.ts +0 -18
- package/modern/models/params/gridValueOptionsParams.js +0 -1
- package/modern/models/params/index.d.ts +0 -13
- package/modern/models/params/index.js +0 -13
- package/modern/models/props/DataGridProps.d.ts +0 -866
- package/modern/models/props/DataGridProps.js +0 -1
- package/modern/package.json +0 -1
- package/modern/themeAugmentation/index.d.ts +0 -2
- package/modern/themeAugmentation/index.js +0 -4
- package/modern/themeAugmentation/overrides.d.ts +0 -18
- package/modern/themeAugmentation/overrides.js +0 -1
- package/modern/themeAugmentation/props.d.ts +0 -15
- package/modern/themeAugmentation/props.js +0 -1
- package/modern/utils/ResizeObserver.d.ts +0 -4
- package/modern/utils/ResizeObserver.js +0 -10
- package/modern/utils/Store.d.ts +0 -11
- package/modern/utils/Store.js +0 -24
- package/modern/utils/assert.d.ts +0 -2
- package/modern/utils/assert.js +0 -3
- package/modern/utils/cellBorderUtils.d.ts +0 -3
- package/modern/utils/cellBorderUtils.js +0 -21
- package/modern/utils/cleanupTracking/CleanupTracking.d.ts +0 -9
- package/modern/utils/cleanupTracking/CleanupTracking.js +0 -1
- package/modern/utils/cleanupTracking/FinalizationRegistryBasedCleanupTracking.d.ts +0 -7
- package/modern/utils/cleanupTracking/FinalizationRegistryBasedCleanupTracking.js +0 -18
- package/modern/utils/cleanupTracking/TimerBasedCleanupTracking.d.ts +0 -9
- package/modern/utils/cleanupTracking/TimerBasedCleanupTracking.js +0 -38
- package/modern/utils/composeGridClasses.d.ts +0 -3
- package/modern/utils/composeGridClasses.js +0 -5
- package/modern/utils/createControllablePromise.d.ts +0 -5
- package/modern/utils/createControllablePromise.js +0 -11
- package/modern/utils/createSelector.d.ts +0 -23
- package/modern/utils/createSelector.js +0 -94
- package/modern/utils/css/context.d.ts +0 -14
- package/modern/utils/css/context.js +0 -54
- package/modern/utils/doesSupportPreventScroll.d.ts +0 -1
- package/modern/utils/doesSupportPreventScroll.js +0 -13
- package/modern/utils/domUtils.d.ts +0 -29
- package/modern/utils/domUtils.js +0 -204
- package/modern/utils/exportAs.d.ts +0 -12
- package/modern/utils/exportAs.js +0 -38
- package/modern/utils/getGridLocalization.d.ts +0 -11
- package/modern/utils/getGridLocalization.js +0 -9
- package/modern/utils/getPublicApiRef.d.ts +0 -3
- package/modern/utils/getPublicApiRef.js +0 -5
- package/modern/utils/index.d.ts +0 -2
- package/modern/utils/index.js +0 -1
- package/modern/utils/isJSDOM.d.ts +0 -1
- package/modern/utils/isJSDOM.js +0 -1
- package/modern/utils/keyboardUtils.d.ts +0 -14
- package/modern/utils/keyboardUtils.js +0 -37
- package/modern/utils/platform.d.ts +0 -1
- package/modern/utils/platform.js +0 -2
- package/modern/utils/roundToDecimalPlaces.d.ts +0 -1
- package/modern/utils/roundToDecimalPlaces.js +0 -3
- package/modern/utils/rtlFlipSide.d.ts +0 -2
- package/modern/utils/rtlFlipSide.js +0 -22
- package/modern/utils/utils.d.ts +0 -30
- package/modern/utils/utils.js +0 -82
- package/modern/utils/weakMapMemoize.d.ts +0 -20
- package/modern/utils/weakMapMemoize.js +0 -128
- package/tsconfig.build.tsbuildinfo +0 -1
- /package/esm/{models/muiEvent.js → hooks/features/pivoting/gridPivotingInterfaces.js} +0 -0
- /package/{models/muiEvent.js → hooks/features/pivoting/gridPivotingInterfaces.js} +0 -0
|
@@ -1,260 +0,0 @@
|
|
|
1
|
-
type Ref<T = HTMLElement> = React.RefCallback<T | null> | React.RefObject<T | null> | null;
|
|
2
|
-
type CommonProps<T = HTMLElement> = React.DOMAttributes<T> & {
|
|
3
|
-
className?: string;
|
|
4
|
-
style?: React.CSSProperties;
|
|
5
|
-
[k: `aria-${string}`]: any;
|
|
6
|
-
[k: `data-${string}`]: any;
|
|
7
|
-
};
|
|
8
|
-
export interface AutocompleteFilterOptionsState<Value> {
|
|
9
|
-
inputValue: string;
|
|
10
|
-
getOptionLabel: (option: Value) => string;
|
|
11
|
-
}
|
|
12
|
-
type AcValueMap<FreeSolo> = FreeSolo extends true ? string : never;
|
|
13
|
-
type AcValue<Value, Multiple, DisableClearable, FreeSolo> = Multiple extends true ? Array<Value | AcValueMap<FreeSolo>> : DisableClearable extends true ? NonNullable<Value | AcValueMap<FreeSolo>> : Value | null | AcValueMap<FreeSolo>;
|
|
14
|
-
export type AutocompleteProps<Value = string, Multiple extends boolean = false, DisableClearable extends boolean = false, FreeSolo extends boolean = false> = {
|
|
15
|
-
id?: string;
|
|
16
|
-
/** Allow multiple selection. */
|
|
17
|
-
multiple?: Multiple;
|
|
18
|
-
/** Allow to add new options. */
|
|
19
|
-
freeSolo?: FreeSolo;
|
|
20
|
-
value?: AcValue<Value, Multiple, DisableClearable, FreeSolo>;
|
|
21
|
-
options: ReadonlyArray<Value>;
|
|
22
|
-
/**
|
|
23
|
-
* Used to determine the string value for a given option.
|
|
24
|
-
* It's used to fill the input (and the list box options if `renderOption` is not provided).
|
|
25
|
-
*
|
|
26
|
-
* If used in free solo mode, it must accept both the type of the options and a string.
|
|
27
|
-
*
|
|
28
|
-
* @param {Value} option The option
|
|
29
|
-
* @returns {string} The label
|
|
30
|
-
* @default (option) => option.label ?? option
|
|
31
|
-
*/
|
|
32
|
-
getOptionLabel?: (option: Value | AcValueMap<FreeSolo>) => string;
|
|
33
|
-
/**
|
|
34
|
-
* Used to determine if the option represents the given value.
|
|
35
|
-
* Uses strict equality by default.
|
|
36
|
-
* ⚠️ Both arguments need to be handled, an option can only match with one value.
|
|
37
|
-
*
|
|
38
|
-
* @param {Value} option The option to test.
|
|
39
|
-
* @param {Value} value The value to test against.
|
|
40
|
-
* @returns {boolean} true if value matches
|
|
41
|
-
*/
|
|
42
|
-
isOptionEqualToValue?: (option: Value, value: Value) => boolean;
|
|
43
|
-
/**
|
|
44
|
-
* Callback fired when the value changes.
|
|
45
|
-
*
|
|
46
|
-
* @param {React.SyntheticEvent} event The event source of the callback.
|
|
47
|
-
* @param {Value|Value[]} value The new value of the component.
|
|
48
|
-
*/
|
|
49
|
-
onChange?: (event: React.SyntheticEvent, value: AcValue<Value, Multiple, DisableClearable, FreeSolo>) => void;
|
|
50
|
-
/**
|
|
51
|
-
* Callback fired when the input value changes.
|
|
52
|
-
*
|
|
53
|
-
* @param {React.SyntheticEvent} event The event source of the callback.
|
|
54
|
-
* @param {string} value The new value of the input.
|
|
55
|
-
*/
|
|
56
|
-
onInputChange?: (event: React.SyntheticEvent, value: string) => void;
|
|
57
|
-
label?: React.ReactNode;
|
|
58
|
-
placeholder?: string;
|
|
59
|
-
slotProps?: {
|
|
60
|
-
textField: TextFieldProps;
|
|
61
|
-
};
|
|
62
|
-
};
|
|
63
|
-
export type BadgeProps = CommonProps & {
|
|
64
|
-
badgeContent?: React.ReactNode;
|
|
65
|
-
children: React.ReactNode;
|
|
66
|
-
color?: 'primary' | 'default' | 'error';
|
|
67
|
-
invisible?: boolean;
|
|
68
|
-
overlap?: 'circular';
|
|
69
|
-
variant?: 'dot';
|
|
70
|
-
style?: React.CSSProperties;
|
|
71
|
-
};
|
|
72
|
-
export type ButtonProps = CommonProps & {
|
|
73
|
-
ref?: Ref<HTMLButtonElement>;
|
|
74
|
-
children?: React.ReactNode;
|
|
75
|
-
disabled?: boolean;
|
|
76
|
-
id?: string;
|
|
77
|
-
role?: string;
|
|
78
|
-
size?: 'small' | 'medium' | 'large';
|
|
79
|
-
startIcon?: React.ReactNode;
|
|
80
|
-
tabIndex?: number;
|
|
81
|
-
title?: string;
|
|
82
|
-
touchRippleRef?: any;
|
|
83
|
-
};
|
|
84
|
-
export type CheckboxProps = CommonProps & {
|
|
85
|
-
ref?: Ref<HTMLButtonElement>;
|
|
86
|
-
id?: string;
|
|
87
|
-
autoFocus?: boolean;
|
|
88
|
-
checked?: boolean;
|
|
89
|
-
className?: string;
|
|
90
|
-
disabled?: boolean;
|
|
91
|
-
fullWidth?: boolean;
|
|
92
|
-
indeterminate?: boolean;
|
|
93
|
-
inputRef?: React.Ref<HTMLInputElement>;
|
|
94
|
-
name?: string;
|
|
95
|
-
label?: React.ReactNode;
|
|
96
|
-
onChange?: React.ChangeEventHandler;
|
|
97
|
-
size?: 'small' | 'medium';
|
|
98
|
-
density?: 'standard' | 'compact';
|
|
99
|
-
slotProps?: {
|
|
100
|
-
htmlInput?: React.InputHTMLAttributes<HTMLInputElement>;
|
|
101
|
-
};
|
|
102
|
-
style?: React.CSSProperties;
|
|
103
|
-
tabIndex?: number;
|
|
104
|
-
touchRippleRef?: any;
|
|
105
|
-
};
|
|
106
|
-
export type IconButtonProps = Omit<ButtonProps, 'startIcon'> & {
|
|
107
|
-
label?: string;
|
|
108
|
-
color?: 'default' | 'inherit' | 'primary';
|
|
109
|
-
edge?: 'start' | 'end' | false;
|
|
110
|
-
};
|
|
111
|
-
export type DividerProps = {
|
|
112
|
-
className?: string;
|
|
113
|
-
orientation?: 'horizontal' | 'vertical';
|
|
114
|
-
};
|
|
115
|
-
export type MenuListProps = CommonProps & {
|
|
116
|
-
ref?: Ref<HTMLUListElement>;
|
|
117
|
-
id?: string;
|
|
118
|
-
children?: React.ReactNode;
|
|
119
|
-
autoFocus?: boolean;
|
|
120
|
-
autoFocusItem?: boolean;
|
|
121
|
-
};
|
|
122
|
-
export type MenuItemProps = CommonProps & {
|
|
123
|
-
autoFocus?: boolean;
|
|
124
|
-
children?: React.ReactNode;
|
|
125
|
-
/** For items that aren't interactive themselves (but may contain an interactive widget) */
|
|
126
|
-
inert?: boolean;
|
|
127
|
-
disabled?: boolean;
|
|
128
|
-
iconStart?: React.ReactNode;
|
|
129
|
-
iconEnd?: React.ReactNode;
|
|
130
|
-
selected?: boolean;
|
|
131
|
-
value?: number | string | readonly string[];
|
|
132
|
-
style?: React.CSSProperties;
|
|
133
|
-
};
|
|
134
|
-
type BasePlacement = 'top' | 'bottom' | 'left' | 'right';
|
|
135
|
-
type VariationPlacement = 'top-start' | 'top-end' | 'bottom-start' | 'bottom-end' | 'right-start' | 'right-end' | 'left-start' | 'left-end';
|
|
136
|
-
type AutoPlacement = 'auto' | 'auto-start' | 'auto-end';
|
|
137
|
-
type Placement = AutoPlacement | BasePlacement | VariationPlacement;
|
|
138
|
-
type ClickAwayMouseEventHandler = 'onClick' | 'onMouseDown' | 'onMouseUp' | 'onPointerDown' | 'onPointerUp';
|
|
139
|
-
type ClickAwayTouchEventHandler = 'onTouchStart' | 'onTouchEnd';
|
|
140
|
-
export type PaginationProps = CommonProps & {
|
|
141
|
-
count: number;
|
|
142
|
-
page: number;
|
|
143
|
-
rowsPerPage: number;
|
|
144
|
-
rowsPerPageOptions?: readonly (number | {
|
|
145
|
-
value: number;
|
|
146
|
-
label: string;
|
|
147
|
-
})[];
|
|
148
|
-
onPageChange: (event: React.MouseEvent<HTMLButtonElement> | null, page: number) => void;
|
|
149
|
-
onRowsPerPageChange?: (rowsPerPage: number) => void;
|
|
150
|
-
disabled?: boolean;
|
|
151
|
-
};
|
|
152
|
-
export type PopperProps = CommonProps & {
|
|
153
|
-
ref?: Ref<HTMLDivElement>;
|
|
154
|
-
open: boolean;
|
|
155
|
-
children?: React.ReactNode;
|
|
156
|
-
clickAwayTouchEvent?: false | ClickAwayTouchEventHandler;
|
|
157
|
-
clickAwayMouseEvent?: false | ClickAwayMouseEventHandler;
|
|
158
|
-
flip?: boolean;
|
|
159
|
-
focusTrap?: boolean;
|
|
160
|
-
onExited?: (node: HTMLElement | null) => void;
|
|
161
|
-
onClickAway?: (event: MouseEvent | TouchEvent) => void;
|
|
162
|
-
onDidShow?: () => void;
|
|
163
|
-
onDidHide?: () => void;
|
|
164
|
-
id?: string;
|
|
165
|
-
target?: Element | null;
|
|
166
|
-
transition?: boolean;
|
|
167
|
-
/** @default 'bottom' */
|
|
168
|
-
placement?: Placement;
|
|
169
|
-
};
|
|
170
|
-
export type CircularProgressProps = CommonProps & {
|
|
171
|
-
/**
|
|
172
|
-
* Pixels or CSS value.
|
|
173
|
-
* @default 40
|
|
174
|
-
*/
|
|
175
|
-
size?: number | string;
|
|
176
|
-
/** @default 'primary' */
|
|
177
|
-
color?: 'inherit' | 'primary';
|
|
178
|
-
};
|
|
179
|
-
export type LinearProgressProps = CommonProps & {};
|
|
180
|
-
export type InputProps = CommonProps & {
|
|
181
|
-
ref?: React.Ref<HTMLElement>;
|
|
182
|
-
inputRef?: React.Ref<HTMLInputElement>;
|
|
183
|
-
fullWidth?: boolean;
|
|
184
|
-
type?: React.HTMLInputTypeAttribute;
|
|
185
|
-
value?: string;
|
|
186
|
-
onChange: React.ChangeEventHandler;
|
|
187
|
-
disabled?: boolean;
|
|
188
|
-
endAdornment?: React.ReactNode;
|
|
189
|
-
startAdornment?: React.ReactNode;
|
|
190
|
-
slotProps?: {
|
|
191
|
-
htmlInput?: React.InputHTMLAttributes<HTMLInputElement>;
|
|
192
|
-
};
|
|
193
|
-
};
|
|
194
|
-
export type SelectProps = CommonProps & {
|
|
195
|
-
ref?: Ref;
|
|
196
|
-
id?: string;
|
|
197
|
-
value?: any;
|
|
198
|
-
open?: boolean;
|
|
199
|
-
error?: boolean;
|
|
200
|
-
disabled?: boolean;
|
|
201
|
-
onChange?: React.ChangeEventHandler;
|
|
202
|
-
onOpen?: (event: React.SyntheticEvent) => void;
|
|
203
|
-
onClose?: (event: React.KeyboardEvent, reason: 'backdropClick' | 'escapeKeyDown' | 'tabKeyDown') => void;
|
|
204
|
-
label?: React.ReactNode;
|
|
205
|
-
labelId?: string;
|
|
206
|
-
native?: boolean;
|
|
207
|
-
fullWidth?: boolean;
|
|
208
|
-
size?: 'small' | 'medium';
|
|
209
|
-
slotProps?: {
|
|
210
|
-
htmlInput?: {
|
|
211
|
-
ref?: Ref;
|
|
212
|
-
} & React.InputHTMLAttributes<HTMLInputElement>;
|
|
213
|
-
};
|
|
214
|
-
children?: React.ReactNode;
|
|
215
|
-
};
|
|
216
|
-
export type SelectOptionProps = CommonProps & {
|
|
217
|
-
native: boolean;
|
|
218
|
-
value: any;
|
|
219
|
-
children?: React.ReactNode;
|
|
220
|
-
};
|
|
221
|
-
export type SkeletonProps = CommonProps & {
|
|
222
|
-
variant?: 'circular' | 'text';
|
|
223
|
-
width?: number | string;
|
|
224
|
-
height?: number | string;
|
|
225
|
-
};
|
|
226
|
-
export type SwitchProps = CommonProps & {
|
|
227
|
-
checked?: boolean;
|
|
228
|
-
onChange?: React.ChangeEventHandler;
|
|
229
|
-
size?: 'small' | 'medium';
|
|
230
|
-
};
|
|
231
|
-
export type TextFieldProps = CommonProps & {
|
|
232
|
-
role?: string;
|
|
233
|
-
autoComplete?: string;
|
|
234
|
-
color?: 'primary' | 'error';
|
|
235
|
-
disabled?: boolean;
|
|
236
|
-
error?: boolean;
|
|
237
|
-
fullWidth?: boolean;
|
|
238
|
-
helperText?: string | null;
|
|
239
|
-
id?: string;
|
|
240
|
-
inputRef?: React.Ref<HTMLInputElement>;
|
|
241
|
-
label?: React.ReactNode;
|
|
242
|
-
onChange?: React.ChangeEventHandler;
|
|
243
|
-
placeholder?: string;
|
|
244
|
-
size?: 'small' | 'medium';
|
|
245
|
-
slotProps?: {
|
|
246
|
-
input?: Omit<Partial<InputProps>, 'slotProps'>;
|
|
247
|
-
inputLabel?: {};
|
|
248
|
-
htmlInput?: React.InputHTMLAttributes<HTMLInputElement>;
|
|
249
|
-
};
|
|
250
|
-
tabIndex?: number;
|
|
251
|
-
type?: React.HTMLInputTypeAttribute;
|
|
252
|
-
value?: string;
|
|
253
|
-
ref?: Ref<HTMLInputElement>;
|
|
254
|
-
};
|
|
255
|
-
export type TooltipProps = CommonProps & {
|
|
256
|
-
children: React.ReactElement<any, any>;
|
|
257
|
-
enterDelay?: number;
|
|
258
|
-
title: React.ReactNode;
|
|
259
|
-
};
|
|
260
|
-
export {};
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export {};
|
|
@@ -1,30 +0,0 @@
|
|
|
1
|
-
import type { GridColDef } from './colDef';
|
|
2
|
-
import { GridRowId } from "./gridRows.js";
|
|
3
|
-
/**
|
|
4
|
-
* The mode of the cell.
|
|
5
|
-
*/
|
|
6
|
-
export type GridCellMode = 'edit' | 'view';
|
|
7
|
-
/**
|
|
8
|
-
* The mode of the row.
|
|
9
|
-
*/
|
|
10
|
-
export type GridRowMode = 'edit' | 'view';
|
|
11
|
-
/**
|
|
12
|
-
* The coordinates of cell represented by their row and column indexes.
|
|
13
|
-
*/
|
|
14
|
-
export interface GridCellIndexCoordinates {
|
|
15
|
-
colIndex: number;
|
|
16
|
-
rowIndex: number;
|
|
17
|
-
}
|
|
18
|
-
/**
|
|
19
|
-
* The coordinates of a cell represented by their row ID and column field.
|
|
20
|
-
*/
|
|
21
|
-
export interface GridCellCoordinates {
|
|
22
|
-
id: GridRowId;
|
|
23
|
-
field: GridColDef['field'];
|
|
24
|
-
}
|
|
25
|
-
/**
|
|
26
|
-
* The coordinates of column header represented by their row and column indexes.
|
|
27
|
-
*/
|
|
28
|
-
export interface GridColumnHeaderIndexCoordinates {
|
|
29
|
-
colIndex: number;
|
|
30
|
-
}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export {};
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
import { GridValidRowModel } from "./gridRows.js";
|
|
2
|
-
import { GridCellParams } from "./params/gridCellParams.js";
|
|
3
|
-
/**
|
|
4
|
-
* A function used to process cellClassName params.
|
|
5
|
-
*/
|
|
6
|
-
export type GridCellClassFn<R extends GridValidRowModel = any, V = unknown> = (params: GridCellParams<R, V>) => string;
|
|
7
|
-
/**
|
|
8
|
-
* The union type representing the [[GridColDef]] cell class type.
|
|
9
|
-
*/
|
|
10
|
-
export type GridCellClassNamePropType<R extends GridValidRowModel = any, V = unknown> = string | GridCellClassFn<R, V>;
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export {};
|
|
@@ -1,41 +0,0 @@
|
|
|
1
|
-
import { GridColDef } from "./colDef/index.js";
|
|
2
|
-
import type { GridColumnGroupHeaderParams } from './params/gridColumnGroupHeaderParams';
|
|
3
|
-
export interface GridLeafColumn {
|
|
4
|
-
field: GridColDef['field'];
|
|
5
|
-
}
|
|
6
|
-
export type GridColumnNode = GridColumnGroup | GridLeafColumn;
|
|
7
|
-
export declare function isLeaf(node: GridColumnNode): node is GridLeafColumn;
|
|
8
|
-
/**
|
|
9
|
-
* A function used to process headerClassName params.
|
|
10
|
-
*/
|
|
11
|
-
export type GridColumnGroupHeaderClassFn = (params: GridColumnGroupHeaderParams) => string;
|
|
12
|
-
/**
|
|
13
|
-
* The union type representing the [[GridColDef]] column header class type.
|
|
14
|
-
*/
|
|
15
|
-
export type GridColumnGroupHeaderClassNamePropType = string | GridColumnGroupHeaderClassFn;
|
|
16
|
-
export interface GridColumnGroup extends Pick<GridColDef, 'headerName' | 'description' | 'headerAlign'> {
|
|
17
|
-
/**
|
|
18
|
-
* A unique string identifying the group.
|
|
19
|
-
*/
|
|
20
|
-
groupId: string;
|
|
21
|
-
/**
|
|
22
|
-
* The groups and columns included in this group.
|
|
23
|
-
*/
|
|
24
|
-
children: GridColumnNode[];
|
|
25
|
-
/**
|
|
26
|
-
* If `true`, allows reordering columns outside of the group.
|
|
27
|
-
* @default false
|
|
28
|
-
*/
|
|
29
|
-
freeReordering?: boolean;
|
|
30
|
-
/**
|
|
31
|
-
* Allows to render a component in the column group header cell.
|
|
32
|
-
* @param {GridColumnGroupHeaderParams} params Object containing parameters for the renderer.
|
|
33
|
-
* @returns {React.ReactNode} The element to be rendered.
|
|
34
|
-
*/
|
|
35
|
-
renderHeaderGroup?: (params: GridColumnGroupHeaderParams) => React.ReactNode;
|
|
36
|
-
/**
|
|
37
|
-
* Class name that will be added in the column group header cell.
|
|
38
|
-
*/
|
|
39
|
-
headerClassName?: GridColumnGroupHeaderClassNamePropType;
|
|
40
|
-
}
|
|
41
|
-
export type GridColumnGroupingModel = GridColumnGroup[];
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
import { GridColumnHeaderParams } from "./params/gridColumnHeaderParams.js";
|
|
2
|
-
/**
|
|
3
|
-
* A function used to process headerClassName params.
|
|
4
|
-
*/
|
|
5
|
-
export type GridColumnHeaderClassFn = (params: GridColumnHeaderParams) => string;
|
|
6
|
-
/**
|
|
7
|
-
* The union type representing the [[GridColDef]] column header class type.
|
|
8
|
-
*/
|
|
9
|
-
export type GridColumnHeaderClassNamePropType = string | GridColumnHeaderClassFn;
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export {};
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
export type GridColumnIndex = number;
|
|
2
|
-
export type GridCellColSpanInfo = {
|
|
3
|
-
spannedByColSpan: true;
|
|
4
|
-
rightVisibleCellIndex: GridColumnIndex;
|
|
5
|
-
leftVisibleCellIndex: GridColumnIndex;
|
|
6
|
-
} | {
|
|
7
|
-
spannedByColSpan: false;
|
|
8
|
-
cellProps: {
|
|
9
|
-
colSpan: number;
|
|
10
|
-
width: number;
|
|
11
|
-
};
|
|
12
|
-
};
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export {};
|
|
@@ -1,70 +0,0 @@
|
|
|
1
|
-
import type { GridSortModel, GridFilterModel, GridRowModel, GridPaginationModel, GridRowId } from '.';
|
|
2
|
-
export interface GridGetRowsParams {
|
|
3
|
-
sortModel: GridSortModel;
|
|
4
|
-
filterModel: GridFilterModel;
|
|
5
|
-
/**
|
|
6
|
-
* Alternate to `start` and `end`, maps to `GridPaginationModel` interface.
|
|
7
|
-
*/
|
|
8
|
-
paginationModel?: GridPaginationModel;
|
|
9
|
-
/**
|
|
10
|
-
* First row index to fetch (number) or cursor information (number | string).
|
|
11
|
-
*/
|
|
12
|
-
start: number | string;
|
|
13
|
-
/**
|
|
14
|
-
* Last row index to fetch.
|
|
15
|
-
*/
|
|
16
|
-
end: number;
|
|
17
|
-
}
|
|
18
|
-
export interface GridUpdateRowParams {
|
|
19
|
-
rowId: GridRowId;
|
|
20
|
-
updatedRow: GridRowModel;
|
|
21
|
-
previousRow: GridRowModel;
|
|
22
|
-
}
|
|
23
|
-
export interface GridGetRowsResponse {
|
|
24
|
-
rows: GridRowModel[];
|
|
25
|
-
/**
|
|
26
|
-
* To reflect updates in total `rowCount` (optional).
|
|
27
|
-
* Useful when the `rowCount` is inaccurate (for example when filtering) or not available upfront.
|
|
28
|
-
*/
|
|
29
|
-
rowCount?: number;
|
|
30
|
-
/**
|
|
31
|
-
* Additional `pageInfo` for advanced use-cases.
|
|
32
|
-
* `hasNextPage`: When row count is unknown/estimated, `hasNextPage` will be used to check if more records are available on server.
|
|
33
|
-
*/
|
|
34
|
-
pageInfo?: {
|
|
35
|
-
hasNextPage?: boolean;
|
|
36
|
-
nextCursor?: string;
|
|
37
|
-
};
|
|
38
|
-
}
|
|
39
|
-
export interface GridDataSource {
|
|
40
|
-
/**
|
|
41
|
-
* This method will be called when the grid needs to fetch some rows.
|
|
42
|
-
* @param {GridGetRowsParams} params The parameters required to fetch the rows.
|
|
43
|
-
* @returns {Promise<GridGetRowsResponse>} A promise that resolves to the data of type [GridGetRowsResponse].
|
|
44
|
-
*/
|
|
45
|
-
getRows(params: GridGetRowsParams): Promise<GridGetRowsResponse>;
|
|
46
|
-
/**
|
|
47
|
-
* This method will be called when the user updates a row.
|
|
48
|
-
* @param {GridUpdateRowParams} params The parameters required to update the row.
|
|
49
|
-
* @returns {Promise<any>} If resolved (synced on the backend), the grid will update the row and mutate the cache.
|
|
50
|
-
*/
|
|
51
|
-
updateRow?(params: GridUpdateRowParams): Promise<any>;
|
|
52
|
-
}
|
|
53
|
-
export interface GridDataSourceCache {
|
|
54
|
-
/**
|
|
55
|
-
* Set the cache entry for the given key.
|
|
56
|
-
* @param {GridGetRowsParams} key The key of type `GridGetRowsParams`.
|
|
57
|
-
* @param {GridGetRowsResponse} value The value to be stored in the cache.
|
|
58
|
-
*/
|
|
59
|
-
set: (key: GridGetRowsParams, value: GridGetRowsResponse) => void;
|
|
60
|
-
/**
|
|
61
|
-
* Get the cache entry for the given key.
|
|
62
|
-
* @param {GridGetRowsParams} key The key of type `GridGetRowsParams`.
|
|
63
|
-
* @returns {GridGetRowsResponse} The value stored in the cache.
|
|
64
|
-
*/
|
|
65
|
-
get: (key: GridGetRowsParams) => GridGetRowsResponse | undefined;
|
|
66
|
-
/**
|
|
67
|
-
* Clear the cache.
|
|
68
|
-
*/
|
|
69
|
-
clear: () => void;
|
|
70
|
-
}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export {};
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export {};
|
|
@@ -1,28 +0,0 @@
|
|
|
1
|
-
import type { GridEditCellMeta } from './api/gridEditingApi';
|
|
2
|
-
export interface GridEditCellProps<V = any> {
|
|
3
|
-
value?: V | undefined;
|
|
4
|
-
isValidating?: boolean;
|
|
5
|
-
isProcessingProps?: boolean;
|
|
6
|
-
changeReason?: GridEditCellMeta['changeReason'];
|
|
7
|
-
[prop: string]: any;
|
|
8
|
-
}
|
|
9
|
-
export type GridEditRowProps = {
|
|
10
|
-
[field: string]: GridEditCellProps;
|
|
11
|
-
};
|
|
12
|
-
export type GridEditingState = {
|
|
13
|
-
[rowId: string]: GridEditRowProps;
|
|
14
|
-
};
|
|
15
|
-
export type GridEditMode = 'cell' | 'row';
|
|
16
|
-
declare enum GridEditModes {
|
|
17
|
-
Cell = "cell",
|
|
18
|
-
Row = "row",
|
|
19
|
-
}
|
|
20
|
-
declare enum GridCellModes {
|
|
21
|
-
Edit = "edit",
|
|
22
|
-
View = "view",
|
|
23
|
-
}
|
|
24
|
-
declare enum GridRowModes {
|
|
25
|
-
Edit = "edit",
|
|
26
|
-
View = "view",
|
|
27
|
-
}
|
|
28
|
-
export { GridEditModes, GridCellModes, GridRowModes };
|
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
var GridEditModes = /*#__PURE__*/function (GridEditModes) {
|
|
2
|
-
GridEditModes["Cell"] = "cell";
|
|
3
|
-
GridEditModes["Row"] = "row";
|
|
4
|
-
return GridEditModes;
|
|
5
|
-
}(GridEditModes || {});
|
|
6
|
-
var GridCellModes = /*#__PURE__*/function (GridCellModes) {
|
|
7
|
-
GridCellModes["Edit"] = "edit";
|
|
8
|
-
GridCellModes["View"] = "view";
|
|
9
|
-
return GridCellModes;
|
|
10
|
-
}(GridCellModes || {});
|
|
11
|
-
var GridRowModes = /*#__PURE__*/function (GridRowModes) {
|
|
12
|
-
GridRowModes["Edit"] = "edit";
|
|
13
|
-
GridRowModes["View"] = "view";
|
|
14
|
-
return GridRowModes;
|
|
15
|
-
}(GridRowModes || {});
|
|
16
|
-
export { GridEditModes, GridCellModes, GridRowModes };
|
|
@@ -1,157 +0,0 @@
|
|
|
1
|
-
import { RefObject } from '@mui/x-internals/types';
|
|
2
|
-
import { GridRowId } from "./gridRows.js";
|
|
3
|
-
import type { GridApiCommon } from './api';
|
|
4
|
-
import type { GridApiCommunity } from './api/gridApiCommunity';
|
|
5
|
-
/**
|
|
6
|
-
* The options applicable to any export format.
|
|
7
|
-
*/
|
|
8
|
-
export interface GridExportOptions {
|
|
9
|
-
/**
|
|
10
|
-
* The columns exported.
|
|
11
|
-
* This should only be used if you want to restrict the columns exports.
|
|
12
|
-
*/
|
|
13
|
-
fields?: string[];
|
|
14
|
-
/**
|
|
15
|
-
* If `true`, the hidden columns will also be exported.
|
|
16
|
-
* @default false
|
|
17
|
-
*/
|
|
18
|
-
allColumns?: boolean;
|
|
19
|
-
}
|
|
20
|
-
/**
|
|
21
|
-
* The options applicable to any document export format (CSV and Excel).
|
|
22
|
-
*/
|
|
23
|
-
export interface GridFileExportOptions<Api extends GridApiCommon = GridApiCommunity> extends GridExportOptions {
|
|
24
|
-
/**
|
|
25
|
-
* The string used as the file name.
|
|
26
|
-
* @default document.title
|
|
27
|
-
*/
|
|
28
|
-
fileName?: string;
|
|
29
|
-
/**
|
|
30
|
-
* If `true`, the first row of the file will include the headers of the grid.
|
|
31
|
-
* @default true
|
|
32
|
-
*/
|
|
33
|
-
includeHeaders?: boolean;
|
|
34
|
-
/**
|
|
35
|
-
* Function that returns the list of row ids to export on the order they should be exported.
|
|
36
|
-
* @param {GridGetRowsToExportParams} params With all properties from [[GridGetRowsToExportParams]].
|
|
37
|
-
* @returns {GridRowId[]} The list of row ids to export.
|
|
38
|
-
*/
|
|
39
|
-
getRowsToExport?: (params: GridGetRowsToExportParams<Api>) => GridRowId[];
|
|
40
|
-
/**
|
|
41
|
-
* If `false`, the formulas in the cells will not be escaped.
|
|
42
|
-
* It is not recommended to disable this option as it exposes the user to potential CSV injection attacks.
|
|
43
|
-
* See https://owasp.org/www-community/attacks/CSV_Injection for more information.
|
|
44
|
-
* @default true
|
|
45
|
-
*/
|
|
46
|
-
escapeFormulas?: boolean;
|
|
47
|
-
}
|
|
48
|
-
export interface GridGetRowsToExportParams<Api extends GridApiCommon = GridApiCommunity> {
|
|
49
|
-
/**
|
|
50
|
-
* The API of the grid.
|
|
51
|
-
*/
|
|
52
|
-
apiRef: RefObject<Api>;
|
|
53
|
-
}
|
|
54
|
-
export interface GridCsvGetRowsToExportParams<Api extends GridApiCommon = GridApiCommunity> extends GridGetRowsToExportParams<Api> {}
|
|
55
|
-
export interface GridPrintGetRowsToExportParams<Api extends GridApiCommon = GridApiCommunity> extends GridGetRowsToExportParams<Api> {}
|
|
56
|
-
/**
|
|
57
|
-
* The options to apply on the CSV export.
|
|
58
|
-
* @demos
|
|
59
|
-
* - [CSV export](/x/react-data-grid/export/#csv-export)
|
|
60
|
-
*/
|
|
61
|
-
export interface GridCsvExportOptions extends GridFileExportOptions {
|
|
62
|
-
/**
|
|
63
|
-
* The character used to separate fields.
|
|
64
|
-
* @default ','
|
|
65
|
-
*/
|
|
66
|
-
delimiter?: string;
|
|
67
|
-
/**
|
|
68
|
-
* The string used as the file name.
|
|
69
|
-
* @default document.title
|
|
70
|
-
*/
|
|
71
|
-
fileName?: string;
|
|
72
|
-
/**
|
|
73
|
-
* If `true`, the UTF-8 Byte Order Mark (BOM) prefixes the exported file.
|
|
74
|
-
* This can allow Excel to automatically detect file encoding as UTF-8.
|
|
75
|
-
* @default false
|
|
76
|
-
*/
|
|
77
|
-
utf8WithBom?: boolean;
|
|
78
|
-
/**
|
|
79
|
-
* If `true`, the CSV will include the column headers and column groups.
|
|
80
|
-
* Use `includeColumnGroupsHeaders` to control whether the column groups are included.
|
|
81
|
-
* @default true
|
|
82
|
-
*/
|
|
83
|
-
includeHeaders?: boolean;
|
|
84
|
-
/**
|
|
85
|
-
* If `true`, the CSV will include the column groups.
|
|
86
|
-
* @see See {@link https://mui.com/x/react-data-grid/column-groups/ column groups docs} for more details.
|
|
87
|
-
* @default true
|
|
88
|
-
*/
|
|
89
|
-
includeColumnGroupsHeaders?: boolean;
|
|
90
|
-
/**
|
|
91
|
-
* Function that returns the list of row ids to export on the order they should be exported.
|
|
92
|
-
* @param {GridCsvGetRowsToExportParams} params With all properties from [[GridCsvGetRowsToExportParams]].
|
|
93
|
-
* @returns {GridRowId[]} The list of row ids to export.
|
|
94
|
-
*/
|
|
95
|
-
getRowsToExport?: (params: GridCsvGetRowsToExportParams) => GridRowId[];
|
|
96
|
-
/**
|
|
97
|
-
* @ignore
|
|
98
|
-
* If `false`, the quotes will not be appended to the cell value.
|
|
99
|
-
* @default true
|
|
100
|
-
*/
|
|
101
|
-
shouldAppendQuotes?: boolean;
|
|
102
|
-
}
|
|
103
|
-
/**
|
|
104
|
-
* The options to apply on the Print export.
|
|
105
|
-
* @demos
|
|
106
|
-
* - [Print export](/x/react-data-grid/export/#print-export)
|
|
107
|
-
*/
|
|
108
|
-
export interface GridPrintExportOptions extends GridExportOptions {
|
|
109
|
-
/**
|
|
110
|
-
* The value to be used as the print window title.
|
|
111
|
-
* @default The title of the page.
|
|
112
|
-
*/
|
|
113
|
-
fileName?: string;
|
|
114
|
-
/**
|
|
115
|
-
* If `true`, the toolbar is removed for when printing.
|
|
116
|
-
* @default false
|
|
117
|
-
*/
|
|
118
|
-
hideToolbar?: boolean;
|
|
119
|
-
/**
|
|
120
|
-
* If `true`, the footer is removed for when printing.
|
|
121
|
-
* @default false
|
|
122
|
-
*/
|
|
123
|
-
hideFooter?: boolean;
|
|
124
|
-
/**
|
|
125
|
-
* If `true`, the selection checkboxes will be included when printing.
|
|
126
|
-
* @default false
|
|
127
|
-
*/
|
|
128
|
-
includeCheckboxes?: boolean;
|
|
129
|
-
/**
|
|
130
|
-
* If `false`, all <style> and <link type="stylesheet" /> tags from the <head> will not be copied
|
|
131
|
-
* to the print window.
|
|
132
|
-
* @default true
|
|
133
|
-
*/
|
|
134
|
-
copyStyles?: boolean;
|
|
135
|
-
/**
|
|
136
|
-
* One or more classes passed to the print window.
|
|
137
|
-
*/
|
|
138
|
-
bodyClassName?: string;
|
|
139
|
-
/**
|
|
140
|
-
* Provide Print specific styles to the print window.
|
|
141
|
-
*/
|
|
142
|
-
pageStyle?: string | (() => string);
|
|
143
|
-
/**
|
|
144
|
-
* Function that returns the list of row ids to export in the order they should be exported.
|
|
145
|
-
* @param {GridPrintGetRowsToExportParams} params With all properties from [[GridPrintGetRowsToExportParams]].
|
|
146
|
-
* @returns {GridRowId[]} The list of row ids to export.
|
|
147
|
-
*/
|
|
148
|
-
getRowsToExport?: (params: GridPrintGetRowsToExportParams) => GridRowId[];
|
|
149
|
-
}
|
|
150
|
-
/**
|
|
151
|
-
* Available export formats.
|
|
152
|
-
*/
|
|
153
|
-
export type GridExportFormat = 'csv' | 'print';
|
|
154
|
-
/**
|
|
155
|
-
* Available export extensions.
|
|
156
|
-
*/
|
|
157
|
-
export type GridExportExtension = 'csv';
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export {};
|