@mui/x-data-grid 8.26.0 → 8.27.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 +100 -0
- package/DataGrid/DataGrid.d.ts +2 -2
- package/DataGrid/useDataGridComponent.d.ts +4 -4
- package/DataGrid/useDataGridProps.d.ts +2 -2
- package/colDef/gridActionsColDef.d.ts +1 -1
- package/colDef/gridBooleanColDef.d.ts +1 -1
- package/colDef/gridBooleanOperators.d.ts +1 -1
- package/colDef/gridCheckboxSelectionColDef.d.ts +1 -1
- package/colDef/gridDateColDef.d.ts +1 -1
- package/colDef/gridDateOperators.d.ts +2 -2
- package/colDef/gridDefaultColumnTypes.js +3 -1
- package/colDef/gridLongTextColDef.d.ts +2 -0
- package/colDef/gridLongTextColDef.js +17 -0
- package/colDef/gridNumericColDef.d.ts +1 -1
- package/colDef/gridNumericOperators.d.ts +1 -1
- package/colDef/gridSingleSelectColDef.d.ts +1 -1
- package/colDef/gridSingleSelectOperators.d.ts +1 -1
- package/colDef/gridStringColDef.d.ts +1 -1
- package/colDef/gridStringOperators.d.ts +1 -1
- package/colDef/index.d.ts +1 -0
- package/colDef/index.js +11 -0
- package/components/GridColumnHeaders.d.ts +1 -1
- package/components/GridColumnSortButton.d.ts +2 -2
- package/components/GridColumnUnsortedIcon.d.ts +2 -2
- package/components/GridFooter.d.ts +1 -1
- package/components/GridLoadingOverlay.d.ts +1 -1
- package/components/GridNoColumnsOverlay.d.ts +1 -1
- package/components/GridNoResultsOverlay.d.ts +1 -1
- package/components/GridNoRowsOverlay.d.ts +1 -1
- package/components/GridRow.d.ts +2 -2
- package/components/GridRowCount.d.ts +1 -1
- package/components/GridScrollArea.d.ts +2 -2
- package/components/GridSelectedRowCount.d.ts +1 -1
- package/components/GridSkeletonLoadingOverlay.d.ts +1 -1
- package/components/cell/GridActionsCell.d.ts +4 -4
- package/components/cell/GridActionsCellItem.d.ts +1 -1
- package/components/cell/GridCell.d.ts +3 -3
- package/components/cell/GridEditBooleanCell.d.ts +1 -1
- package/components/cell/GridEditDateCell.d.ts +2 -2
- package/components/cell/GridEditInputCell.d.ts +2 -2
- package/components/cell/GridEditLongTextCell.d.ts +41 -0
- package/components/cell/GridEditLongTextCell.js +248 -0
- package/components/cell/GridEditSingleSelectCell.d.ts +1 -1
- package/components/cell/GridFooterCell.d.ts +1 -1
- package/components/cell/GridLongTextCell.d.ts +43 -0
- package/components/cell/GridLongTextCell.js +254 -0
- package/components/cell/GridSkeletonCell.d.ts +1 -1
- package/components/cell/index.d.ts +3 -1
- package/components/cell/index.js +24 -0
- package/components/columnHeaders/ColumnHeaderMenuIcon.d.ts +1 -1
- package/components/columnHeaders/GridBaseColumnHeaders.d.ts +1 -1
- package/components/columnHeaders/GridColumnHeaderFilterIconButton.d.ts +1 -1
- package/components/columnHeaders/GridColumnHeaderItem.d.ts +3 -3
- package/components/columnHeaders/GridColumnHeaderSortIcon.d.ts +1 -1
- package/components/columnHeaders/GridGenericColumnHeaderItem.d.ts +4 -4
- package/components/columnsManagement/GridColumnsManagement.d.ts +1 -1
- package/components/columnsManagement/utils.d.ts +1 -1
- package/components/columnsPanel/ColumnsPanelTrigger.d.ts +1 -1
- package/components/containers/GridFooterContainer.d.ts +1 -1
- package/components/containers/GridOverlay.d.ts +1 -1
- package/components/containers/GridRoot.d.ts +2 -2
- package/components/containers/GridRootStyles.d.ts +1 -1
- package/components/containers/GridToolbarContainer.d.ts +1 -1
- package/components/export/ExportCsv.d.ts +2 -2
- package/components/export/ExportPrint.d.ts +2 -2
- package/components/filterPanel/FilterPanelTrigger.d.ts +1 -1
- package/components/menu/GridMenu.d.ts +1 -1
- package/components/menu/columnMenu/GridColumnHeaderMenu.d.ts +1 -1
- package/components/menu/columnMenu/GridColumnMenu.d.ts +1 -1
- package/components/menu/columnMenu/GridColumnMenuContainer.d.ts +1 -1
- package/components/menu/columnMenu/GridColumnMenuItemProps.d.ts +2 -2
- package/components/menu/columnMenu/GridColumnMenuProps.d.ts +3 -3
- package/components/menu/columnMenu/menuItems/GridColumnMenuColumnsItem.d.ts +1 -1
- package/components/menu/columnMenu/menuItems/GridColumnMenuFilterItem.d.ts +1 -1
- package/components/menu/columnMenu/menuItems/GridColumnMenuHideItem.d.ts +1 -1
- package/components/menu/columnMenu/menuItems/GridColumnMenuManageItem.d.ts +1 -1
- package/components/menu/columnMenu/menuItems/GridColumnMenuSortItem.d.ts +1 -1
- package/components/panel/GridColumnsPanel.d.ts +1 -1
- package/components/panel/GridPanel.d.ts +1 -1
- package/components/panel/GridPanelContent.d.ts +1 -1
- package/components/panel/GridPanelFooter.d.ts +1 -1
- package/components/panel/GridPanelHeader.d.ts +1 -1
- package/components/panel/GridPanelWrapper.d.ts +2 -2
- package/components/panel/filterPanel/GridFilterForm.d.ts +2 -2
- package/components/panel/filterPanel/GridFilterInputBoolean.d.ts +2 -2
- package/components/panel/filterPanel/GridFilterInputDate.d.ts +2 -2
- package/components/panel/filterPanel/GridFilterInputMultipleSingleSelect.d.ts +2 -2
- package/components/panel/filterPanel/GridFilterInputMultipleValue.d.ts +2 -2
- package/components/panel/filterPanel/GridFilterInputSingleSelect.d.ts +2 -2
- package/components/panel/filterPanel/GridFilterInputValue.d.ts +3 -3
- package/components/panel/filterPanel/GridFilterPanel.d.ts +4 -4
- package/components/quickFilter/QuickFilter.d.ts +2 -2
- package/components/quickFilter/QuickFilterClear.d.ts +2 -2
- package/components/quickFilter/QuickFilterControl.d.ts +2 -2
- package/components/quickFilter/QuickFilterTrigger.d.ts +2 -2
- package/components/toolbar/GridToolbar.d.ts +3 -3
- package/components/toolbar/GridToolbarExport.d.ts +1 -1
- package/components/toolbar/GridToolbarQuickFilter.d.ts +2 -2
- package/components/toolbarV8/GridToolbar.d.ts +1 -1
- package/components/toolbarV8/Toolbar.d.ts +1 -1
- package/components/toolbarV8/ToolbarButton.d.ts +1 -1
- package/components/virtualization/GridMainContainer.d.ts +1 -1
- package/components/virtualization/GridVirtualScrollerContent.d.ts +1 -1
- package/components/virtualization/GridVirtualScrollerRenderZone.d.ts +1 -1
- package/constants/defaultGridSlotsComponents.d.ts +1 -1
- package/constants/gridClasses.d.ts +44 -0
- package/constants/gridClasses.js +1 -1
- package/constants/localeTextConstants.d.ts +1 -1
- package/constants/localeTextConstants.js +3 -0
- package/context/GridContextProvider.d.ts +3 -3
- package/esm/DataGrid/DataGrid.d.ts +2 -2
- package/esm/DataGrid/useDataGridComponent.d.ts +4 -4
- package/esm/DataGrid/useDataGridProps.d.ts +2 -2
- package/esm/colDef/gridActionsColDef.d.ts +1 -1
- package/esm/colDef/gridBooleanColDef.d.ts +1 -1
- package/esm/colDef/gridBooleanOperators.d.ts +1 -1
- package/esm/colDef/gridCheckboxSelectionColDef.d.ts +1 -1
- package/esm/colDef/gridDateColDef.d.ts +1 -1
- package/esm/colDef/gridDateOperators.d.ts +2 -2
- package/esm/colDef/gridDefaultColumnTypes.js +3 -1
- package/esm/colDef/gridLongTextColDef.d.ts +2 -0
- package/esm/colDef/gridLongTextColDef.js +10 -0
- package/esm/colDef/gridNumericColDef.d.ts +1 -1
- package/esm/colDef/gridNumericOperators.d.ts +1 -1
- package/esm/colDef/gridSingleSelectColDef.d.ts +1 -1
- package/esm/colDef/gridSingleSelectOperators.d.ts +1 -1
- package/esm/colDef/gridStringColDef.d.ts +1 -1
- package/esm/colDef/gridStringOperators.d.ts +1 -1
- package/esm/colDef/index.d.ts +1 -0
- package/esm/colDef/index.js +1 -0
- package/esm/components/GridColumnHeaders.d.ts +1 -1
- package/esm/components/GridColumnSortButton.d.ts +2 -2
- package/esm/components/GridColumnUnsortedIcon.d.ts +2 -2
- package/esm/components/GridFooter.d.ts +1 -1
- package/esm/components/GridLoadingOverlay.d.ts +1 -1
- package/esm/components/GridNoColumnsOverlay.d.ts +1 -1
- package/esm/components/GridNoResultsOverlay.d.ts +1 -1
- package/esm/components/GridNoRowsOverlay.d.ts +1 -1
- package/esm/components/GridRow.d.ts +2 -2
- package/esm/components/GridRowCount.d.ts +1 -1
- package/esm/components/GridScrollArea.d.ts +2 -2
- package/esm/components/GridSelectedRowCount.d.ts +1 -1
- package/esm/components/GridSkeletonLoadingOverlay.d.ts +1 -1
- package/esm/components/cell/GridActionsCell.d.ts +4 -4
- package/esm/components/cell/GridActionsCellItem.d.ts +1 -1
- package/esm/components/cell/GridCell.d.ts +3 -3
- package/esm/components/cell/GridEditBooleanCell.d.ts +1 -1
- package/esm/components/cell/GridEditDateCell.d.ts +2 -2
- package/esm/components/cell/GridEditInputCell.d.ts +2 -2
- package/esm/components/cell/GridEditLongTextCell.d.ts +41 -0
- package/esm/components/cell/GridEditLongTextCell.js +240 -0
- package/esm/components/cell/GridEditSingleSelectCell.d.ts +1 -1
- package/esm/components/cell/GridFooterCell.d.ts +1 -1
- package/esm/components/cell/GridLongTextCell.d.ts +43 -0
- package/esm/components/cell/GridLongTextCell.js +246 -0
- package/esm/components/cell/GridSkeletonCell.d.ts +1 -1
- package/esm/components/cell/index.d.ts +3 -1
- package/esm/components/cell/index.js +3 -1
- package/esm/components/columnHeaders/ColumnHeaderMenuIcon.d.ts +1 -1
- package/esm/components/columnHeaders/GridBaseColumnHeaders.d.ts +1 -1
- package/esm/components/columnHeaders/GridColumnHeaderFilterIconButton.d.ts +1 -1
- package/esm/components/columnHeaders/GridColumnHeaderItem.d.ts +3 -3
- package/esm/components/columnHeaders/GridColumnHeaderSortIcon.d.ts +1 -1
- package/esm/components/columnHeaders/GridGenericColumnHeaderItem.d.ts +4 -4
- package/esm/components/columnsManagement/GridColumnsManagement.d.ts +1 -1
- package/esm/components/columnsManagement/utils.d.ts +1 -1
- package/esm/components/columnsPanel/ColumnsPanelTrigger.d.ts +1 -1
- package/esm/components/containers/GridFooterContainer.d.ts +1 -1
- package/esm/components/containers/GridOverlay.d.ts +1 -1
- package/esm/components/containers/GridRoot.d.ts +2 -2
- package/esm/components/containers/GridRootStyles.d.ts +1 -1
- package/esm/components/containers/GridToolbarContainer.d.ts +1 -1
- package/esm/components/export/ExportCsv.d.ts +2 -2
- package/esm/components/export/ExportPrint.d.ts +2 -2
- package/esm/components/filterPanel/FilterPanelTrigger.d.ts +1 -1
- package/esm/components/menu/GridMenu.d.ts +1 -1
- package/esm/components/menu/columnMenu/GridColumnHeaderMenu.d.ts +1 -1
- package/esm/components/menu/columnMenu/GridColumnMenu.d.ts +1 -1
- package/esm/components/menu/columnMenu/GridColumnMenuContainer.d.ts +1 -1
- package/esm/components/menu/columnMenu/GridColumnMenuItemProps.d.ts +2 -2
- package/esm/components/menu/columnMenu/GridColumnMenuProps.d.ts +3 -3
- package/esm/components/menu/columnMenu/menuItems/GridColumnMenuColumnsItem.d.ts +1 -1
- package/esm/components/menu/columnMenu/menuItems/GridColumnMenuFilterItem.d.ts +1 -1
- package/esm/components/menu/columnMenu/menuItems/GridColumnMenuHideItem.d.ts +1 -1
- package/esm/components/menu/columnMenu/menuItems/GridColumnMenuManageItem.d.ts +1 -1
- package/esm/components/menu/columnMenu/menuItems/GridColumnMenuSortItem.d.ts +1 -1
- package/esm/components/panel/GridColumnsPanel.d.ts +1 -1
- package/esm/components/panel/GridPanel.d.ts +1 -1
- package/esm/components/panel/GridPanelContent.d.ts +1 -1
- package/esm/components/panel/GridPanelFooter.d.ts +1 -1
- package/esm/components/panel/GridPanelHeader.d.ts +1 -1
- package/esm/components/panel/GridPanelWrapper.d.ts +2 -2
- package/esm/components/panel/filterPanel/GridFilterForm.d.ts +2 -2
- package/esm/components/panel/filterPanel/GridFilterInputBoolean.d.ts +2 -2
- package/esm/components/panel/filterPanel/GridFilterInputDate.d.ts +2 -2
- package/esm/components/panel/filterPanel/GridFilterInputMultipleSingleSelect.d.ts +2 -2
- package/esm/components/panel/filterPanel/GridFilterInputMultipleValue.d.ts +2 -2
- package/esm/components/panel/filterPanel/GridFilterInputSingleSelect.d.ts +2 -2
- package/esm/components/panel/filterPanel/GridFilterInputValue.d.ts +3 -3
- package/esm/components/panel/filterPanel/GridFilterPanel.d.ts +4 -4
- package/esm/components/quickFilter/QuickFilter.d.ts +2 -2
- package/esm/components/quickFilter/QuickFilterClear.d.ts +2 -2
- package/esm/components/quickFilter/QuickFilterControl.d.ts +2 -2
- package/esm/components/quickFilter/QuickFilterTrigger.d.ts +2 -2
- package/esm/components/toolbar/GridToolbar.d.ts +3 -3
- package/esm/components/toolbar/GridToolbarExport.d.ts +1 -1
- package/esm/components/toolbar/GridToolbarQuickFilter.d.ts +2 -2
- package/esm/components/toolbarV8/GridToolbar.d.ts +1 -1
- package/esm/components/toolbarV8/Toolbar.d.ts +1 -1
- package/esm/components/toolbarV8/ToolbarButton.d.ts +1 -1
- package/esm/components/virtualization/GridMainContainer.d.ts +1 -1
- package/esm/components/virtualization/GridVirtualScrollerContent.d.ts +1 -1
- package/esm/components/virtualization/GridVirtualScrollerRenderZone.d.ts +1 -1
- package/esm/constants/defaultGridSlotsComponents.d.ts +1 -1
- package/esm/constants/gridClasses.d.ts +44 -0
- package/esm/constants/gridClasses.js +1 -1
- package/esm/constants/localeTextConstants.d.ts +1 -1
- package/esm/constants/localeTextConstants.js +3 -0
- package/esm/context/GridContextProvider.d.ts +3 -3
- package/esm/hooks/core/gridCoreSelector.d.ts +1 -1
- package/esm/hooks/core/pipeProcessing/gridPipeProcessingApi.d.ts +10 -10
- package/esm/hooks/core/pipeProcessing/useGridPipeProcessing.d.ts +2 -2
- package/esm/hooks/core/pipeProcessing/useGridRegisterPipeApplier.d.ts +3 -3
- package/esm/hooks/core/pipeProcessing/useGridRegisterPipeProcessor.d.ts +3 -3
- package/esm/hooks/core/strategyProcessing/useGridRegisterStrategyProcessor.d.ts +3 -3
- package/esm/hooks/core/strategyProcessing/useGridStrategyProcessing.d.ts +3 -3
- package/esm/hooks/core/useGridApiInitialization.d.ts +2 -2
- package/esm/hooks/core/useGridInitialization.d.ts +2 -2
- package/esm/hooks/core/useGridIsRtl.d.ts +2 -2
- package/esm/hooks/core/useGridLocaleText.d.ts +3 -3
- package/esm/hooks/core/useGridLoggerFactory.d.ts +3 -3
- package/esm/hooks/core/useGridRefs.d.ts +1 -1
- package/esm/hooks/core/useGridStateInitialization.d.ts +1 -1
- package/esm/hooks/features/clipboard/useGridClipboard.d.ts +2 -2
- package/esm/hooks/features/columnGrouping/gridColumnGroupsInterfaces.d.ts +1 -1
- package/esm/hooks/features/columnGrouping/gridColumnGroupsSelector.d.ts +1 -1
- package/esm/hooks/features/columnGrouping/gridColumnGroupsUtils.d.ts +3 -3
- package/esm/hooks/features/columnGrouping/useGridColumnGrouping.d.ts +4 -4
- package/esm/hooks/features/columnHeaders/useGridColumnHeaders.d.ts +8 -8
- package/esm/hooks/features/columnMenu/columnMenuInterfaces.d.ts +1 -1
- package/esm/hooks/features/columnMenu/columnMenuSelector.d.ts +1 -1
- package/esm/hooks/features/columnMenu/useGridColumnMenu.d.ts +3 -3
- package/esm/hooks/features/columnMenu/useGridColumnMenuSlots.d.ts +2 -2
- package/esm/hooks/features/columnResize/columnResizeSelector.d.ts +1 -1
- package/esm/hooks/features/columnResize/useGridColumnResize.d.ts +2 -2
- package/esm/hooks/features/columns/gridColumnsSelector.d.ts +2 -2
- package/esm/hooks/features/columns/gridColumnsUtils.d.ts +7 -7
- package/esm/hooks/features/columns/useGridColumnSpanning.d.ts +2 -2
- package/esm/hooks/features/columns/useGridColumns.d.ts +4 -4
- package/esm/hooks/features/dataSource/useGridDataSource.d.ts +1 -1
- package/esm/hooks/features/dataSource/useGridDataSourceBase.d.ts +2 -2
- package/esm/hooks/features/density/densitySelector.d.ts +2 -2
- package/esm/hooks/features/density/densityState.d.ts +1 -1
- package/esm/hooks/features/density/useGridDensity.d.ts +4 -4
- package/esm/hooks/features/dimensions/gridDimensionsSelectors.d.ts +1 -1
- package/esm/hooks/features/dimensions/useGridDimensions.d.ts +5 -5
- package/esm/hooks/features/editing/gridEditingSelectors.d.ts +3 -3
- package/esm/hooks/features/editing/useGridCellEditable.d.ts +1 -1
- package/esm/hooks/features/editing/useGridCellEditing.d.ts +3 -3
- package/esm/hooks/features/editing/useGridEditing.d.ts +5 -5
- package/esm/hooks/features/editing/useGridRowEditing.d.ts +3 -3
- package/esm/hooks/features/editing/utils.d.ts +1 -1
- package/esm/hooks/features/events/useGridEvents.d.ts +3 -3
- package/esm/hooks/features/export/serializers/csvSerializer.d.ts +1 -1
- package/esm/hooks/features/export/useGridCsvExport.d.ts +2 -2
- package/esm/hooks/features/export/useGridPrintExport.d.ts +3 -3
- package/esm/hooks/features/export/utils.d.ts +5 -5
- package/esm/hooks/features/filter/gridFilterSelector.d.ts +3 -3
- package/esm/hooks/features/filter/gridFilterState.d.ts +4 -4
- package/esm/hooks/features/filter/gridFilterUtils.d.ts +4 -4
- package/esm/hooks/features/filter/useGridFilter.d.ts +4 -4
- package/esm/hooks/features/focus/gridFocusState.d.ts +1 -1
- package/esm/hooks/features/focus/gridFocusStateSelector.d.ts +2 -2
- package/esm/hooks/features/focus/useGridFocus.d.ts +4 -4
- package/esm/hooks/features/focus/useGridFocus.js +15 -1
- package/esm/hooks/features/headerFiltering/gridHeaderFilteringSelectors.d.ts +1 -1
- package/esm/hooks/features/headerFiltering/useGridHeaderFiltering.d.ts +4 -4
- package/esm/hooks/features/keyboardNavigation/useGridKeyboardNavigation.d.ts +3 -3
- package/esm/hooks/features/keyboardNavigation/useGridKeyboardNavigation.js +3 -0
- package/esm/hooks/features/keyboardNavigation/utils.d.ts +3 -3
- package/esm/hooks/features/listView/gridListViewSelectors.d.ts +1 -1
- package/esm/hooks/features/listView/useGridListView.d.ts +4 -4
- package/esm/hooks/features/overlays/gridOverlaysInterfaces.d.ts +1 -1
- package/esm/hooks/features/overlays/useGridOverlays.d.ts +3 -3
- package/esm/hooks/features/pagination/gridPaginationInterfaces.d.ts +2 -2
- package/esm/hooks/features/pagination/gridPaginationSelector.d.ts +2 -2
- package/esm/hooks/features/pagination/gridPaginationUtils.d.ts +1 -1
- package/esm/hooks/features/pagination/useGridPagination.d.ts +4 -4
- package/esm/hooks/features/pagination/useGridPaginationMeta.d.ts +3 -3
- package/esm/hooks/features/pagination/useGridPaginationModel.d.ts +5 -5
- package/esm/hooks/features/pagination/useGridRowCount.d.ts +3 -3
- package/esm/hooks/features/preferencesPanel/gridPreferencePanelSelector.d.ts +1 -1
- package/esm/hooks/features/preferencesPanel/gridPreferencePanelState.d.ts +1 -1
- package/esm/hooks/features/preferencesPanel/useGridPreferencesPanel.d.ts +4 -4
- package/esm/hooks/features/rowReorder/gridRowReorderSelector.d.ts +1 -1
- package/esm/hooks/features/rowSelection/gridRowSelectionSelector.d.ts +2 -2
- package/esm/hooks/features/rowSelection/useGridRowSelection.d.ts +4 -4
- package/esm/hooks/features/rowSelection/useGridRowSelectionPreProcessors.d.ts +3 -3
- package/esm/hooks/features/rowSelection/utils.d.ts +3 -3
- package/esm/hooks/features/rows/gridRowSpanningUtils.d.ts +1 -1
- package/esm/hooks/features/rows/gridRowsInterfaces.d.ts +1 -1
- package/esm/hooks/features/rows/gridRowsMetaInterfaces.d.ts +1 -1
- package/esm/hooks/features/rows/gridRowsMetaSelector.d.ts +1 -1
- package/esm/hooks/features/rows/gridRowsMetaState.d.ts +1 -1
- package/esm/hooks/features/rows/gridRowsSelector.d.ts +2 -2
- package/esm/hooks/features/rows/gridRowsUtils.d.ts +5 -5
- package/esm/hooks/features/rows/useGridParamsApi.d.ts +3 -3
- package/esm/hooks/features/rows/useGridParamsOverridableMethods.d.ts +2 -2
- package/esm/hooks/features/rows/useGridRowAriaAttributes.d.ts +1 -1
- package/esm/hooks/features/rows/useGridRowSpanning.d.ts +2 -2
- package/esm/hooks/features/rows/useGridRows.d.ts +4 -4
- package/esm/hooks/features/rows/useGridRowsMeta.d.ts +4 -4
- package/esm/hooks/features/rows/useGridRowsOverridableMethods.d.ts +3 -3
- package/esm/hooks/features/rows/useGridRowsPreProcessors.d.ts +2 -2
- package/esm/hooks/features/scroll/useGridScroll.d.ts +3 -3
- package/esm/hooks/features/sorting/gridSortingSelector.d.ts +2 -2
- package/esm/hooks/features/sorting/gridSortingState.d.ts +2 -2
- package/esm/hooks/features/sorting/gridSortingUtils.d.ts +5 -5
- package/esm/hooks/features/sorting/useGridSorting.d.ts +4 -4
- package/esm/hooks/features/statePersistence/gridStatePersistenceInterface.d.ts +1 -1
- package/esm/hooks/features/statePersistence/useGridStatePersistence.d.ts +2 -2
- package/esm/hooks/features/virtualization/gridVirtualizationSelectors.d.ts +1 -1
- package/esm/hooks/features/virtualization/useGridVirtualization.d.ts +5 -5
- package/esm/hooks/utils/useGridApiContext.d.ts +3 -3
- package/esm/hooks/utils/useGridApiMethod.d.ts +2 -2
- package/esm/hooks/utils/useGridApiRef.d.ts +2 -2
- package/esm/hooks/utils/useGridAriaAttributes.d.ts +1 -1
- package/esm/hooks/utils/useGridConfiguration.d.ts +1 -1
- package/esm/hooks/utils/useGridEvent.d.ts +3 -3
- package/esm/hooks/utils/useGridInitializeState.d.ts +4 -4
- package/esm/hooks/utils/useGridLogger.d.ts +3 -3
- package/esm/hooks/utils/useGridNativeEventListener.d.ts +2 -2
- package/esm/hooks/utils/useGridPrivateApiContext.d.ts +3 -3
- package/esm/hooks/utils/useGridSelector.d.ts +1 -1
- package/esm/hooks/utils/useGridVisibleRows.d.ts +2 -2
- package/esm/index.d.ts +2 -2
- package/esm/index.js +1 -1
- package/esm/internals/utils/attachPinnedStyle.d.ts +1 -1
- package/esm/internals/utils/cache.d.ts +1 -1
- package/esm/internals/utils/getPinnedCellOffset.d.ts +1 -1
- package/esm/internals/utils/propValidation.d.ts +1 -1
- package/esm/locales/arSD.d.ts +1 -1
- package/esm/locales/arSD.js +3 -0
- package/esm/locales/beBY.d.ts +1 -1
- package/esm/locales/beBY.js +3 -0
- package/esm/locales/bgBG.d.ts +1 -1
- package/esm/locales/bgBG.js +3 -0
- package/esm/locales/bnBD.d.ts +1 -1
- package/esm/locales/bnBD.js +3 -0
- package/esm/locales/caES.d.ts +1 -1
- package/esm/locales/caES.js +3 -0
- package/esm/locales/csCZ.d.ts +1 -1
- package/esm/locales/csCZ.js +3 -0
- package/esm/locales/daDK.d.ts +1 -1
- package/esm/locales/daDK.js +3 -0
- package/esm/locales/deDE.d.ts +1 -1
- package/esm/locales/deDE.js +3 -0
- package/esm/locales/elGR.d.ts +1 -1
- package/esm/locales/elGR.js +3 -0
- package/esm/locales/enUS.d.ts +1 -1
- package/esm/locales/esES.d.ts +1 -1
- package/esm/locales/esES.js +3 -0
- package/esm/locales/faIR.d.ts +1 -1
- package/esm/locales/faIR.js +3 -0
- package/esm/locales/fiFI.d.ts +1 -1
- package/esm/locales/fiFI.js +3 -0
- package/esm/locales/frFR.d.ts +1 -1
- package/esm/locales/frFR.js +3 -0
- package/esm/locales/heIL.d.ts +1 -1
- package/esm/locales/heIL.js +3 -0
- package/esm/locales/hrHR.js +3 -0
- package/esm/locales/huHU.d.ts +1 -1
- package/esm/locales/huHU.js +3 -0
- package/esm/locales/hyAM.d.ts +1 -1
- package/esm/locales/hyAM.js +3 -0
- package/esm/locales/idID.d.ts +2 -2
- package/esm/locales/idID.js +3 -0
- package/esm/locales/isIS.d.ts +1 -1
- package/esm/locales/isIS.js +3 -0
- package/esm/locales/itIT.d.ts +1 -1
- package/esm/locales/itIT.js +3 -0
- package/esm/locales/jaJP.d.ts +1 -1
- package/esm/locales/jaJP.js +3 -0
- package/esm/locales/koKR.d.ts +1 -1
- package/esm/locales/koKR.js +3 -0
- package/esm/locales/nbNO.d.ts +1 -1
- package/esm/locales/nbNO.js +3 -0
- package/esm/locales/nlNL.d.ts +1 -1
- package/esm/locales/nlNL.js +3 -0
- package/esm/locales/nnNO.d.ts +1 -1
- package/esm/locales/nnNO.js +3 -0
- package/esm/locales/plPL.d.ts +1 -1
- package/esm/locales/plPL.js +3 -0
- package/esm/locales/ptBR.d.ts +1 -1
- package/esm/locales/ptBR.js +3 -0
- package/esm/locales/ptPT.d.ts +1 -1
- package/esm/locales/ptPT.js +3 -0
- package/esm/locales/roRO.d.ts +1 -1
- package/esm/locales/roRO.js +3 -0
- package/esm/locales/ruRU.d.ts +1 -1
- package/esm/locales/ruRU.js +3 -0
- package/esm/locales/skSK.d.ts +1 -1
- package/esm/locales/skSK.js +3 -0
- package/esm/locales/svSE.d.ts +1 -1
- package/esm/locales/svSE.js +3 -0
- package/esm/locales/trTR.d.ts +1 -1
- package/esm/locales/trTR.js +3 -0
- package/esm/locales/ukUA.d.ts +1 -1
- package/esm/locales/ukUA.js +3 -0
- package/esm/locales/urPK.d.ts +1 -1
- package/esm/locales/urPK.js +3 -0
- package/esm/locales/viVN.d.ts +1 -1
- package/esm/locales/viVN.js +3 -0
- package/esm/locales/zhCN.d.ts +1 -1
- package/esm/locales/zhCN.js +3 -0
- package/esm/locales/zhHK.js +3 -0
- package/esm/locales/zhTW.d.ts +1 -1
- package/esm/locales/zhTW.js +3 -0
- package/esm/material/augmentation.d.ts +4 -0
- package/esm/material/icons/createSvgIcon.d.ts +1 -1
- package/esm/material/icons/index.d.ts +3 -1
- package/esm/material/icons/index.js +7 -1
- package/esm/material/index.js +25 -10
- package/esm/models/api/gridColumnApi.d.ts +1 -1
- package/esm/models/api/gridColumnGroupingApi.d.ts +2 -2
- package/esm/models/api/gridColumnSpanning.d.ts +3 -3
- package/esm/models/api/gridCoreApi.d.ts +2 -2
- package/esm/models/api/gridCsvExportApi.d.ts +1 -1
- package/esm/models/api/gridDensityApi.d.ts +2 -2
- package/esm/models/api/gridEditingApi.d.ts +6 -6
- package/esm/models/api/gridFilterApi.d.ts +4 -4
- package/esm/models/api/gridFocusApi.d.ts +3 -3
- package/esm/models/api/gridHeaderFilteringApi.d.ts +2 -2
- package/esm/models/api/gridLocaleTextApi.d.ts +3 -1
- package/esm/models/api/gridLoggerApi.d.ts +1 -1
- package/esm/models/api/gridParamsApi.d.ts +7 -7
- package/esm/models/api/gridPreferencesPanelApi.d.ts +1 -1
- package/esm/models/api/gridPrintExportApi.d.ts +1 -1
- package/esm/models/api/gridRowApi.d.ts +1 -1
- package/esm/models/api/gridRowSelectionApi.d.ts +1 -1
- package/esm/models/api/gridRowsMetaApi.d.ts +2 -2
- package/esm/models/api/gridScrollApi.d.ts +2 -2
- package/esm/models/api/gridSortApi.d.ts +3 -3
- package/esm/models/api/gridStateApi.d.ts +3 -3
- package/esm/models/colDef/gridColDef.d.ts +13 -13
- package/esm/models/colDef/gridColType.d.ts +1 -0
- package/esm/models/colDef/gridColumnTypesRecord.d.ts +2 -2
- package/esm/models/configuration/gridAggregationConfiguration.d.ts +2 -2
- package/esm/models/configuration/gridCellEditableConfiguration.d.ts +4 -4
- package/esm/models/configuration/gridConfiguration.d.ts +1 -1
- package/esm/models/configuration/gridParamsConfiguration.d.ts +2 -2
- package/esm/models/configuration/gridRowConfiguration.d.ts +4 -4
- package/esm/models/controlStateItem.d.ts +1 -1
- package/esm/models/events/gridEventLookup.d.ts +7 -7
- package/esm/models/gridBaseSlots.d.ts +13 -0
- package/esm/models/gridCell.d.ts +1 -1
- package/esm/models/gridCellClass.d.ts +2 -2
- package/esm/models/gridColumnGrouping.d.ts +1 -1
- package/esm/models/gridColumnHeaderClass.d.ts +1 -1
- package/esm/models/gridExport.d.ts +2 -2
- package/esm/models/gridFilterInputComponent.d.ts +3 -3
- package/esm/models/gridFilterItem.d.ts +1 -1
- package/esm/models/gridFilterModel.d.ts +1 -1
- package/esm/models/gridFilterOperator.d.ts +3 -3
- package/esm/models/gridHeaderFilteringModel.d.ts +1 -1
- package/esm/models/gridIconSlotsComponent.d.ts +12 -2
- package/esm/models/gridRowSelectionModel.d.ts +1 -1
- package/esm/models/gridSlotsComponent.d.ts +6 -1
- package/esm/models/gridSlotsComponentsProps.d.ts +4 -2
- package/esm/models/gridSortModel.d.ts +1 -1
- package/esm/models/gridStateCommunity.d.ts +1 -1
- package/esm/models/params/gridCellParams.d.ts +4 -4
- package/esm/models/params/gridColumnGroupHeaderParams.d.ts +1 -1
- package/esm/models/params/gridColumnHeaderParams.d.ts +1 -1
- package/esm/models/params/gridEditCellParams.d.ts +2 -2
- package/esm/models/params/gridPreferencePanelParams.d.ts +1 -1
- package/esm/models/params/gridRowParams.d.ts +1 -1
- package/esm/models/params/gridRowSelectionCheckboxParams.d.ts +1 -1
- package/esm/models/params/gridValueOptionsParams.d.ts +1 -1
- package/esm/models/props/DataGridProps.d.ts +25 -26
- package/esm/themeAugmentation/overrides.d.ts +1 -1
- package/esm/themeAugmentation/props.d.ts +2 -2
- package/esm/utils/assert.d.ts +1 -1
- package/esm/utils/cleanupTracking/FinalizationRegistryBasedCleanupTracking.d.ts +1 -1
- package/esm/utils/cleanupTracking/TimerBasedCleanupTracking.d.ts +1 -1
- package/esm/utils/createSelector.d.ts +2 -2
- package/esm/utils/exportAs.d.ts +1 -1
- package/esm/utils/getPublicApiRef.d.ts +1 -1
- package/esm/utils/keyboardUtils.d.ts +1 -1
- package/hooks/core/gridCoreSelector.d.ts +1 -1
- package/hooks/core/pipeProcessing/gridPipeProcessingApi.d.ts +10 -10
- package/hooks/core/pipeProcessing/useGridPipeProcessing.d.ts +2 -2
- package/hooks/core/pipeProcessing/useGridRegisterPipeApplier.d.ts +3 -3
- package/hooks/core/pipeProcessing/useGridRegisterPipeProcessor.d.ts +3 -3
- package/hooks/core/strategyProcessing/useGridRegisterStrategyProcessor.d.ts +3 -3
- package/hooks/core/strategyProcessing/useGridStrategyProcessing.d.ts +3 -3
- package/hooks/core/useGridApiInitialization.d.ts +2 -2
- package/hooks/core/useGridInitialization.d.ts +2 -2
- package/hooks/core/useGridIsRtl.d.ts +2 -2
- package/hooks/core/useGridLocaleText.d.ts +3 -3
- package/hooks/core/useGridLoggerFactory.d.ts +3 -3
- package/hooks/core/useGridRefs.d.ts +1 -1
- package/hooks/core/useGridStateInitialization.d.ts +1 -1
- package/hooks/features/clipboard/useGridClipboard.d.ts +2 -2
- package/hooks/features/columnGrouping/gridColumnGroupsInterfaces.d.ts +1 -1
- package/hooks/features/columnGrouping/gridColumnGroupsSelector.d.ts +1 -1
- package/hooks/features/columnGrouping/gridColumnGroupsUtils.d.ts +3 -3
- package/hooks/features/columnGrouping/useGridColumnGrouping.d.ts +4 -4
- package/hooks/features/columnHeaders/useGridColumnHeaders.d.ts +8 -8
- package/hooks/features/columnMenu/columnMenuInterfaces.d.ts +1 -1
- package/hooks/features/columnMenu/columnMenuSelector.d.ts +1 -1
- package/hooks/features/columnMenu/useGridColumnMenu.d.ts +3 -3
- package/hooks/features/columnMenu/useGridColumnMenuSlots.d.ts +2 -2
- package/hooks/features/columnResize/columnResizeSelector.d.ts +1 -1
- package/hooks/features/columnResize/useGridColumnResize.d.ts +2 -2
- package/hooks/features/columns/gridColumnsSelector.d.ts +2 -2
- package/hooks/features/columns/gridColumnsUtils.d.ts +7 -7
- package/hooks/features/columns/useGridColumnSpanning.d.ts +2 -2
- package/hooks/features/columns/useGridColumns.d.ts +4 -4
- package/hooks/features/dataSource/useGridDataSource.d.ts +1 -1
- package/hooks/features/dataSource/useGridDataSourceBase.d.ts +2 -2
- package/hooks/features/density/densitySelector.d.ts +2 -2
- package/hooks/features/density/densityState.d.ts +1 -1
- package/hooks/features/density/useGridDensity.d.ts +4 -4
- package/hooks/features/dimensions/gridDimensionsSelectors.d.ts +1 -1
- package/hooks/features/dimensions/useGridDimensions.d.ts +5 -5
- package/hooks/features/editing/gridEditingSelectors.d.ts +3 -3
- package/hooks/features/editing/useGridCellEditable.d.ts +1 -1
- package/hooks/features/editing/useGridCellEditing.d.ts +3 -3
- package/hooks/features/editing/useGridEditing.d.ts +5 -5
- package/hooks/features/editing/useGridRowEditing.d.ts +3 -3
- package/hooks/features/editing/utils.d.ts +1 -1
- package/hooks/features/events/useGridEvents.d.ts +3 -3
- package/hooks/features/export/serializers/csvSerializer.d.ts +1 -1
- package/hooks/features/export/useGridCsvExport.d.ts +2 -2
- package/hooks/features/export/useGridPrintExport.d.ts +3 -3
- package/hooks/features/export/utils.d.ts +5 -5
- package/hooks/features/filter/gridFilterSelector.d.ts +3 -3
- package/hooks/features/filter/gridFilterState.d.ts +4 -4
- package/hooks/features/filter/gridFilterUtils.d.ts +4 -4
- package/hooks/features/filter/useGridFilter.d.ts +4 -4
- package/hooks/features/focus/gridFocusState.d.ts +1 -1
- package/hooks/features/focus/gridFocusStateSelector.d.ts +2 -2
- package/hooks/features/focus/useGridFocus.d.ts +4 -4
- package/hooks/features/focus/useGridFocus.js +15 -1
- package/hooks/features/headerFiltering/gridHeaderFilteringSelectors.d.ts +1 -1
- package/hooks/features/headerFiltering/useGridHeaderFiltering.d.ts +4 -4
- package/hooks/features/keyboardNavigation/useGridKeyboardNavigation.d.ts +3 -3
- package/hooks/features/keyboardNavigation/useGridKeyboardNavigation.js +3 -0
- package/hooks/features/keyboardNavigation/utils.d.ts +3 -3
- package/hooks/features/listView/gridListViewSelectors.d.ts +1 -1
- package/hooks/features/listView/useGridListView.d.ts +4 -4
- package/hooks/features/overlays/gridOverlaysInterfaces.d.ts +1 -1
- package/hooks/features/overlays/useGridOverlays.d.ts +3 -3
- package/hooks/features/pagination/gridPaginationInterfaces.d.ts +2 -2
- package/hooks/features/pagination/gridPaginationSelector.d.ts +2 -2
- package/hooks/features/pagination/gridPaginationUtils.d.ts +1 -1
- package/hooks/features/pagination/useGridPagination.d.ts +4 -4
- package/hooks/features/pagination/useGridPaginationMeta.d.ts +3 -3
- package/hooks/features/pagination/useGridPaginationModel.d.ts +5 -5
- package/hooks/features/pagination/useGridRowCount.d.ts +3 -3
- package/hooks/features/preferencesPanel/gridPreferencePanelSelector.d.ts +1 -1
- package/hooks/features/preferencesPanel/gridPreferencePanelState.d.ts +1 -1
- package/hooks/features/preferencesPanel/useGridPreferencesPanel.d.ts +4 -4
- package/hooks/features/rowReorder/gridRowReorderSelector.d.ts +1 -1
- package/hooks/features/rowSelection/gridRowSelectionSelector.d.ts +2 -2
- package/hooks/features/rowSelection/useGridRowSelection.d.ts +4 -4
- package/hooks/features/rowSelection/useGridRowSelectionPreProcessors.d.ts +3 -3
- package/hooks/features/rowSelection/utils.d.ts +3 -3
- package/hooks/features/rows/gridRowSpanningUtils.d.ts +1 -1
- package/hooks/features/rows/gridRowsInterfaces.d.ts +1 -1
- package/hooks/features/rows/gridRowsMetaInterfaces.d.ts +1 -1
- package/hooks/features/rows/gridRowsMetaSelector.d.ts +1 -1
- package/hooks/features/rows/gridRowsMetaState.d.ts +1 -1
- package/hooks/features/rows/gridRowsSelector.d.ts +2 -2
- package/hooks/features/rows/gridRowsUtils.d.ts +5 -5
- package/hooks/features/rows/useGridParamsApi.d.ts +3 -3
- package/hooks/features/rows/useGridParamsOverridableMethods.d.ts +2 -2
- package/hooks/features/rows/useGridRowAriaAttributes.d.ts +1 -1
- package/hooks/features/rows/useGridRowSpanning.d.ts +2 -2
- package/hooks/features/rows/useGridRows.d.ts +4 -4
- package/hooks/features/rows/useGridRowsMeta.d.ts +4 -4
- package/hooks/features/rows/useGridRowsOverridableMethods.d.ts +3 -3
- package/hooks/features/rows/useGridRowsPreProcessors.d.ts +2 -2
- package/hooks/features/scroll/useGridScroll.d.ts +3 -3
- package/hooks/features/sorting/gridSortingSelector.d.ts +2 -2
- package/hooks/features/sorting/gridSortingState.d.ts +2 -2
- package/hooks/features/sorting/gridSortingUtils.d.ts +5 -5
- package/hooks/features/sorting/useGridSorting.d.ts +4 -4
- package/hooks/features/statePersistence/gridStatePersistenceInterface.d.ts +1 -1
- package/hooks/features/statePersistence/useGridStatePersistence.d.ts +2 -2
- package/hooks/features/virtualization/gridVirtualizationSelectors.d.ts +1 -1
- package/hooks/features/virtualization/useGridVirtualization.d.ts +5 -5
- package/hooks/utils/useGridApiContext.d.ts +3 -3
- package/hooks/utils/useGridApiMethod.d.ts +2 -2
- package/hooks/utils/useGridApiRef.d.ts +2 -2
- package/hooks/utils/useGridAriaAttributes.d.ts +1 -1
- package/hooks/utils/useGridConfiguration.d.ts +1 -1
- package/hooks/utils/useGridEvent.d.ts +3 -3
- package/hooks/utils/useGridInitializeState.d.ts +4 -4
- package/hooks/utils/useGridLogger.d.ts +3 -3
- package/hooks/utils/useGridNativeEventListener.d.ts +2 -2
- package/hooks/utils/useGridPrivateApiContext.d.ts +3 -3
- package/hooks/utils/useGridSelector.d.ts +1 -1
- package/hooks/utils/useGridVisibleRows.d.ts +2 -2
- package/index.d.ts +2 -2
- package/index.js +1 -1
- package/internals/utils/attachPinnedStyle.d.ts +1 -1
- package/internals/utils/cache.d.ts +1 -1
- package/internals/utils/getPinnedCellOffset.d.ts +1 -1
- package/internals/utils/propValidation.d.ts +1 -1
- package/locales/arSD.d.ts +1 -1
- package/locales/arSD.js +3 -0
- package/locales/beBY.d.ts +1 -1
- package/locales/beBY.js +3 -0
- package/locales/bgBG.d.ts +1 -1
- package/locales/bgBG.js +3 -0
- package/locales/bnBD.d.ts +1 -1
- package/locales/bnBD.js +3 -0
- package/locales/caES.d.ts +1 -1
- package/locales/caES.js +3 -0
- package/locales/csCZ.d.ts +1 -1
- package/locales/csCZ.js +3 -0
- package/locales/daDK.d.ts +1 -1
- package/locales/daDK.js +3 -0
- package/locales/deDE.d.ts +1 -1
- package/locales/deDE.js +3 -0
- package/locales/elGR.d.ts +1 -1
- package/locales/elGR.js +3 -0
- package/locales/enUS.d.ts +1 -1
- package/locales/esES.d.ts +1 -1
- package/locales/esES.js +3 -0
- package/locales/faIR.d.ts +1 -1
- package/locales/faIR.js +3 -0
- package/locales/fiFI.d.ts +1 -1
- package/locales/fiFI.js +3 -0
- package/locales/frFR.d.ts +1 -1
- package/locales/frFR.js +3 -0
- package/locales/heIL.d.ts +1 -1
- package/locales/heIL.js +3 -0
- package/locales/hrHR.js +3 -0
- package/locales/huHU.d.ts +1 -1
- package/locales/huHU.js +3 -0
- package/locales/hyAM.d.ts +1 -1
- package/locales/hyAM.js +3 -0
- package/locales/idID.d.ts +2 -2
- package/locales/idID.js +3 -0
- package/locales/isIS.d.ts +1 -1
- package/locales/isIS.js +3 -0
- package/locales/itIT.d.ts +1 -1
- package/locales/itIT.js +3 -0
- package/locales/jaJP.d.ts +1 -1
- package/locales/jaJP.js +3 -0
- package/locales/koKR.d.ts +1 -1
- package/locales/koKR.js +3 -0
- package/locales/nbNO.d.ts +1 -1
- package/locales/nbNO.js +3 -0
- package/locales/nlNL.d.ts +1 -1
- package/locales/nlNL.js +3 -0
- package/locales/nnNO.d.ts +1 -1
- package/locales/nnNO.js +3 -0
- package/locales/plPL.d.ts +1 -1
- package/locales/plPL.js +3 -0
- package/locales/ptBR.d.ts +1 -1
- package/locales/ptBR.js +3 -0
- package/locales/ptPT.d.ts +1 -1
- package/locales/ptPT.js +3 -0
- package/locales/roRO.d.ts +1 -1
- package/locales/roRO.js +3 -0
- package/locales/ruRU.d.ts +1 -1
- package/locales/ruRU.js +3 -0
- package/locales/skSK.d.ts +1 -1
- package/locales/skSK.js +3 -0
- package/locales/svSE.d.ts +1 -1
- package/locales/svSE.js +3 -0
- package/locales/trTR.d.ts +1 -1
- package/locales/trTR.js +3 -0
- package/locales/ukUA.d.ts +1 -1
- package/locales/ukUA.js +3 -0
- package/locales/urPK.d.ts +1 -1
- package/locales/urPK.js +3 -0
- package/locales/viVN.d.ts +1 -1
- package/locales/viVN.js +3 -0
- package/locales/zhCN.d.ts +1 -1
- package/locales/zhCN.js +3 -0
- package/locales/zhHK.js +3 -0
- package/locales/zhTW.d.ts +1 -1
- package/locales/zhTW.js +3 -0
- package/material/augmentation.d.ts +4 -0
- package/material/icons/createSvgIcon.d.ts +1 -1
- package/material/icons/index.d.ts +3 -1
- package/material/icons/index.js +8 -2
- package/material/index.js +24 -9
- package/models/api/gridColumnApi.d.ts +1 -1
- package/models/api/gridColumnGroupingApi.d.ts +2 -2
- package/models/api/gridColumnSpanning.d.ts +3 -3
- package/models/api/gridCoreApi.d.ts +2 -2
- package/models/api/gridCsvExportApi.d.ts +1 -1
- package/models/api/gridDensityApi.d.ts +2 -2
- package/models/api/gridEditingApi.d.ts +6 -6
- package/models/api/gridFilterApi.d.ts +4 -4
- package/models/api/gridFocusApi.d.ts +3 -3
- package/models/api/gridHeaderFilteringApi.d.ts +2 -2
- package/models/api/gridLocaleTextApi.d.ts +3 -1
- package/models/api/gridLoggerApi.d.ts +1 -1
- package/models/api/gridParamsApi.d.ts +7 -7
- package/models/api/gridPreferencesPanelApi.d.ts +1 -1
- package/models/api/gridPrintExportApi.d.ts +1 -1
- package/models/api/gridRowApi.d.ts +1 -1
- package/models/api/gridRowSelectionApi.d.ts +1 -1
- package/models/api/gridRowsMetaApi.d.ts +2 -2
- package/models/api/gridScrollApi.d.ts +2 -2
- package/models/api/gridSortApi.d.ts +3 -3
- package/models/api/gridStateApi.d.ts +3 -3
- package/models/colDef/gridColDef.d.ts +13 -13
- package/models/colDef/gridColType.d.ts +1 -0
- package/models/colDef/gridColumnTypesRecord.d.ts +2 -2
- package/models/configuration/gridAggregationConfiguration.d.ts +2 -2
- package/models/configuration/gridCellEditableConfiguration.d.ts +4 -4
- package/models/configuration/gridConfiguration.d.ts +1 -1
- package/models/configuration/gridParamsConfiguration.d.ts +2 -2
- package/models/configuration/gridRowConfiguration.d.ts +4 -4
- package/models/controlStateItem.d.ts +1 -1
- package/models/events/gridEventLookup.d.ts +7 -7
- package/models/gridBaseSlots.d.ts +13 -0
- package/models/gridCell.d.ts +1 -1
- package/models/gridCellClass.d.ts +2 -2
- package/models/gridColumnGrouping.d.ts +1 -1
- package/models/gridColumnHeaderClass.d.ts +1 -1
- package/models/gridExport.d.ts +2 -2
- package/models/gridFilterInputComponent.d.ts +3 -3
- package/models/gridFilterItem.d.ts +1 -1
- package/models/gridFilterModel.d.ts +1 -1
- package/models/gridFilterOperator.d.ts +3 -3
- package/models/gridHeaderFilteringModel.d.ts +1 -1
- package/models/gridIconSlotsComponent.d.ts +12 -2
- package/models/gridRowSelectionModel.d.ts +1 -1
- package/models/gridSlotsComponent.d.ts +6 -1
- package/models/gridSlotsComponentsProps.d.ts +4 -2
- package/models/gridSortModel.d.ts +1 -1
- package/models/gridStateCommunity.d.ts +1 -1
- package/models/params/gridCellParams.d.ts +4 -4
- package/models/params/gridColumnGroupHeaderParams.d.ts +1 -1
- package/models/params/gridColumnHeaderParams.d.ts +1 -1
- package/models/params/gridEditCellParams.d.ts +2 -2
- package/models/params/gridPreferencePanelParams.d.ts +1 -1
- package/models/params/gridRowParams.d.ts +1 -1
- package/models/params/gridRowSelectionCheckboxParams.d.ts +1 -1
- package/models/params/gridValueOptionsParams.d.ts +1 -1
- package/models/props/DataGridProps.d.ts +25 -26
- package/package.json +3 -3
- package/themeAugmentation/overrides.d.ts +1 -1
- package/themeAugmentation/props.d.ts +2 -2
- package/utils/assert.d.ts +1 -1
- package/utils/cleanupTracking/FinalizationRegistryBasedCleanupTracking.d.ts +1 -1
- package/utils/cleanupTracking/TimerBasedCleanupTracking.d.ts +1 -1
- package/utils/createSelector.d.ts +2 -2
- package/utils/exportAs.d.ts +1 -1
- package/utils/getPublicApiRef.d.ts +1 -1
- package/utils/keyboardUtils.d.ts +1 -1
package/esm/locales/hrHR.js
CHANGED
|
@@ -165,6 +165,9 @@ const hrHRGrid = {
|
|
|
165
165
|
// Boolean cell text
|
|
166
166
|
booleanCellTrueLabel: 'Da',
|
|
167
167
|
booleanCellFalseLabel: 'Ne',
|
|
168
|
+
// Long text cell
|
|
169
|
+
longTextCellExpandLabel: 'Proširiti',
|
|
170
|
+
longTextCellCollapseLabel: 'Skupiti',
|
|
168
171
|
// Actions cell more text
|
|
169
172
|
actionsCellMore: 'više',
|
|
170
173
|
// Column pinning text
|
package/esm/locales/huHU.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import { Localization } from "../utils/getGridLocalization.js";
|
|
1
|
+
import { type Localization } from "../utils/getGridLocalization.js";
|
|
2
2
|
export declare const huHU: Localization;
|
package/esm/locales/huHU.js
CHANGED
|
@@ -142,6 +142,9 @@ const huHUGrid = {
|
|
|
142
142
|
// Boolean cell text
|
|
143
143
|
booleanCellTrueLabel: 'igen',
|
|
144
144
|
booleanCellFalseLabel: 'nem',
|
|
145
|
+
// Long text cell
|
|
146
|
+
longTextCellExpandLabel: 'Kibontás',
|
|
147
|
+
longTextCellCollapseLabel: 'Összecsukás',
|
|
145
148
|
// Actions cell more text
|
|
146
149
|
actionsCellMore: 'további',
|
|
147
150
|
// Column pinning text
|
package/esm/locales/hyAM.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import { Localization } from "../utils/getGridLocalization.js";
|
|
1
|
+
import { type Localization } from "../utils/getGridLocalization.js";
|
|
2
2
|
export declare const hyAM: Localization;
|
package/esm/locales/hyAM.js
CHANGED
|
@@ -167,6 +167,9 @@ const hyAMGrid = {
|
|
|
167
167
|
// Boolean cell text
|
|
168
168
|
booleanCellTrueLabel: 'այո',
|
|
169
169
|
booleanCellFalseLabel: 'ոչ',
|
|
170
|
+
// Long text cell
|
|
171
|
+
longTextCellExpandLabel: 'Բացել',
|
|
172
|
+
longTextCellCollapseLabel: 'Փակել',
|
|
170
173
|
// Actions cell more text
|
|
171
174
|
actionsCellMore: 'ավելին',
|
|
172
175
|
// Column pinning text
|
package/esm/locales/idID.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { GridLocaleText } from "../models/api/gridLocaleTextApi.js";
|
|
2
|
-
import { Localization } from "../utils/getGridLocalization.js";
|
|
1
|
+
import type { GridLocaleText } from "../models/api/gridLocaleTextApi.js";
|
|
2
|
+
import { type Localization } from "../utils/getGridLocalization.js";
|
|
3
3
|
export declare const idIDGrid: Partial<GridLocaleText>;
|
|
4
4
|
export declare const idID: Localization;
|
package/esm/locales/idID.js
CHANGED
|
@@ -139,6 +139,9 @@ export const idIDGrid = {
|
|
|
139
139
|
// Boolean cell text
|
|
140
140
|
booleanCellTrueLabel: 'ya',
|
|
141
141
|
booleanCellFalseLabel: 'tidak',
|
|
142
|
+
// Long text cell
|
|
143
|
+
longTextCellExpandLabel: 'Perluas',
|
|
144
|
+
longTextCellCollapseLabel: 'Ciutkan',
|
|
142
145
|
// Actions cell more text
|
|
143
146
|
actionsCellMore: 'lainnya',
|
|
144
147
|
// Column pinning text
|
package/esm/locales/isIS.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import { Localization } from "../utils/getGridLocalization.js";
|
|
1
|
+
import { type Localization } from "../utils/getGridLocalization.js";
|
|
2
2
|
export declare const isIS: Localization;
|
package/esm/locales/isIS.js
CHANGED
|
@@ -144,6 +144,9 @@ const isISGrid = {
|
|
|
144
144
|
// Boolean cell text
|
|
145
145
|
booleanCellTrueLabel: 'já',
|
|
146
146
|
booleanCellFalseLabel: 'nei',
|
|
147
|
+
// Long text cell
|
|
148
|
+
longTextCellExpandLabel: 'Stækka',
|
|
149
|
+
longTextCellCollapseLabel: 'Minnka',
|
|
147
150
|
// Actions cell more text
|
|
148
151
|
actionsCellMore: 'meira',
|
|
149
152
|
// Column pinning text
|
package/esm/locales/itIT.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import { Localization } from "../utils/getGridLocalization.js";
|
|
1
|
+
import { type Localization } from "../utils/getGridLocalization.js";
|
|
2
2
|
export declare const itIT: Localization;
|
package/esm/locales/itIT.js
CHANGED
|
@@ -138,6 +138,9 @@ const itITGrid = {
|
|
|
138
138
|
// Boolean cell text
|
|
139
139
|
booleanCellTrueLabel: 'vero',
|
|
140
140
|
booleanCellFalseLabel: 'falso',
|
|
141
|
+
// Long text cell
|
|
142
|
+
longTextCellExpandLabel: 'Espandi',
|
|
143
|
+
longTextCellCollapseLabel: 'Comprimi',
|
|
141
144
|
// Actions cell more text
|
|
142
145
|
actionsCellMore: 'più',
|
|
143
146
|
// Column pinning text
|
package/esm/locales/jaJP.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import { Localization } from "../utils/getGridLocalization.js";
|
|
1
|
+
import { type Localization } from "../utils/getGridLocalization.js";
|
|
2
2
|
export declare const jaJP: Localization;
|
package/esm/locales/jaJP.js
CHANGED
|
@@ -142,6 +142,9 @@ const jaJPGrid = {
|
|
|
142
142
|
// Boolean cell text
|
|
143
143
|
booleanCellTrueLabel: '真',
|
|
144
144
|
booleanCellFalseLabel: '偽',
|
|
145
|
+
// Long text cell
|
|
146
|
+
longTextCellExpandLabel: '展開',
|
|
147
|
+
longTextCellCollapseLabel: '折りたたみ',
|
|
145
148
|
// Actions cell more text
|
|
146
149
|
actionsCellMore: 'もっと見る',
|
|
147
150
|
// Column pinning text
|
package/esm/locales/koKR.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import { Localization } from "../utils/getGridLocalization.js";
|
|
1
|
+
import { type Localization } from "../utils/getGridLocalization.js";
|
|
2
2
|
export declare const koKR: Localization;
|
package/esm/locales/koKR.js
CHANGED
|
@@ -139,6 +139,9 @@ const koKRGrid = {
|
|
|
139
139
|
// Boolean cell text
|
|
140
140
|
booleanCellTrueLabel: '참',
|
|
141
141
|
booleanCellFalseLabel: '거짓',
|
|
142
|
+
// Long text cell
|
|
143
|
+
longTextCellExpandLabel: '열기',
|
|
144
|
+
longTextCellCollapseLabel: '접기',
|
|
142
145
|
// Actions cell more text
|
|
143
146
|
actionsCellMore: '더보기',
|
|
144
147
|
// Column pinning text
|
package/esm/locales/nbNO.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import { Localization } from "../utils/getGridLocalization.js";
|
|
1
|
+
import { type Localization } from "../utils/getGridLocalization.js";
|
|
2
2
|
export declare const nbNO: Localization;
|
package/esm/locales/nbNO.js
CHANGED
|
@@ -142,6 +142,9 @@ const nbNOGrid = {
|
|
|
142
142
|
// Boolean cell text
|
|
143
143
|
booleanCellTrueLabel: 'sant',
|
|
144
144
|
booleanCellFalseLabel: 'usant',
|
|
145
|
+
// Long text cell
|
|
146
|
+
longTextCellExpandLabel: 'Utvid',
|
|
147
|
+
longTextCellCollapseLabel: 'Kollaps',
|
|
145
148
|
// Actions cell more text
|
|
146
149
|
actionsCellMore: 'mer',
|
|
147
150
|
// Column pinning text
|
package/esm/locales/nlNL.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import { Localization } from "../utils/getGridLocalization.js";
|
|
1
|
+
import { type Localization } from "../utils/getGridLocalization.js";
|
|
2
2
|
export declare const nlNL: Localization;
|
package/esm/locales/nlNL.js
CHANGED
|
@@ -143,6 +143,9 @@ const nlNLGrid = {
|
|
|
143
143
|
// Boolean cell text
|
|
144
144
|
booleanCellTrueLabel: 'waar',
|
|
145
145
|
booleanCellFalseLabel: 'onwaar',
|
|
146
|
+
// Long text cell
|
|
147
|
+
longTextCellExpandLabel: 'Uitklappen',
|
|
148
|
+
longTextCellCollapseLabel: 'Inklappen',
|
|
146
149
|
// Actions cell more text
|
|
147
150
|
actionsCellMore: 'meer',
|
|
148
151
|
// Column pinning text
|
package/esm/locales/nnNO.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import { Localization } from "../utils/getGridLocalization.js";
|
|
1
|
+
import { type Localization } from "../utils/getGridLocalization.js";
|
|
2
2
|
export declare const nnNO: Localization;
|
package/esm/locales/nnNO.js
CHANGED
|
@@ -139,6 +139,9 @@ const nnNOGrid = {
|
|
|
139
139
|
// Boolean cell text
|
|
140
140
|
booleanCellTrueLabel: 'sant',
|
|
141
141
|
booleanCellFalseLabel: 'usant',
|
|
142
|
+
// Long text cell
|
|
143
|
+
longTextCellExpandLabel: 'Vis',
|
|
144
|
+
longTextCellCollapseLabel: 'Gøym',
|
|
142
145
|
// Actions cell more text
|
|
143
146
|
actionsCellMore: 'meir',
|
|
144
147
|
// Column pinning text
|
package/esm/locales/plPL.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import { Localization } from "../utils/getGridLocalization.js";
|
|
1
|
+
import { type Localization } from "../utils/getGridLocalization.js";
|
|
2
2
|
export declare const plPL: Localization;
|
package/esm/locales/plPL.js
CHANGED
|
@@ -141,6 +141,9 @@ const plPLGrid = {
|
|
|
141
141
|
// Boolean cell text
|
|
142
142
|
booleanCellTrueLabel: 'tak',
|
|
143
143
|
booleanCellFalseLabel: 'nie',
|
|
144
|
+
// Long text cell
|
|
145
|
+
longTextCellExpandLabel: 'Rozwiń',
|
|
146
|
+
longTextCellCollapseLabel: 'Zwiń',
|
|
144
147
|
// Actions cell more text
|
|
145
148
|
actionsCellMore: 'więcej',
|
|
146
149
|
// Column pinning text
|
package/esm/locales/ptBR.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import { Localization } from "../utils/getGridLocalization.js";
|
|
1
|
+
import { type Localization } from "../utils/getGridLocalization.js";
|
|
2
2
|
export declare const ptBR: Localization;
|
package/esm/locales/ptBR.js
CHANGED
|
@@ -137,6 +137,9 @@ const ptBRGrid = {
|
|
|
137
137
|
// Boolean cell text
|
|
138
138
|
booleanCellTrueLabel: 'sim',
|
|
139
139
|
booleanCellFalseLabel: 'não',
|
|
140
|
+
// Long text cell
|
|
141
|
+
longTextCellExpandLabel: 'Expandir',
|
|
142
|
+
longTextCellCollapseLabel: 'Recolher',
|
|
140
143
|
// Actions cell more text
|
|
141
144
|
actionsCellMore: 'mais',
|
|
142
145
|
// Column pinning text
|
package/esm/locales/ptPT.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import { Localization } from "../utils/getGridLocalization.js";
|
|
1
|
+
import { type Localization } from "../utils/getGridLocalization.js";
|
|
2
2
|
export declare const ptPT: Localization;
|
package/esm/locales/ptPT.js
CHANGED
|
@@ -137,6 +137,9 @@ const ptPTGrid = {
|
|
|
137
137
|
// Boolean cell text
|
|
138
138
|
booleanCellTrueLabel: 'sim',
|
|
139
139
|
booleanCellFalseLabel: 'não',
|
|
140
|
+
// Long text cell
|
|
141
|
+
longTextCellExpandLabel: 'Expandir',
|
|
142
|
+
longTextCellCollapseLabel: 'Colapsar',
|
|
140
143
|
// Actions cell more text
|
|
141
144
|
actionsCellMore: 'mais',
|
|
142
145
|
// Column pinning text
|
package/esm/locales/roRO.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import { Localization } from "../utils/getGridLocalization.js";
|
|
1
|
+
import { type Localization } from "../utils/getGridLocalization.js";
|
|
2
2
|
export declare const roRO: Localization;
|
package/esm/locales/roRO.js
CHANGED
|
@@ -143,6 +143,9 @@ const roROGrid = {
|
|
|
143
143
|
// Boolean cell text
|
|
144
144
|
booleanCellTrueLabel: 'Da',
|
|
145
145
|
booleanCellFalseLabel: 'Nu',
|
|
146
|
+
// Long text cell
|
|
147
|
+
longTextCellExpandLabel: 'Extindere',
|
|
148
|
+
longTextCellCollapseLabel: 'Restrângere',
|
|
146
149
|
// Actions cell more text
|
|
147
150
|
actionsCellMore: 'Mai multe',
|
|
148
151
|
// Column pinning text
|
package/esm/locales/ruRU.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import { Localization } from "../utils/getGridLocalization.js";
|
|
1
|
+
import { type Localization } from "../utils/getGridLocalization.js";
|
|
2
2
|
export declare const ruRU: Localization;
|
package/esm/locales/ruRU.js
CHANGED
|
@@ -165,6 +165,9 @@ const ruRUGrid = {
|
|
|
165
165
|
// Boolean cell text
|
|
166
166
|
booleanCellTrueLabel: 'истина',
|
|
167
167
|
booleanCellFalseLabel: 'ложь',
|
|
168
|
+
// Long text cell
|
|
169
|
+
longTextCellExpandLabel: 'Развернуть',
|
|
170
|
+
longTextCellCollapseLabel: 'Свернуть',
|
|
168
171
|
// Actions cell more text
|
|
169
172
|
actionsCellMore: 'ещё',
|
|
170
173
|
// Column pinning text
|
package/esm/locales/skSK.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import { Localization } from "../utils/getGridLocalization.js";
|
|
1
|
+
import { type Localization } from "../utils/getGridLocalization.js";
|
|
2
2
|
export declare const skSK: Localization;
|
package/esm/locales/skSK.js
CHANGED
|
@@ -171,6 +171,9 @@ const skSKGrid = {
|
|
|
171
171
|
// Boolean cell text
|
|
172
172
|
booleanCellTrueLabel: 'áno',
|
|
173
173
|
booleanCellFalseLabel: 'nie',
|
|
174
|
+
// Long text cell
|
|
175
|
+
longTextCellExpandLabel: 'Rozbaliť',
|
|
176
|
+
longTextCellCollapseLabel: 'Zbaliť',
|
|
174
177
|
// Actions cell more text
|
|
175
178
|
actionsCellMore: 'viac',
|
|
176
179
|
// Column pinning text
|
package/esm/locales/svSE.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import { Localization } from "../utils/getGridLocalization.js";
|
|
1
|
+
import { type Localization } from "../utils/getGridLocalization.js";
|
|
2
2
|
export declare const svSE: Localization;
|
package/esm/locales/svSE.js
CHANGED
|
@@ -144,6 +144,9 @@ const svSEGrid = {
|
|
|
144
144
|
// Boolean cell text
|
|
145
145
|
booleanCellTrueLabel: 'ja',
|
|
146
146
|
booleanCellFalseLabel: 'nej',
|
|
147
|
+
// Long text cell
|
|
148
|
+
longTextCellExpandLabel: 'Expandera',
|
|
149
|
+
longTextCellCollapseLabel: 'Kollapsa',
|
|
147
150
|
// Actions cell more text
|
|
148
151
|
actionsCellMore: 'mer',
|
|
149
152
|
// Column pinning text
|
package/esm/locales/trTR.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import { Localization } from "../utils/getGridLocalization.js";
|
|
1
|
+
import { type Localization } from "../utils/getGridLocalization.js";
|
|
2
2
|
export declare const trTR: Localization;
|
package/esm/locales/trTR.js
CHANGED
|
@@ -143,6 +143,9 @@ const trTRGrid = {
|
|
|
143
143
|
// Boolean cell text
|
|
144
144
|
booleanCellTrueLabel: 'Evet',
|
|
145
145
|
booleanCellFalseLabel: 'Hayır',
|
|
146
|
+
// Long text cell
|
|
147
|
+
longTextCellExpandLabel: 'Genişlet',
|
|
148
|
+
longTextCellCollapseLabel: 'Gizle',
|
|
146
149
|
// Actions cell more text
|
|
147
150
|
actionsCellMore: 'daha fazla',
|
|
148
151
|
// Column pinning text
|
package/esm/locales/ukUA.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import { Localization } from "../utils/getGridLocalization.js";
|
|
1
|
+
import { type Localization } from "../utils/getGridLocalization.js";
|
|
2
2
|
export declare const ukUA: Localization;
|
package/esm/locales/ukUA.js
CHANGED
|
@@ -165,6 +165,9 @@ const ukUAGrid = {
|
|
|
165
165
|
// Boolean cell text
|
|
166
166
|
booleanCellTrueLabel: 'так',
|
|
167
167
|
booleanCellFalseLabel: 'ні',
|
|
168
|
+
// Long text cell
|
|
169
|
+
longTextCellExpandLabel: 'Показати',
|
|
170
|
+
longTextCellCollapseLabel: 'Приховати',
|
|
168
171
|
// Actions cell more text
|
|
169
172
|
actionsCellMore: 'більше',
|
|
170
173
|
// Column pinning text
|
package/esm/locales/urPK.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import { Localization } from "../utils/getGridLocalization.js";
|
|
1
|
+
import { type Localization } from "../utils/getGridLocalization.js";
|
|
2
2
|
export declare const urPK: Localization;
|
package/esm/locales/urPK.js
CHANGED
|
@@ -143,6 +143,9 @@ const urPKGrid = {
|
|
|
143
143
|
// Boolean cell text
|
|
144
144
|
booleanCellTrueLabel: 'ہاں',
|
|
145
145
|
booleanCellFalseLabel: 'نہیں',
|
|
146
|
+
// Long text cell
|
|
147
|
+
longTextCellExpandLabel: 'پھیلائیں',
|
|
148
|
+
longTextCellCollapseLabel: 'تنگ کریں',
|
|
146
149
|
// Actions cell more text
|
|
147
150
|
actionsCellMore: 'ذیادہ',
|
|
148
151
|
// Column pinning text
|
package/esm/locales/viVN.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import { Localization } from "../utils/getGridLocalization.js";
|
|
1
|
+
import { type Localization } from "../utils/getGridLocalization.js";
|
|
2
2
|
export declare const viVN: Localization;
|
package/esm/locales/viVN.js
CHANGED
|
@@ -144,6 +144,9 @@ const viVNGrid = {
|
|
|
144
144
|
// Boolean cell text
|
|
145
145
|
booleanCellTrueLabel: 'Có',
|
|
146
146
|
booleanCellFalseLabel: 'Không',
|
|
147
|
+
// Long text cell
|
|
148
|
+
longTextCellExpandLabel: 'Mở rộng',
|
|
149
|
+
longTextCellCollapseLabel: 'Thu nhỏ',
|
|
147
150
|
// Actions cell more text
|
|
148
151
|
actionsCellMore: 'Thêm',
|
|
149
152
|
// Column pinning text
|
package/esm/locales/zhCN.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import { Localization } from "../utils/getGridLocalization.js";
|
|
1
|
+
import { type Localization } from "../utils/getGridLocalization.js";
|
|
2
2
|
export declare const zhCN: Localization;
|
package/esm/locales/zhCN.js
CHANGED
|
@@ -142,6 +142,9 @@ const zhCNGrid = {
|
|
|
142
142
|
// Boolean cell text
|
|
143
143
|
booleanCellTrueLabel: '真',
|
|
144
144
|
booleanCellFalseLabel: '假',
|
|
145
|
+
// Long text cell
|
|
146
|
+
longTextCellExpandLabel: '显示',
|
|
147
|
+
longTextCellCollapseLabel: '折叠',
|
|
145
148
|
// Actions cell more text
|
|
146
149
|
actionsCellMore: '更多',
|
|
147
150
|
// Column pinning text
|
package/esm/locales/zhHK.js
CHANGED
|
@@ -142,6 +142,9 @@ const zhHKGrid = {
|
|
|
142
142
|
// Boolean cell text
|
|
143
143
|
booleanCellTrueLabel: '是的',
|
|
144
144
|
booleanCellFalseLabel: '不',
|
|
145
|
+
// Long text cell
|
|
146
|
+
longTextCellExpandLabel: '擴張',
|
|
147
|
+
longTextCellCollapseLabel: '坍塌',
|
|
145
148
|
// Actions cell more text
|
|
146
149
|
actionsCellMore: '更多的',
|
|
147
150
|
// Column pinning text
|
package/esm/locales/zhTW.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import { Localization } from "../utils/getGridLocalization.js";
|
|
1
|
+
import { type Localization } from "../utils/getGridLocalization.js";
|
|
2
2
|
export declare const zhTW: Localization;
|
package/esm/locales/zhTW.js
CHANGED
|
@@ -142,6 +142,9 @@ const zhTWGrid = {
|
|
|
142
142
|
// Boolean cell text
|
|
143
143
|
booleanCellTrueLabel: '真',
|
|
144
144
|
booleanCellFalseLabel: '假',
|
|
145
|
+
// Long text cell
|
|
146
|
+
longTextCellExpandLabel: '展開',
|
|
147
|
+
longTextCellCollapseLabel: '摺疊',
|
|
145
148
|
// Actions cell more text
|
|
146
149
|
actionsCellMore: '查看更多',
|
|
147
150
|
// Column pinning text
|
|
@@ -15,6 +15,7 @@ import type { TablePaginationProps } from '@mui/material/TablePagination';
|
|
|
15
15
|
import type { PopperProps } from '@mui/material/Popper';
|
|
16
16
|
import type { TooltipProps } from '@mui/material/Tooltip';
|
|
17
17
|
import type { InputProps } from '@mui/material/Input';
|
|
18
|
+
import type { TextareaAutosizeProps } from '@mui/material/TextareaAutosize';
|
|
18
19
|
import type { SelectProps } from '@mui/material/Select';
|
|
19
20
|
import type { SkeletonProps } from '@mui/material/Skeleton';
|
|
20
21
|
import type { ToggleButtonProps } from '@mui/material/ToggleButton';
|
|
@@ -77,6 +78,9 @@ declare module '@mui/x-data-grid' {
|
|
|
77
78
|
interface BaseInputPropsOverrides {
|
|
78
79
|
material?: Partial<InputProps>;
|
|
79
80
|
}
|
|
81
|
+
interface BaseTextareaPropsOverrides {
|
|
82
|
+
material?: Partial<TextareaAutosizeProps>;
|
|
83
|
+
}
|
|
80
84
|
interface BaseSelectPropsOverrides {
|
|
81
85
|
material?: Partial<SelectProps>;
|
|
82
86
|
}
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import { GridBaseIconProps } from "../../models/gridSlotsComponentsProps.js";
|
|
1
|
+
import type { GridBaseIconProps } from "../../models/gridSlotsComponentsProps.js";
|
|
2
2
|
export declare const createSvgIcon: (path: React.ReactNode, displayName?: string) => (props: GridBaseIconProps) => React.ReactNode;
|
|
@@ -27,4 +27,6 @@ export declare const GridViewColumnIcon: (props: import("@mui/x-data-grid").Grid
|
|
|
27
27
|
export declare const GridClearIcon: (props: import("@mui/x-data-grid").GridBaseIconProps) => React.ReactNode;
|
|
28
28
|
export declare const GridDeleteIcon: (props: import("@mui/x-data-grid").GridBaseIconProps) => React.ReactNode;
|
|
29
29
|
export declare const GridDeleteForeverIcon: (props: import("@mui/x-data-grid").GridBaseIconProps) => React.ReactNode;
|
|
30
|
-
export declare const GridDownloadIcon: (props: import("@mui/x-data-grid").GridBaseIconProps) => React.ReactNode;
|
|
30
|
+
export declare const GridDownloadIcon: (props: import("@mui/x-data-grid").GridBaseIconProps) => React.ReactNode;
|
|
31
|
+
export declare const GridLongTextCellExpandIcon: (props: import("@mui/x-data-grid").GridBaseIconProps) => React.ReactNode;
|
|
32
|
+
export declare const GridLongTextCellCollapseIcon: (props: import("@mui/x-data-grid").GridBaseIconProps) => React.ReactNode;
|
|
@@ -94,4 +94,10 @@ export const GridDeleteForeverIcon = createSvgIcon(/*#__PURE__*/_jsx("path", {
|
|
|
94
94
|
}), 'Delete');
|
|
95
95
|
export const GridDownloadIcon = createSvgIcon(/*#__PURE__*/_jsx("path", {
|
|
96
96
|
d: "M5 20h14v-2H5zM19 9h-4V3H9v6H5l7 7z"
|
|
97
|
-
}), 'Download');
|
|
97
|
+
}), 'Download');
|
|
98
|
+
export const GridLongTextCellExpandIcon = createSvgIcon(/*#__PURE__*/_jsx("path", {
|
|
99
|
+
d: "M21 11V3h-8l3.29 3.29-10 10L3 13v8h8l-3.29-3.29 10-10z"
|
|
100
|
+
}), 'OpenInFull');
|
|
101
|
+
export const GridLongTextCellCollapseIcon = createSvgIcon(/*#__PURE__*/_jsx("path", {
|
|
102
|
+
d: "M5 15h2V8.41L18.59 20 20 18.59 8.41 7H15V5H5z"
|
|
103
|
+
}), 'NorthWest');
|
package/esm/material/index.js
CHANGED
|
@@ -21,10 +21,11 @@ const _excluded = ["id", "label", "labelId", "material", "disabled", "slotProps"
|
|
|
21
21
|
_excluded17 = ["key"],
|
|
22
22
|
_excluded18 = ["inputProps", "InputProps", "InputLabelProps"],
|
|
23
23
|
_excluded19 = ["slotProps", "material"],
|
|
24
|
-
_excluded20 = ["
|
|
25
|
-
_excluded21 = ["
|
|
26
|
-
_excluded22 = ["
|
|
27
|
-
_excluded23 = ["
|
|
24
|
+
_excluded20 = ["material"],
|
|
25
|
+
_excluded21 = ["ref", "open", "children", "className", "clickAwayTouchEvent", "clickAwayMouseEvent", "flip", "focusTrap", "onExited", "onClickAway", "onDidShow", "onDidHide", "id", "target", "transition", "placement", "material"],
|
|
26
|
+
_excluded22 = ["native"],
|
|
27
|
+
_excluded23 = ["children", "value", "active"],
|
|
28
|
+
_excluded24 = ["items", "value", "material"];
|
|
28
29
|
import * as React from 'react';
|
|
29
30
|
import clsx from 'clsx';
|
|
30
31
|
import useForkRef from '@mui/utils/useForkRef';
|
|
@@ -44,6 +45,7 @@ import MUIListItemText, { listItemTextClasses } from '@mui/material/ListItemText
|
|
|
44
45
|
import MUIMenuList from '@mui/material/MenuList';
|
|
45
46
|
import MUIMenuItem from '@mui/material/MenuItem';
|
|
46
47
|
import MUITextField from '@mui/material/TextField';
|
|
48
|
+
import MUITextareaAutosize from '@mui/material/TextareaAutosize';
|
|
47
49
|
import MUIFormControl from '@mui/material/FormControl';
|
|
48
50
|
import MUIFormControlLabel, { formControlLabelClasses } from '@mui/material/FormControlLabel';
|
|
49
51
|
import MUISelect from '@mui/material/Select';
|
|
@@ -64,7 +66,7 @@ import MUITab from '@mui/material/Tab';
|
|
|
64
66
|
import MUIToggleButton from '@mui/material/ToggleButton';
|
|
65
67
|
import { forwardRef } from '@mui/x-internals/forwardRef';
|
|
66
68
|
import useId from '@mui/utils/useId';
|
|
67
|
-
import { GridAddIcon, GridArrowDownwardIcon, GridArrowUpwardIcon, GridCheckIcon, GridCloseIcon, GridUndoIcon, GridRedoIcon, GridColumnIcon, GridDragIcon, GridExpandMoreIcon, GridFilterAltIcon, GridFilterListIcon, GridKeyboardArrowRight, GridMoreVertIcon, GridRemoveIcon, GridSearchIcon, GridSeparatorIcon, GridTableRowsIcon, GridTripleDotsVerticalIcon, GridViewHeadlineIcon, GridViewStreamIcon, GridVisibilityOffIcon, GridViewColumnIcon, GridClearIcon, GridLoadIcon, GridDeleteForeverIcon, GridDownloadIcon } from "./icons/index.js";
|
|
69
|
+
import { GridAddIcon, GridArrowDownwardIcon, GridArrowUpwardIcon, GridCheckIcon, GridCloseIcon, GridUndoIcon, GridRedoIcon, GridColumnIcon, GridDragIcon, GridExpandMoreIcon, GridFilterAltIcon, GridFilterListIcon, GridKeyboardArrowRight, GridMoreVertIcon, GridRemoveIcon, GridSearchIcon, GridSeparatorIcon, GridTableRowsIcon, GridTripleDotsVerticalIcon, GridViewHeadlineIcon, GridViewStreamIcon, GridVisibilityOffIcon, GridViewColumnIcon, GridClearIcon, GridLoadIcon, GridDeleteForeverIcon, GridDownloadIcon, GridLongTextCellExpandIcon, GridLongTextCellCollapseIcon } from "./icons/index.js";
|
|
68
70
|
import { GridColumnUnsortedIcon } from "../components/GridColumnUnsortedIcon.js";
|
|
69
71
|
import { useGridApiContext } from "../hooks/utils/useGridApiContext.js";
|
|
70
72
|
import { useGridRootProps } from "../hooks/utils/useGridRootProps.js";
|
|
@@ -577,6 +579,16 @@ function transformInputProps(props, wrapAdornments = true) {
|
|
|
577
579
|
}
|
|
578
580
|
return result;
|
|
579
581
|
}
|
|
582
|
+
const BaseTextarea = forwardRef(function BaseTextarea(props, ref) {
|
|
583
|
+
const {
|
|
584
|
+
material
|
|
585
|
+
} = props,
|
|
586
|
+
other = _objectWithoutPropertiesLoose(props, _excluded20);
|
|
587
|
+
return /*#__PURE__*/_jsx(MUITextareaAutosize, _extends({}, other, material, {
|
|
588
|
+
ref: ref
|
|
589
|
+
}));
|
|
590
|
+
});
|
|
591
|
+
if (process.env.NODE_ENV !== "production") BaseTextarea.displayName = "BaseTextarea";
|
|
580
592
|
const transformOrigin = {
|
|
581
593
|
'bottom-start': 'top left',
|
|
582
594
|
'bottom-end': 'top right'
|
|
@@ -596,7 +608,7 @@ function BasePopper(props) {
|
|
|
596
608
|
placement,
|
|
597
609
|
material
|
|
598
610
|
} = props,
|
|
599
|
-
other = _objectWithoutPropertiesLoose(props,
|
|
611
|
+
other = _objectWithoutPropertiesLoose(props, _excluded21);
|
|
600
612
|
const modifiers = React.useMemo(() => {
|
|
601
613
|
const result = [{
|
|
602
614
|
name: 'preventOverflow',
|
|
@@ -691,7 +703,7 @@ function BaseSelectOption(_ref) {
|
|
|
691
703
|
let {
|
|
692
704
|
native
|
|
693
705
|
} = _ref,
|
|
694
|
-
props = _objectWithoutPropertiesLoose(_ref,
|
|
706
|
+
props = _objectWithoutPropertiesLoose(_ref, _excluded22);
|
|
695
707
|
if (native) {
|
|
696
708
|
return /*#__PURE__*/_jsx("option", _extends({}, props));
|
|
697
709
|
}
|
|
@@ -726,7 +738,7 @@ function TabPanel(props) {
|
|
|
726
738
|
children,
|
|
727
739
|
active
|
|
728
740
|
} = props,
|
|
729
|
-
other = _objectWithoutPropertiesLoose(props,
|
|
741
|
+
other = _objectWithoutPropertiesLoose(props, _excluded23);
|
|
730
742
|
return /*#__PURE__*/_jsx(StyledTabPanel, _extends({
|
|
731
743
|
role: "tabpanel",
|
|
732
744
|
style: {
|
|
@@ -742,7 +754,7 @@ function BaseTabs(_ref2) {
|
|
|
742
754
|
value,
|
|
743
755
|
material
|
|
744
756
|
} = _ref2,
|
|
745
|
-
props = _objectWithoutPropertiesLoose(_ref2,
|
|
757
|
+
props = _objectWithoutPropertiesLoose(_ref2, _excluded24);
|
|
746
758
|
const id = useId();
|
|
747
759
|
const labelId = `${id}-tab-${value}`;
|
|
748
760
|
const panelId = `${id}-tabpanel-${value}`;
|
|
@@ -806,7 +818,9 @@ const iconSlots = {
|
|
|
806
818
|
filterPanelAddIcon: GridAddIcon,
|
|
807
819
|
filterPanelRemoveAllIcon: GridDeleteForeverIcon,
|
|
808
820
|
columnReorderIcon: GridDragIcon,
|
|
809
|
-
menuItemCheckIcon: GridCheckIcon
|
|
821
|
+
menuItemCheckIcon: GridCheckIcon,
|
|
822
|
+
longTextCellExpandIcon: GridLongTextCellExpandIcon,
|
|
823
|
+
longTextCellCollapseIcon: GridLongTextCellCollapseIcon
|
|
810
824
|
};
|
|
811
825
|
const baseSlots = {
|
|
812
826
|
baseAutocomplete: BaseAutocomplete,
|
|
@@ -816,6 +830,7 @@ const baseSlots = {
|
|
|
816
830
|
baseCircularProgress: BaseCircularProgress,
|
|
817
831
|
baseDivider: BaseDivider,
|
|
818
832
|
baseInput: BaseInput,
|
|
833
|
+
baseTextarea: BaseTextarea,
|
|
819
834
|
baseLinearProgress: BaseLinearProgress,
|
|
820
835
|
baseMenuList: BaseMenuList,
|
|
821
836
|
baseMenuItem: BaseMenuItem,
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { GridColDef, GridStateColDef } from "../colDef/gridColDef.js";
|
|
1
|
+
import type { GridColDef, GridStateColDef } from "../colDef/gridColDef.js";
|
|
2
2
|
import type { GridColumnVisibilityModel } from "../../hooks/features/columns/gridColumnsInterfaces.js";
|
|
3
3
|
/**
|
|
4
4
|
* The column API interface that is available in the grid [[apiRef]].
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { GridColumnGroupLookup } from "../../hooks/features/columnGrouping/gridColumnGroupsInterfaces.js";
|
|
2
|
-
import { GridColumnGroup } from "../gridColumnGrouping.js";
|
|
1
|
+
import type { GridColumnGroupLookup } from "../../hooks/features/columnGrouping/gridColumnGroupsInterfaces.js";
|
|
2
|
+
import type { GridColumnGroup } from "../gridColumnGrouping.js";
|
|
3
3
|
/**
|
|
4
4
|
* The column grouping API interface that is available in the grid [[apiRef]].
|
|
5
5
|
*/
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { GridStateColDef } from "../colDef/gridColDef.js";
|
|
2
|
-
import { GridColumnIndex, GridCellColSpanInfo } from "../gridColumnSpanning.js";
|
|
3
|
-
import { GridRowId } from "../gridRows.js";
|
|
1
|
+
import type { GridStateColDef } from "../colDef/gridColDef.js";
|
|
2
|
+
import type { GridColumnIndex, GridCellColSpanInfo } from "../gridColumnSpanning.js";
|
|
3
|
+
import type { GridRowId } from "../gridRows.js";
|
|
4
4
|
/**
|
|
5
5
|
* The Column Spanning API interface that is available in the grid `apiRef`.
|
|
6
6
|
*/
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import * as React from 'react';
|
|
2
|
-
import { EventManager, EventListenerOptions } from '@mui/x-internals/EventManager';
|
|
1
|
+
import type * as React from 'react';
|
|
2
|
+
import type { EventManager, EventListenerOptions } from '@mui/x-internals/EventManager';
|
|
3
3
|
import type { Store } from '@mui/x-internals/store';
|
|
4
4
|
import type { GridEventPublisher, GridEventListener, GridEvents } from "../events/index.js";
|
|
5
5
|
import type { GridApiCaches } from "../gridApiCaches.js";
|