@mui/x-data-grid 8.25.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 +184 -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 +24 -4
- package/components/cell/GridActionsCell.js +15 -5
- 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 +8 -3
- package/components/toolbar/GridToolbar.js +5 -0
- package/components/toolbar/GridToolbarExport.d.ts +1 -1
- package/components/toolbar/GridToolbarQuickFilter.d.ts +2 -2
- package/components/toolbarV8/GridToolbar.d.ts +2 -2
- package/components/toolbarV8/GridToolbar.js +26 -24
- 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 +6 -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 +24 -4
- package/esm/components/cell/GridActionsCell.js +15 -5
- 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 +8 -3
- package/esm/components/toolbar/GridToolbar.js +5 -0
- 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 +2 -2
- package/esm/components/toolbarV8/GridToolbar.js +26 -24
- 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 +6 -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/useGridProps.js +5 -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 +40 -2
- 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/scroll/useGridScroll.js +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/index.d.ts +1 -1
- package/esm/internals/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 +6 -0
- package/esm/locales/beBY.d.ts +1 -1
- package/esm/locales/beBY.js +6 -0
- package/esm/locales/bgBG.d.ts +1 -1
- package/esm/locales/bgBG.js +6 -0
- package/esm/locales/bnBD.d.ts +1 -1
- package/esm/locales/bnBD.js +6 -0
- package/esm/locales/caES.d.ts +1 -1
- package/esm/locales/caES.js +6 -0
- package/esm/locales/csCZ.d.ts +1 -1
- package/esm/locales/csCZ.js +6 -0
- package/esm/locales/daDK.d.ts +1 -1
- package/esm/locales/daDK.js +6 -0
- package/esm/locales/deDE.d.ts +1 -1
- package/esm/locales/deDE.js +6 -0
- package/esm/locales/elGR.d.ts +1 -1
- package/esm/locales/elGR.js +6 -0
- package/esm/locales/enUS.d.ts +1 -1
- package/esm/locales/esES.d.ts +1 -1
- package/esm/locales/esES.js +6 -0
- package/esm/locales/faIR.d.ts +1 -1
- package/esm/locales/faIR.js +6 -0
- package/esm/locales/fiFI.d.ts +1 -1
- package/esm/locales/fiFI.js +6 -0
- package/esm/locales/frFR.d.ts +1 -1
- package/esm/locales/frFR.js +6 -0
- package/esm/locales/heIL.d.ts +1 -1
- package/esm/locales/heIL.js +6 -0
- package/esm/locales/hrHR.js +6 -0
- package/esm/locales/huHU.d.ts +1 -1
- package/esm/locales/huHU.js +6 -0
- package/esm/locales/hyAM.d.ts +1 -1
- package/esm/locales/hyAM.js +6 -0
- package/esm/locales/idID.d.ts +2 -2
- package/esm/locales/idID.js +6 -0
- package/esm/locales/isIS.d.ts +1 -1
- package/esm/locales/isIS.js +6 -0
- package/esm/locales/itIT.d.ts +1 -1
- package/esm/locales/itIT.js +6 -0
- package/esm/locales/jaJP.d.ts +1 -1
- package/esm/locales/jaJP.js +6 -0
- package/esm/locales/koKR.d.ts +1 -1
- package/esm/locales/koKR.js +6 -0
- package/esm/locales/nbNO.d.ts +1 -1
- package/esm/locales/nbNO.js +6 -0
- package/esm/locales/nlNL.d.ts +1 -1
- package/esm/locales/nlNL.js +6 -0
- package/esm/locales/nnNO.d.ts +1 -1
- package/esm/locales/nnNO.js +6 -0
- package/esm/locales/plPL.d.ts +1 -1
- package/esm/locales/plPL.js +6 -0
- package/esm/locales/ptBR.d.ts +1 -1
- package/esm/locales/ptBR.js +6 -0
- package/esm/locales/ptPT.d.ts +1 -1
- package/esm/locales/ptPT.js +6 -0
- package/esm/locales/roRO.d.ts +1 -1
- package/esm/locales/roRO.js +6 -0
- package/esm/locales/ruRU.d.ts +1 -1
- package/esm/locales/ruRU.js +6 -0
- package/esm/locales/skSK.d.ts +1 -1
- package/esm/locales/skSK.js +6 -0
- package/esm/locales/svSE.d.ts +1 -1
- package/esm/locales/svSE.js +6 -0
- package/esm/locales/trTR.d.ts +1 -1
- package/esm/locales/trTR.js +6 -0
- package/esm/locales/ukUA.d.ts +1 -1
- package/esm/locales/ukUA.js +6 -0
- package/esm/locales/urPK.d.ts +1 -1
- package/esm/locales/urPK.js +6 -0
- package/esm/locales/viVN.d.ts +1 -1
- package/esm/locales/viVN.js +6 -0
- package/esm/locales/zhCN.d.ts +1 -1
- package/esm/locales/zhCN.js +6 -0
- package/esm/locales/zhHK.js +6 -0
- package/esm/locales/zhTW.d.ts +1 -1
- package/esm/locales/zhTW.js +6 -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 +5 -1
- package/esm/material/icons/index.js +13 -1
- package/esm/material/index.js +27 -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 +5 -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 +22 -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 +2 -2
- 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 +4 -2
- package/esm/utils/keyboardUtils.js +6 -0
- 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/useGridProps.js +5 -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 +39 -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/scroll/useGridScroll.js +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/index.d.ts +1 -1
- package/internals/index.js +14 -0
- 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 +6 -0
- package/locales/beBY.d.ts +1 -1
- package/locales/beBY.js +6 -0
- package/locales/bgBG.d.ts +1 -1
- package/locales/bgBG.js +6 -0
- package/locales/bnBD.d.ts +1 -1
- package/locales/bnBD.js +6 -0
- package/locales/caES.d.ts +1 -1
- package/locales/caES.js +6 -0
- package/locales/csCZ.d.ts +1 -1
- package/locales/csCZ.js +6 -0
- package/locales/daDK.d.ts +1 -1
- package/locales/daDK.js +6 -0
- package/locales/deDE.d.ts +1 -1
- package/locales/deDE.js +6 -0
- package/locales/elGR.d.ts +1 -1
- package/locales/elGR.js +6 -0
- package/locales/enUS.d.ts +1 -1
- package/locales/esES.d.ts +1 -1
- package/locales/esES.js +6 -0
- package/locales/faIR.d.ts +1 -1
- package/locales/faIR.js +6 -0
- package/locales/fiFI.d.ts +1 -1
- package/locales/fiFI.js +6 -0
- package/locales/frFR.d.ts +1 -1
- package/locales/frFR.js +6 -0
- package/locales/heIL.d.ts +1 -1
- package/locales/heIL.js +6 -0
- package/locales/hrHR.js +6 -0
- package/locales/huHU.d.ts +1 -1
- package/locales/huHU.js +6 -0
- package/locales/hyAM.d.ts +1 -1
- package/locales/hyAM.js +6 -0
- package/locales/idID.d.ts +2 -2
- package/locales/idID.js +6 -0
- package/locales/isIS.d.ts +1 -1
- package/locales/isIS.js +6 -0
- package/locales/itIT.d.ts +1 -1
- package/locales/itIT.js +6 -0
- package/locales/jaJP.d.ts +1 -1
- package/locales/jaJP.js +6 -0
- package/locales/koKR.d.ts +1 -1
- package/locales/koKR.js +6 -0
- package/locales/nbNO.d.ts +1 -1
- package/locales/nbNO.js +6 -0
- package/locales/nlNL.d.ts +1 -1
- package/locales/nlNL.js +6 -0
- package/locales/nnNO.d.ts +1 -1
- package/locales/nnNO.js +6 -0
- package/locales/plPL.d.ts +1 -1
- package/locales/plPL.js +6 -0
- package/locales/ptBR.d.ts +1 -1
- package/locales/ptBR.js +6 -0
- package/locales/ptPT.d.ts +1 -1
- package/locales/ptPT.js +6 -0
- package/locales/roRO.d.ts +1 -1
- package/locales/roRO.js +6 -0
- package/locales/ruRU.d.ts +1 -1
- package/locales/ruRU.js +6 -0
- package/locales/skSK.d.ts +1 -1
- package/locales/skSK.js +6 -0
- package/locales/svSE.d.ts +1 -1
- package/locales/svSE.js +6 -0
- package/locales/trTR.d.ts +1 -1
- package/locales/trTR.js +6 -0
- package/locales/ukUA.d.ts +1 -1
- package/locales/ukUA.js +6 -0
- package/locales/urPK.d.ts +1 -1
- package/locales/urPK.js +6 -0
- package/locales/viVN.d.ts +1 -1
- package/locales/viVN.js +6 -0
- package/locales/zhCN.d.ts +1 -1
- package/locales/zhCN.js +6 -0
- package/locales/zhHK.js +6 -0
- package/locales/zhTW.d.ts +1 -1
- package/locales/zhTW.js +6 -0
- package/material/augmentation.d.ts +4 -0
- package/material/icons/createSvgIcon.d.ts +1 -1
- package/material/icons/index.d.ts +5 -1
- package/material/icons/index.js +14 -2
- package/material/index.js +26 -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 +5 -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 +22 -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 +2 -2
- 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 +4 -2
- package/utils/keyboardUtils.js +8 -0
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { DataGridProcessedProps } from "../../models/props/DataGridProps.js";
|
|
1
|
+
import type { DataGridProcessedProps } from "../../models/props/DataGridProps.js";
|
|
2
2
|
export type PropValidator<TProps> = (props: TProps) => string | undefined;
|
|
3
3
|
export declare const propValidatorsDataGrid: PropValidator<DataGridProcessedProps>[];
|
|
4
4
|
export declare function validateProps<TProps>(props: TProps, validators: PropValidator<TProps>[]): void;
|
package/locales/arSD.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 arSD: Localization;
|
package/locales/arSD.js
CHANGED
|
@@ -19,6 +19,9 @@ const arSDGrid = {
|
|
|
19
19
|
toolbarDensityCompact: 'مضغوط',
|
|
20
20
|
toolbarDensityStandard: 'قياسي',
|
|
21
21
|
toolbarDensityComfortable: 'مريح',
|
|
22
|
+
// Undo/redo toolbar button text
|
|
23
|
+
toolbarUndo: 'تراجع',
|
|
24
|
+
toolbarRedo: 'إعادة',
|
|
22
25
|
// Columns selector toolbar button text
|
|
23
26
|
toolbarColumns: 'الأعمدة',
|
|
24
27
|
toolbarColumnsLabel: 'حدد أعمدة',
|
|
@@ -146,6 +149,9 @@ const arSDGrid = {
|
|
|
146
149
|
// Boolean cell text
|
|
147
150
|
booleanCellTrueLabel: 'نعم',
|
|
148
151
|
booleanCellFalseLabel: 'لا',
|
|
152
|
+
// Long text cell
|
|
153
|
+
longTextCellExpandLabel: 'توسيع',
|
|
154
|
+
longTextCellCollapseLabel: 'طوي',
|
|
149
155
|
// Actions cell more text
|
|
150
156
|
actionsCellMore: 'المزيد',
|
|
151
157
|
// Column pinning text
|
package/locales/beBY.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 beBY: Localization;
|
package/locales/beBY.js
CHANGED
|
@@ -29,6 +29,9 @@ const beBYGrid = {
|
|
|
29
29
|
toolbarDensityCompact: 'Кампактны',
|
|
30
30
|
toolbarDensityStandard: 'Стандартны',
|
|
31
31
|
toolbarDensityComfortable: 'Камфортны',
|
|
32
|
+
// Undo/redo toolbar button text
|
|
33
|
+
toolbarUndo: 'Адмяніць',
|
|
34
|
+
toolbarRedo: 'Паўтарыць',
|
|
32
35
|
// Columns selector toolbar button text
|
|
33
36
|
toolbarColumns: 'Слупкі',
|
|
34
37
|
toolbarColumnsLabel: 'Выберыце слупкі',
|
|
@@ -170,6 +173,9 @@ const beBYGrid = {
|
|
|
170
173
|
// Boolean cell text
|
|
171
174
|
booleanCellTrueLabel: 'праўда',
|
|
172
175
|
booleanCellFalseLabel: 'няпраўда',
|
|
176
|
+
// Long text cell
|
|
177
|
+
longTextCellExpandLabel: 'Разгарнуць',
|
|
178
|
+
longTextCellCollapseLabel: 'Згарнуць',
|
|
173
179
|
// Actions cell more text
|
|
174
180
|
actionsCellMore: 'больш',
|
|
175
181
|
// Column pinning text
|
package/locales/bgBG.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 bgBG: Localization;
|
package/locales/bgBG.js
CHANGED
|
@@ -19,6 +19,9 @@ const bgBGGrid = {
|
|
|
19
19
|
toolbarDensityCompact: 'Компактна',
|
|
20
20
|
toolbarDensityStandard: 'Стандартна',
|
|
21
21
|
toolbarDensityComfortable: 'Комфортна',
|
|
22
|
+
// Undo/redo toolbar button text
|
|
23
|
+
toolbarUndo: 'Отмяна',
|
|
24
|
+
toolbarRedo: 'Повтори',
|
|
22
25
|
// Columns selector toolbar button text
|
|
23
26
|
toolbarColumns: 'Колони',
|
|
24
27
|
toolbarColumnsLabel: 'Покажи селектора на колони',
|
|
@@ -147,6 +150,9 @@ const bgBGGrid = {
|
|
|
147
150
|
// Boolean cell text
|
|
148
151
|
booleanCellTrueLabel: 'да',
|
|
149
152
|
booleanCellFalseLabel: 'не',
|
|
153
|
+
// Long text cell
|
|
154
|
+
longTextCellExpandLabel: 'Разгъване',
|
|
155
|
+
longTextCellCollapseLabel: 'Свиване',
|
|
150
156
|
// Actions cell more text
|
|
151
157
|
actionsCellMore: 'още',
|
|
152
158
|
// Column pinning text
|
package/locales/bnBD.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 bnBD: Localization;
|
package/locales/bnBD.js
CHANGED
|
@@ -19,6 +19,9 @@ const bnBDGrid = {
|
|
|
19
19
|
toolbarDensityCompact: 'সংকুচিত',
|
|
20
20
|
toolbarDensityStandard: 'মানক',
|
|
21
21
|
toolbarDensityComfortable: 'স্বাচ্ছন্দ্যদায়ক',
|
|
22
|
+
// Undo/redo toolbar button text
|
|
23
|
+
toolbarUndo: 'পূর্বাবস্থায় ফেরান',
|
|
24
|
+
toolbarRedo: 'পুনরায় করুন',
|
|
22
25
|
// Columns selector toolbar button text
|
|
23
26
|
toolbarColumns: 'কলাম',
|
|
24
27
|
toolbarColumnsLabel: 'কলাম নির্বাচন করুন',
|
|
@@ -145,6 +148,9 @@ const bnBDGrid = {
|
|
|
145
148
|
// Boolean cell text
|
|
146
149
|
booleanCellTrueLabel: 'হ্যাঁ',
|
|
147
150
|
booleanCellFalseLabel: 'না',
|
|
151
|
+
// Long text cell
|
|
152
|
+
longTextCellExpandLabel: 'সম্প্রসারিত করুন',
|
|
153
|
+
longTextCellCollapseLabel: 'সংকুচিত করুন',
|
|
148
154
|
// Actions cell more text
|
|
149
155
|
actionsCellMore: 'আরও',
|
|
150
156
|
// Column pinning text
|
package/locales/caES.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 caES: Localization;
|
package/locales/caES.js
CHANGED
|
@@ -18,6 +18,9 @@ const caESGrid = {
|
|
|
18
18
|
toolbarDensityCompact: 'Compacta',
|
|
19
19
|
toolbarDensityStandard: 'Estàndard',
|
|
20
20
|
toolbarDensityComfortable: 'Còmoda',
|
|
21
|
+
// Undo/redo toolbar button text
|
|
22
|
+
toolbarUndo: 'Desfés',
|
|
23
|
+
toolbarRedo: 'Refés',
|
|
21
24
|
// Columns selector toolbar button text
|
|
22
25
|
toolbarColumns: 'Columnes',
|
|
23
26
|
toolbarColumnsLabel: 'Selecciona columnes',
|
|
@@ -140,6 +143,9 @@ const caESGrid = {
|
|
|
140
143
|
// Boolean cell text
|
|
141
144
|
booleanCellTrueLabel: 'sí',
|
|
142
145
|
booleanCellFalseLabel: 'no',
|
|
146
|
+
// Long text cell
|
|
147
|
+
longTextCellExpandLabel: 'Expandeix',
|
|
148
|
+
longTextCellCollapseLabel: 'Contrau',
|
|
143
149
|
// Actions cell more text
|
|
144
150
|
actionsCellMore: 'més',
|
|
145
151
|
// Column pinning text
|
package/locales/csCZ.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 csCZ: Localization;
|
package/locales/csCZ.js
CHANGED
|
@@ -19,6 +19,9 @@ const csCZGrid = {
|
|
|
19
19
|
toolbarDensityCompact: 'Kompaktní',
|
|
20
20
|
toolbarDensityStandard: 'Standartní',
|
|
21
21
|
toolbarDensityComfortable: 'Komfortní',
|
|
22
|
+
// Undo/redo toolbar button text
|
|
23
|
+
toolbarUndo: 'Zpět',
|
|
24
|
+
toolbarRedo: 'Znovu',
|
|
22
25
|
// Columns selector toolbar button text
|
|
23
26
|
toolbarColumns: 'Sloupce',
|
|
24
27
|
toolbarColumnsLabel: 'Vybrat sloupec',
|
|
@@ -174,6 +177,9 @@ const csCZGrid = {
|
|
|
174
177
|
// Boolean cell text
|
|
175
178
|
booleanCellTrueLabel: 'ano',
|
|
176
179
|
booleanCellFalseLabel: 'ne',
|
|
180
|
+
// Long text cell
|
|
181
|
+
longTextCellExpandLabel: 'Rozbalit',
|
|
182
|
+
longTextCellCollapseLabel: 'Sbalit',
|
|
177
183
|
// Actions cell more text
|
|
178
184
|
actionsCellMore: 'více',
|
|
179
185
|
// Column pinning text
|
package/locales/daDK.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 daDK: Localization;
|
package/locales/daDK.js
CHANGED
|
@@ -19,6 +19,9 @@ const daDKGrid = {
|
|
|
19
19
|
toolbarDensityCompact: 'Kompakt',
|
|
20
20
|
toolbarDensityStandard: 'Standard',
|
|
21
21
|
toolbarDensityComfortable: 'Luftig',
|
|
22
|
+
// Undo/redo toolbar button text
|
|
23
|
+
toolbarUndo: 'Fortryd',
|
|
24
|
+
toolbarRedo: 'Gentag',
|
|
22
25
|
// Columns selector toolbar button text
|
|
23
26
|
toolbarColumns: 'Kolonner',
|
|
24
27
|
toolbarColumnsLabel: 'Vælg kolonner',
|
|
@@ -146,6 +149,9 @@ const daDKGrid = {
|
|
|
146
149
|
// Boolean cell text
|
|
147
150
|
booleanCellTrueLabel: 'ja',
|
|
148
151
|
booleanCellFalseLabel: 'nej',
|
|
152
|
+
// Long text cell
|
|
153
|
+
longTextCellExpandLabel: 'Udvid',
|
|
154
|
+
longTextCellCollapseLabel: 'Kollaps',
|
|
149
155
|
// Actions cell more text
|
|
150
156
|
actionsCellMore: 'mere',
|
|
151
157
|
// Column pinning text
|
package/locales/deDE.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 deDE: Localization;
|
package/locales/deDE.js
CHANGED
|
@@ -18,6 +18,9 @@ const deDEGrid = {
|
|
|
18
18
|
toolbarDensityCompact: 'Kompakt',
|
|
19
19
|
toolbarDensityStandard: 'Standard',
|
|
20
20
|
toolbarDensityComfortable: 'Breit',
|
|
21
|
+
// Undo/redo toolbar button text
|
|
22
|
+
toolbarUndo: 'Rückgängig',
|
|
23
|
+
toolbarRedo: 'Wiederholen',
|
|
21
24
|
// Columns selector toolbar button text
|
|
22
25
|
toolbarColumns: 'Spalten',
|
|
23
26
|
toolbarColumnsLabel: 'Zeige Spaltenauswahl',
|
|
@@ -142,6 +145,9 @@ const deDEGrid = {
|
|
|
142
145
|
// Boolean cell text
|
|
143
146
|
booleanCellTrueLabel: 'Ja',
|
|
144
147
|
booleanCellFalseLabel: 'Nein',
|
|
148
|
+
// Long text cell
|
|
149
|
+
longTextCellExpandLabel: 'Aufklappen',
|
|
150
|
+
longTextCellCollapseLabel: 'Zuklappen',
|
|
145
151
|
// Actions cell more text
|
|
146
152
|
actionsCellMore: 'Mehr',
|
|
147
153
|
// Column pinning text
|
package/locales/elGR.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 elGR: Localization;
|
package/locales/elGR.js
CHANGED
|
@@ -19,6 +19,9 @@ const elGRGrid = {
|
|
|
19
19
|
toolbarDensityCompact: 'Συμπαγής',
|
|
20
20
|
toolbarDensityStandard: 'Προκαθορισμένο',
|
|
21
21
|
toolbarDensityComfortable: 'Πλατύ',
|
|
22
|
+
// Undo/redo toolbar button text
|
|
23
|
+
toolbarUndo: 'Αναίρεση',
|
|
24
|
+
toolbarRedo: 'Επανάληψη',
|
|
22
25
|
// Columns selector toolbar button text
|
|
23
26
|
toolbarColumns: 'Στήλες',
|
|
24
27
|
toolbarColumnsLabel: 'Επιλέξτε στήλες',
|
|
@@ -147,6 +150,9 @@ const elGRGrid = {
|
|
|
147
150
|
// Boolean cell text
|
|
148
151
|
booleanCellTrueLabel: 'ναί',
|
|
149
152
|
booleanCellFalseLabel: 'όχι',
|
|
153
|
+
// Long text cell
|
|
154
|
+
longTextCellExpandLabel: 'Ανάπτυξη',
|
|
155
|
+
longTextCellCollapseLabel: 'Σύμπτυξη',
|
|
150
156
|
// Actions cell more text
|
|
151
157
|
actionsCellMore: 'περισσότερα',
|
|
152
158
|
// Column pinning text
|
package/locales/enUS.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 enUS: Localization;
|
package/locales/esES.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 esES: Localization;
|
package/locales/esES.js
CHANGED
|
@@ -18,6 +18,9 @@ const esESGrid = {
|
|
|
18
18
|
toolbarDensityCompact: 'Compacta',
|
|
19
19
|
toolbarDensityStandard: 'Estándar',
|
|
20
20
|
toolbarDensityComfortable: 'Cómoda',
|
|
21
|
+
// Undo/redo toolbar button text
|
|
22
|
+
toolbarUndo: 'Deshacer',
|
|
23
|
+
toolbarRedo: 'Rehacer',
|
|
21
24
|
// Columns selector toolbar button text
|
|
22
25
|
toolbarColumns: 'Columnas',
|
|
23
26
|
toolbarColumnsLabel: 'Seleccionar columnas',
|
|
@@ -140,6 +143,9 @@ const esESGrid = {
|
|
|
140
143
|
// Boolean cell text
|
|
141
144
|
booleanCellTrueLabel: 'si',
|
|
142
145
|
booleanCellFalseLabel: 'no',
|
|
146
|
+
// Long text cell
|
|
147
|
+
longTextCellExpandLabel: 'Expandir',
|
|
148
|
+
longTextCellCollapseLabel: 'Contraer',
|
|
143
149
|
// Actions cell more text
|
|
144
150
|
actionsCellMore: 'más',
|
|
145
151
|
// Column pinning text
|
package/locales/faIR.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 faIR: Localization;
|
package/locales/faIR.js
CHANGED
|
@@ -19,6 +19,9 @@ const faIRGrid = {
|
|
|
19
19
|
toolbarDensityCompact: 'فشرده',
|
|
20
20
|
toolbarDensityStandard: 'استاندارد',
|
|
21
21
|
toolbarDensityComfortable: 'راحت',
|
|
22
|
+
// Undo/redo toolbar button text
|
|
23
|
+
toolbarUndo: 'واگرد',
|
|
24
|
+
toolbarRedo: 'ازنو',
|
|
22
25
|
// Columns selector toolbar button text
|
|
23
26
|
toolbarColumns: 'ستونها',
|
|
24
27
|
toolbarColumnsLabel: 'ستونها را انتخاب کنید',
|
|
@@ -146,6 +149,9 @@ const faIRGrid = {
|
|
|
146
149
|
// Boolean cell text
|
|
147
150
|
booleanCellTrueLabel: 'صحیح',
|
|
148
151
|
booleanCellFalseLabel: 'غلط',
|
|
152
|
+
// Long text cell
|
|
153
|
+
longTextCellExpandLabel: 'بازکردن پنل جزئیات',
|
|
154
|
+
longTextCellCollapseLabel: 'بستن پنل جزئیات',
|
|
149
155
|
// Actions cell more text
|
|
150
156
|
actionsCellMore: 'بیشتر',
|
|
151
157
|
// Column pinning text
|
package/locales/fiFI.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 fiFI: Localization;
|
package/locales/fiFI.js
CHANGED
|
@@ -19,6 +19,9 @@ const fiFIGrid = {
|
|
|
19
19
|
toolbarDensityCompact: 'Kompakti',
|
|
20
20
|
toolbarDensityStandard: 'Vakio',
|
|
21
21
|
toolbarDensityComfortable: 'Mukava',
|
|
22
|
+
// Undo/redo toolbar button text
|
|
23
|
+
toolbarUndo: 'Kumoa',
|
|
24
|
+
toolbarRedo: 'Tee uudelleen',
|
|
22
25
|
// Columns selector toolbar button text
|
|
23
26
|
toolbarColumns: 'Sarakkeet',
|
|
24
27
|
toolbarColumnsLabel: 'Valitse sarakkeet',
|
|
@@ -147,6 +150,9 @@ const fiFIGrid = {
|
|
|
147
150
|
// Boolean cell text
|
|
148
151
|
booleanCellTrueLabel: 'tosi',
|
|
149
152
|
booleanCellFalseLabel: 'epätosi',
|
|
153
|
+
// Long text cell
|
|
154
|
+
longTextCellExpandLabel: 'Laajenna',
|
|
155
|
+
longTextCellCollapseLabel: 'Tiivistä',
|
|
150
156
|
// Actions cell more text
|
|
151
157
|
actionsCellMore: 'lisää',
|
|
152
158
|
// Column pinning text
|
package/locales/frFR.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 frFR: Localization;
|
package/locales/frFR.js
CHANGED
|
@@ -19,6 +19,9 @@ const frFRGrid = {
|
|
|
19
19
|
toolbarDensityCompact: 'Compacte',
|
|
20
20
|
toolbarDensityStandard: 'Standard',
|
|
21
21
|
toolbarDensityComfortable: 'Confortable',
|
|
22
|
+
// Undo/redo toolbar button text
|
|
23
|
+
toolbarUndo: 'Annuler',
|
|
24
|
+
toolbarRedo: 'Rétablir',
|
|
22
25
|
// Columns selector toolbar button text
|
|
23
26
|
toolbarColumns: 'Colonnes',
|
|
24
27
|
toolbarColumnsLabel: 'Choisir les colonnes',
|
|
@@ -144,6 +147,9 @@ const frFRGrid = {
|
|
|
144
147
|
// Boolean cell text
|
|
145
148
|
booleanCellTrueLabel: 'vrai',
|
|
146
149
|
booleanCellFalseLabel: 'faux',
|
|
150
|
+
// Long text cell
|
|
151
|
+
longTextCellExpandLabel: 'Afficher',
|
|
152
|
+
longTextCellCollapseLabel: 'Masquer',
|
|
147
153
|
// Actions cell more text
|
|
148
154
|
actionsCellMore: 'Plus',
|
|
149
155
|
// Column pinning text
|
package/locales/heIL.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 heIL: Localization;
|
package/locales/heIL.js
CHANGED
|
@@ -19,6 +19,9 @@ const heILGrid = {
|
|
|
19
19
|
toolbarDensityCompact: 'דחוסה',
|
|
20
20
|
toolbarDensityStandard: 'רגילה',
|
|
21
21
|
toolbarDensityComfortable: 'אוורירית',
|
|
22
|
+
// Undo/redo toolbar button text
|
|
23
|
+
toolbarUndo: 'בטל',
|
|
24
|
+
toolbarRedo: 'בצע שוב',
|
|
22
25
|
// Columns selector toolbar button text
|
|
23
26
|
toolbarColumns: 'עמודות',
|
|
24
27
|
toolbarColumnsLabel: 'בחר עמודות',
|
|
@@ -146,6 +149,9 @@ const heILGrid = {
|
|
|
146
149
|
// Boolean cell text
|
|
147
150
|
booleanCellTrueLabel: 'כן',
|
|
148
151
|
booleanCellFalseLabel: 'לא',
|
|
152
|
+
// Long text cell
|
|
153
|
+
longTextCellExpandLabel: 'הרחב',
|
|
154
|
+
longTextCellCollapseLabel: 'כווץ',
|
|
149
155
|
// Actions cell more text
|
|
150
156
|
actionsCellMore: 'עוד',
|
|
151
157
|
// Column pinning text
|
package/locales/hrHR.js
CHANGED
|
@@ -19,6 +19,9 @@ const hrHRGrid = {
|
|
|
19
19
|
toolbarDensityCompact: 'Kompaktno',
|
|
20
20
|
toolbarDensityStandard: 'Standardno',
|
|
21
21
|
toolbarDensityComfortable: 'Udobno',
|
|
22
|
+
// Undo/redo toolbar button text
|
|
23
|
+
toolbarUndo: 'Poništi',
|
|
24
|
+
toolbarRedo: 'Ponovi',
|
|
22
25
|
// Columns selector toolbar button text
|
|
23
26
|
toolbarColumns: 'Stupci',
|
|
24
27
|
toolbarColumnsLabel: 'Odaberite stupce',
|
|
@@ -168,6 +171,9 @@ const hrHRGrid = {
|
|
|
168
171
|
// Boolean cell text
|
|
169
172
|
booleanCellTrueLabel: 'Da',
|
|
170
173
|
booleanCellFalseLabel: 'Ne',
|
|
174
|
+
// Long text cell
|
|
175
|
+
longTextCellExpandLabel: 'Proširiti',
|
|
176
|
+
longTextCellCollapseLabel: 'Skupiti',
|
|
171
177
|
// Actions cell more text
|
|
172
178
|
actionsCellMore: 'više',
|
|
173
179
|
// Column pinning text
|
package/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/locales/huHU.js
CHANGED
|
@@ -19,6 +19,9 @@ const huHUGrid = {
|
|
|
19
19
|
toolbarDensityCompact: 'Kompakt',
|
|
20
20
|
toolbarDensityStandard: 'Normál',
|
|
21
21
|
toolbarDensityComfortable: 'Kényelmes',
|
|
22
|
+
// Undo/redo toolbar button text
|
|
23
|
+
toolbarUndo: 'Visszavonás',
|
|
24
|
+
toolbarRedo: 'Újra',
|
|
22
25
|
// Columns selector toolbar button text
|
|
23
26
|
toolbarColumns: 'Oszlopok',
|
|
24
27
|
toolbarColumnsLabel: 'Oszlopok kiválasztása',
|
|
@@ -145,6 +148,9 @@ const huHUGrid = {
|
|
|
145
148
|
// Boolean cell text
|
|
146
149
|
booleanCellTrueLabel: 'igen',
|
|
147
150
|
booleanCellFalseLabel: 'nem',
|
|
151
|
+
// Long text cell
|
|
152
|
+
longTextCellExpandLabel: 'Kibontás',
|
|
153
|
+
longTextCellCollapseLabel: 'Összecsukás',
|
|
148
154
|
// Actions cell more text
|
|
149
155
|
actionsCellMore: 'további',
|
|
150
156
|
// Column pinning text
|
package/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/locales/hyAM.js
CHANGED
|
@@ -19,6 +19,9 @@ const hyAMGrid = {
|
|
|
19
19
|
toolbarDensityCompact: 'Կոմպակտ',
|
|
20
20
|
toolbarDensityStandard: 'Ստանդարտ',
|
|
21
21
|
toolbarDensityComfortable: 'Հարմարավետ',
|
|
22
|
+
// Undo/redo toolbar button text
|
|
23
|
+
toolbarUndo: 'Հետսարկել',
|
|
24
|
+
toolbarRedo: 'Կրկնվել',
|
|
22
25
|
// Columns selector toolbar button text
|
|
23
26
|
toolbarColumns: 'Սյունակներ',
|
|
24
27
|
toolbarColumnsLabel: 'Ընտրել սյունակներ',
|
|
@@ -170,6 +173,9 @@ const hyAMGrid = {
|
|
|
170
173
|
// Boolean cell text
|
|
171
174
|
booleanCellTrueLabel: 'այո',
|
|
172
175
|
booleanCellFalseLabel: 'ոչ',
|
|
176
|
+
// Long text cell
|
|
177
|
+
longTextCellExpandLabel: 'Բացել',
|
|
178
|
+
longTextCellCollapseLabel: 'Փակել',
|
|
173
179
|
// Actions cell more text
|
|
174
180
|
actionsCellMore: 'ավելին',
|
|
175
181
|
// Column pinning text
|
package/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/locales/idID.js
CHANGED
|
@@ -18,6 +18,9 @@ const idIDGrid = exports.idIDGrid = {
|
|
|
18
18
|
toolbarDensityCompact: 'Ringkas',
|
|
19
19
|
toolbarDensityStandard: 'Standar',
|
|
20
20
|
toolbarDensityComfortable: 'Nyaman',
|
|
21
|
+
// Undo/redo toolbar button text
|
|
22
|
+
toolbarUndo: 'Urungkan',
|
|
23
|
+
toolbarRedo: 'Ulangi',
|
|
21
24
|
// Columns selector toolbar button text
|
|
22
25
|
toolbarColumns: 'Kolom',
|
|
23
26
|
toolbarColumnsLabel: 'Pilih kolom',
|
|
@@ -142,6 +145,9 @@ const idIDGrid = exports.idIDGrid = {
|
|
|
142
145
|
// Boolean cell text
|
|
143
146
|
booleanCellTrueLabel: 'ya',
|
|
144
147
|
booleanCellFalseLabel: 'tidak',
|
|
148
|
+
// Long text cell
|
|
149
|
+
longTextCellExpandLabel: 'Perluas',
|
|
150
|
+
longTextCellCollapseLabel: 'Ciutkan',
|
|
145
151
|
// Actions cell more text
|
|
146
152
|
actionsCellMore: 'lainnya',
|
|
147
153
|
// Column pinning text
|
package/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/locales/isIS.js
CHANGED
|
@@ -19,6 +19,9 @@ const isISGrid = {
|
|
|
19
19
|
toolbarDensityCompact: 'Þétt',
|
|
20
20
|
toolbarDensityStandard: 'Staðlað',
|
|
21
21
|
toolbarDensityComfortable: 'Rúmlegt',
|
|
22
|
+
// Undo/redo toolbar button text
|
|
23
|
+
toolbarUndo: 'Afturkalla',
|
|
24
|
+
toolbarRedo: 'Endurgera',
|
|
22
25
|
// Columns selector toolbar button text
|
|
23
26
|
toolbarColumns: 'Dálkar',
|
|
24
27
|
toolbarColumnsLabel: 'Veldu dálka',
|
|
@@ -147,6 +150,9 @@ const isISGrid = {
|
|
|
147
150
|
// Boolean cell text
|
|
148
151
|
booleanCellTrueLabel: 'já',
|
|
149
152
|
booleanCellFalseLabel: 'nei',
|
|
153
|
+
// Long text cell
|
|
154
|
+
longTextCellExpandLabel: 'Stækka',
|
|
155
|
+
longTextCellCollapseLabel: 'Minnka',
|
|
150
156
|
// Actions cell more text
|
|
151
157
|
actionsCellMore: 'meira',
|
|
152
158
|
// Column pinning text
|
package/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/locales/itIT.js
CHANGED
|
@@ -18,6 +18,9 @@ const itITGrid = {
|
|
|
18
18
|
toolbarDensityCompact: 'Compatta',
|
|
19
19
|
toolbarDensityStandard: 'Standard',
|
|
20
20
|
toolbarDensityComfortable: 'Comoda',
|
|
21
|
+
// Undo/redo toolbar button text
|
|
22
|
+
toolbarUndo: 'Annulla',
|
|
23
|
+
toolbarRedo: 'Ripeti',
|
|
21
24
|
// Columns selector toolbar button text
|
|
22
25
|
toolbarColumns: 'Colonne',
|
|
23
26
|
toolbarColumnsLabel: 'Seleziona le colonne',
|
|
@@ -141,6 +144,9 @@ const itITGrid = {
|
|
|
141
144
|
// Boolean cell text
|
|
142
145
|
booleanCellTrueLabel: 'vero',
|
|
143
146
|
booleanCellFalseLabel: 'falso',
|
|
147
|
+
// Long text cell
|
|
148
|
+
longTextCellExpandLabel: 'Espandi',
|
|
149
|
+
longTextCellCollapseLabel: 'Comprimi',
|
|
144
150
|
// Actions cell more text
|
|
145
151
|
actionsCellMore: 'più',
|
|
146
152
|
// Column pinning text
|
package/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/locales/jaJP.js
CHANGED
|
@@ -19,6 +19,9 @@ const jaJPGrid = {
|
|
|
19
19
|
toolbarDensityCompact: 'コンパクト',
|
|
20
20
|
toolbarDensityStandard: '標準',
|
|
21
21
|
toolbarDensityComfortable: '広め',
|
|
22
|
+
// Undo/redo toolbar button text
|
|
23
|
+
toolbarUndo: '元に戻す',
|
|
24
|
+
toolbarRedo: 'やり直す',
|
|
22
25
|
// Columns selector toolbar button text
|
|
23
26
|
toolbarColumns: '列一覧',
|
|
24
27
|
toolbarColumnsLabel: '列選択',
|
|
@@ -145,6 +148,9 @@ const jaJPGrid = {
|
|
|
145
148
|
// Boolean cell text
|
|
146
149
|
booleanCellTrueLabel: '真',
|
|
147
150
|
booleanCellFalseLabel: '偽',
|
|
151
|
+
// Long text cell
|
|
152
|
+
longTextCellExpandLabel: '展開',
|
|
153
|
+
longTextCellCollapseLabel: '折りたたみ',
|
|
148
154
|
// Actions cell more text
|
|
149
155
|
actionsCellMore: 'もっと見る',
|
|
150
156
|
// Column pinning text
|
package/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/locales/koKR.js
CHANGED
|
@@ -18,6 +18,9 @@ const koKRGrid = {
|
|
|
18
18
|
toolbarDensityCompact: '좁게',
|
|
19
19
|
toolbarDensityStandard: '기본',
|
|
20
20
|
toolbarDensityComfortable: '넓게',
|
|
21
|
+
// Undo/redo toolbar button text
|
|
22
|
+
toolbarUndo: '실행 취소',
|
|
23
|
+
toolbarRedo: '다시 실행',
|
|
21
24
|
// Columns selector toolbar button text
|
|
22
25
|
toolbarColumns: '열 목록',
|
|
23
26
|
toolbarColumnsLabel: '열 선택',
|
|
@@ -142,6 +145,9 @@ const koKRGrid = {
|
|
|
142
145
|
// Boolean cell text
|
|
143
146
|
booleanCellTrueLabel: '참',
|
|
144
147
|
booleanCellFalseLabel: '거짓',
|
|
148
|
+
// Long text cell
|
|
149
|
+
longTextCellExpandLabel: '열기',
|
|
150
|
+
longTextCellCollapseLabel: '접기',
|
|
145
151
|
// Actions cell more text
|
|
146
152
|
actionsCellMore: '더보기',
|
|
147
153
|
// Column pinning text
|
package/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/locales/nbNO.js
CHANGED
|
@@ -19,6 +19,9 @@ const nbNOGrid = {
|
|
|
19
19
|
toolbarDensityCompact: 'Kompakt',
|
|
20
20
|
toolbarDensityStandard: 'Standard',
|
|
21
21
|
toolbarDensityComfortable: 'Komfortabelt',
|
|
22
|
+
// Undo/redo toolbar button text
|
|
23
|
+
toolbarUndo: 'Angre',
|
|
24
|
+
toolbarRedo: 'Gjør om',
|
|
22
25
|
// Columns selector toolbar button text
|
|
23
26
|
toolbarColumns: 'Kolonner',
|
|
24
27
|
toolbarColumnsLabel: 'Velg kolonner',
|
|
@@ -145,6 +148,9 @@ const nbNOGrid = {
|
|
|
145
148
|
// Boolean cell text
|
|
146
149
|
booleanCellTrueLabel: 'sant',
|
|
147
150
|
booleanCellFalseLabel: 'usant',
|
|
151
|
+
// Long text cell
|
|
152
|
+
longTextCellExpandLabel: 'Utvid',
|
|
153
|
+
longTextCellCollapseLabel: 'Kollaps',
|
|
148
154
|
// Actions cell more text
|
|
149
155
|
actionsCellMore: 'mer',
|
|
150
156
|
// Column pinning text
|
package/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/locales/nlNL.js
CHANGED
|
@@ -19,6 +19,9 @@ const nlNLGrid = {
|
|
|
19
19
|
toolbarDensityCompact: 'Compact',
|
|
20
20
|
toolbarDensityStandard: 'Normaal',
|
|
21
21
|
toolbarDensityComfortable: 'Breed',
|
|
22
|
+
// Undo/redo toolbar button text
|
|
23
|
+
toolbarUndo: 'Ongedaan maken',
|
|
24
|
+
toolbarRedo: 'Opnieuw',
|
|
22
25
|
// Columns selector toolbar button text
|
|
23
26
|
toolbarColumns: 'Kolommen',
|
|
24
27
|
toolbarColumnsLabel: 'Kies kolommen',
|
|
@@ -146,6 +149,9 @@ const nlNLGrid = {
|
|
|
146
149
|
// Boolean cell text
|
|
147
150
|
booleanCellTrueLabel: 'waar',
|
|
148
151
|
booleanCellFalseLabel: 'onwaar',
|
|
152
|
+
// Long text cell
|
|
153
|
+
longTextCellExpandLabel: 'Uitklappen',
|
|
154
|
+
longTextCellCollapseLabel: 'Inklappen',
|
|
149
155
|
// Actions cell more text
|
|
150
156
|
actionsCellMore: 'meer',
|
|
151
157
|
// Column pinning text
|
package/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;
|