@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.
Files changed (776) hide show
  1. package/CHANGELOG.md +184 -0
  2. package/DataGrid/DataGrid.d.ts +2 -2
  3. package/DataGrid/useDataGridComponent.d.ts +4 -4
  4. package/DataGrid/useDataGridProps.d.ts +2 -2
  5. package/colDef/gridActionsColDef.d.ts +1 -1
  6. package/colDef/gridBooleanColDef.d.ts +1 -1
  7. package/colDef/gridBooleanOperators.d.ts +1 -1
  8. package/colDef/gridCheckboxSelectionColDef.d.ts +1 -1
  9. package/colDef/gridDateColDef.d.ts +1 -1
  10. package/colDef/gridDateOperators.d.ts +2 -2
  11. package/colDef/gridDefaultColumnTypes.js +3 -1
  12. package/colDef/gridLongTextColDef.d.ts +2 -0
  13. package/colDef/gridLongTextColDef.js +17 -0
  14. package/colDef/gridNumericColDef.d.ts +1 -1
  15. package/colDef/gridNumericOperators.d.ts +1 -1
  16. package/colDef/gridSingleSelectColDef.d.ts +1 -1
  17. package/colDef/gridSingleSelectOperators.d.ts +1 -1
  18. package/colDef/gridStringColDef.d.ts +1 -1
  19. package/colDef/gridStringOperators.d.ts +1 -1
  20. package/colDef/index.d.ts +1 -0
  21. package/colDef/index.js +11 -0
  22. package/components/GridColumnHeaders.d.ts +1 -1
  23. package/components/GridColumnSortButton.d.ts +2 -2
  24. package/components/GridColumnUnsortedIcon.d.ts +2 -2
  25. package/components/GridFooter.d.ts +1 -1
  26. package/components/GridLoadingOverlay.d.ts +1 -1
  27. package/components/GridNoColumnsOverlay.d.ts +1 -1
  28. package/components/GridNoResultsOverlay.d.ts +1 -1
  29. package/components/GridNoRowsOverlay.d.ts +1 -1
  30. package/components/GridRow.d.ts +2 -2
  31. package/components/GridRowCount.d.ts +1 -1
  32. package/components/GridScrollArea.d.ts +2 -2
  33. package/components/GridSelectedRowCount.d.ts +1 -1
  34. package/components/GridSkeletonLoadingOverlay.d.ts +1 -1
  35. package/components/cell/GridActionsCell.d.ts +24 -4
  36. package/components/cell/GridActionsCell.js +15 -5
  37. package/components/cell/GridActionsCellItem.d.ts +1 -1
  38. package/components/cell/GridCell.d.ts +3 -3
  39. package/components/cell/GridEditBooleanCell.d.ts +1 -1
  40. package/components/cell/GridEditDateCell.d.ts +2 -2
  41. package/components/cell/GridEditInputCell.d.ts +2 -2
  42. package/components/cell/GridEditLongTextCell.d.ts +41 -0
  43. package/components/cell/GridEditLongTextCell.js +248 -0
  44. package/components/cell/GridEditSingleSelectCell.d.ts +1 -1
  45. package/components/cell/GridFooterCell.d.ts +1 -1
  46. package/components/cell/GridLongTextCell.d.ts +43 -0
  47. package/components/cell/GridLongTextCell.js +254 -0
  48. package/components/cell/GridSkeletonCell.d.ts +1 -1
  49. package/components/cell/index.d.ts +3 -1
  50. package/components/cell/index.js +24 -0
  51. package/components/columnHeaders/ColumnHeaderMenuIcon.d.ts +1 -1
  52. package/components/columnHeaders/GridBaseColumnHeaders.d.ts +1 -1
  53. package/components/columnHeaders/GridColumnHeaderFilterIconButton.d.ts +1 -1
  54. package/components/columnHeaders/GridColumnHeaderItem.d.ts +3 -3
  55. package/components/columnHeaders/GridColumnHeaderSortIcon.d.ts +1 -1
  56. package/components/columnHeaders/GridGenericColumnHeaderItem.d.ts +4 -4
  57. package/components/columnsManagement/GridColumnsManagement.d.ts +1 -1
  58. package/components/columnsManagement/utils.d.ts +1 -1
  59. package/components/columnsPanel/ColumnsPanelTrigger.d.ts +1 -1
  60. package/components/containers/GridFooterContainer.d.ts +1 -1
  61. package/components/containers/GridOverlay.d.ts +1 -1
  62. package/components/containers/GridRoot.d.ts +2 -2
  63. package/components/containers/GridRootStyles.d.ts +1 -1
  64. package/components/containers/GridToolbarContainer.d.ts +1 -1
  65. package/components/export/ExportCsv.d.ts +2 -2
  66. package/components/export/ExportPrint.d.ts +2 -2
  67. package/components/filterPanel/FilterPanelTrigger.d.ts +1 -1
  68. package/components/menu/GridMenu.d.ts +1 -1
  69. package/components/menu/columnMenu/GridColumnHeaderMenu.d.ts +1 -1
  70. package/components/menu/columnMenu/GridColumnMenu.d.ts +1 -1
  71. package/components/menu/columnMenu/GridColumnMenuContainer.d.ts +1 -1
  72. package/components/menu/columnMenu/GridColumnMenuItemProps.d.ts +2 -2
  73. package/components/menu/columnMenu/GridColumnMenuProps.d.ts +3 -3
  74. package/components/menu/columnMenu/menuItems/GridColumnMenuColumnsItem.d.ts +1 -1
  75. package/components/menu/columnMenu/menuItems/GridColumnMenuFilterItem.d.ts +1 -1
  76. package/components/menu/columnMenu/menuItems/GridColumnMenuHideItem.d.ts +1 -1
  77. package/components/menu/columnMenu/menuItems/GridColumnMenuManageItem.d.ts +1 -1
  78. package/components/menu/columnMenu/menuItems/GridColumnMenuSortItem.d.ts +1 -1
  79. package/components/panel/GridColumnsPanel.d.ts +1 -1
  80. package/components/panel/GridPanel.d.ts +1 -1
  81. package/components/panel/GridPanelContent.d.ts +1 -1
  82. package/components/panel/GridPanelFooter.d.ts +1 -1
  83. package/components/panel/GridPanelHeader.d.ts +1 -1
  84. package/components/panel/GridPanelWrapper.d.ts +2 -2
  85. package/components/panel/filterPanel/GridFilterForm.d.ts +2 -2
  86. package/components/panel/filterPanel/GridFilterInputBoolean.d.ts +2 -2
  87. package/components/panel/filterPanel/GridFilterInputDate.d.ts +2 -2
  88. package/components/panel/filterPanel/GridFilterInputMultipleSingleSelect.d.ts +2 -2
  89. package/components/panel/filterPanel/GridFilterInputMultipleValue.d.ts +2 -2
  90. package/components/panel/filterPanel/GridFilterInputSingleSelect.d.ts +2 -2
  91. package/components/panel/filterPanel/GridFilterInputValue.d.ts +3 -3
  92. package/components/panel/filterPanel/GridFilterPanel.d.ts +4 -4
  93. package/components/quickFilter/QuickFilter.d.ts +2 -2
  94. package/components/quickFilter/QuickFilterClear.d.ts +2 -2
  95. package/components/quickFilter/QuickFilterControl.d.ts +2 -2
  96. package/components/quickFilter/QuickFilterTrigger.d.ts +2 -2
  97. package/components/toolbar/GridToolbar.d.ts +8 -3
  98. package/components/toolbar/GridToolbar.js +5 -0
  99. package/components/toolbar/GridToolbarExport.d.ts +1 -1
  100. package/components/toolbar/GridToolbarQuickFilter.d.ts +2 -2
  101. package/components/toolbarV8/GridToolbar.d.ts +2 -2
  102. package/components/toolbarV8/GridToolbar.js +26 -24
  103. package/components/toolbarV8/Toolbar.d.ts +1 -1
  104. package/components/toolbarV8/ToolbarButton.d.ts +1 -1
  105. package/components/virtualization/GridMainContainer.d.ts +1 -1
  106. package/components/virtualization/GridVirtualScrollerContent.d.ts +1 -1
  107. package/components/virtualization/GridVirtualScrollerRenderZone.d.ts +1 -1
  108. package/constants/defaultGridSlotsComponents.d.ts +1 -1
  109. package/constants/gridClasses.d.ts +44 -0
  110. package/constants/gridClasses.js +1 -1
  111. package/constants/localeTextConstants.d.ts +1 -1
  112. package/constants/localeTextConstants.js +6 -0
  113. package/context/GridContextProvider.d.ts +3 -3
  114. package/esm/DataGrid/DataGrid.d.ts +2 -2
  115. package/esm/DataGrid/useDataGridComponent.d.ts +4 -4
  116. package/esm/DataGrid/useDataGridProps.d.ts +2 -2
  117. package/esm/colDef/gridActionsColDef.d.ts +1 -1
  118. package/esm/colDef/gridBooleanColDef.d.ts +1 -1
  119. package/esm/colDef/gridBooleanOperators.d.ts +1 -1
  120. package/esm/colDef/gridCheckboxSelectionColDef.d.ts +1 -1
  121. package/esm/colDef/gridDateColDef.d.ts +1 -1
  122. package/esm/colDef/gridDateOperators.d.ts +2 -2
  123. package/esm/colDef/gridDefaultColumnTypes.js +3 -1
  124. package/esm/colDef/gridLongTextColDef.d.ts +2 -0
  125. package/esm/colDef/gridLongTextColDef.js +10 -0
  126. package/esm/colDef/gridNumericColDef.d.ts +1 -1
  127. package/esm/colDef/gridNumericOperators.d.ts +1 -1
  128. package/esm/colDef/gridSingleSelectColDef.d.ts +1 -1
  129. package/esm/colDef/gridSingleSelectOperators.d.ts +1 -1
  130. package/esm/colDef/gridStringColDef.d.ts +1 -1
  131. package/esm/colDef/gridStringOperators.d.ts +1 -1
  132. package/esm/colDef/index.d.ts +1 -0
  133. package/esm/colDef/index.js +1 -0
  134. package/esm/components/GridColumnHeaders.d.ts +1 -1
  135. package/esm/components/GridColumnSortButton.d.ts +2 -2
  136. package/esm/components/GridColumnUnsortedIcon.d.ts +2 -2
  137. package/esm/components/GridFooter.d.ts +1 -1
  138. package/esm/components/GridLoadingOverlay.d.ts +1 -1
  139. package/esm/components/GridNoColumnsOverlay.d.ts +1 -1
  140. package/esm/components/GridNoResultsOverlay.d.ts +1 -1
  141. package/esm/components/GridNoRowsOverlay.d.ts +1 -1
  142. package/esm/components/GridRow.d.ts +2 -2
  143. package/esm/components/GridRowCount.d.ts +1 -1
  144. package/esm/components/GridScrollArea.d.ts +2 -2
  145. package/esm/components/GridSelectedRowCount.d.ts +1 -1
  146. package/esm/components/GridSkeletonLoadingOverlay.d.ts +1 -1
  147. package/esm/components/cell/GridActionsCell.d.ts +24 -4
  148. package/esm/components/cell/GridActionsCell.js +15 -5
  149. package/esm/components/cell/GridActionsCellItem.d.ts +1 -1
  150. package/esm/components/cell/GridCell.d.ts +3 -3
  151. package/esm/components/cell/GridEditBooleanCell.d.ts +1 -1
  152. package/esm/components/cell/GridEditDateCell.d.ts +2 -2
  153. package/esm/components/cell/GridEditInputCell.d.ts +2 -2
  154. package/esm/components/cell/GridEditLongTextCell.d.ts +41 -0
  155. package/esm/components/cell/GridEditLongTextCell.js +240 -0
  156. package/esm/components/cell/GridEditSingleSelectCell.d.ts +1 -1
  157. package/esm/components/cell/GridFooterCell.d.ts +1 -1
  158. package/esm/components/cell/GridLongTextCell.d.ts +43 -0
  159. package/esm/components/cell/GridLongTextCell.js +246 -0
  160. package/esm/components/cell/GridSkeletonCell.d.ts +1 -1
  161. package/esm/components/cell/index.d.ts +3 -1
  162. package/esm/components/cell/index.js +3 -1
  163. package/esm/components/columnHeaders/ColumnHeaderMenuIcon.d.ts +1 -1
  164. package/esm/components/columnHeaders/GridBaseColumnHeaders.d.ts +1 -1
  165. package/esm/components/columnHeaders/GridColumnHeaderFilterIconButton.d.ts +1 -1
  166. package/esm/components/columnHeaders/GridColumnHeaderItem.d.ts +3 -3
  167. package/esm/components/columnHeaders/GridColumnHeaderSortIcon.d.ts +1 -1
  168. package/esm/components/columnHeaders/GridGenericColumnHeaderItem.d.ts +4 -4
  169. package/esm/components/columnsManagement/GridColumnsManagement.d.ts +1 -1
  170. package/esm/components/columnsManagement/utils.d.ts +1 -1
  171. package/esm/components/columnsPanel/ColumnsPanelTrigger.d.ts +1 -1
  172. package/esm/components/containers/GridFooterContainer.d.ts +1 -1
  173. package/esm/components/containers/GridOverlay.d.ts +1 -1
  174. package/esm/components/containers/GridRoot.d.ts +2 -2
  175. package/esm/components/containers/GridRootStyles.d.ts +1 -1
  176. package/esm/components/containers/GridToolbarContainer.d.ts +1 -1
  177. package/esm/components/export/ExportCsv.d.ts +2 -2
  178. package/esm/components/export/ExportPrint.d.ts +2 -2
  179. package/esm/components/filterPanel/FilterPanelTrigger.d.ts +1 -1
  180. package/esm/components/menu/GridMenu.d.ts +1 -1
  181. package/esm/components/menu/columnMenu/GridColumnHeaderMenu.d.ts +1 -1
  182. package/esm/components/menu/columnMenu/GridColumnMenu.d.ts +1 -1
  183. package/esm/components/menu/columnMenu/GridColumnMenuContainer.d.ts +1 -1
  184. package/esm/components/menu/columnMenu/GridColumnMenuItemProps.d.ts +2 -2
  185. package/esm/components/menu/columnMenu/GridColumnMenuProps.d.ts +3 -3
  186. package/esm/components/menu/columnMenu/menuItems/GridColumnMenuColumnsItem.d.ts +1 -1
  187. package/esm/components/menu/columnMenu/menuItems/GridColumnMenuFilterItem.d.ts +1 -1
  188. package/esm/components/menu/columnMenu/menuItems/GridColumnMenuHideItem.d.ts +1 -1
  189. package/esm/components/menu/columnMenu/menuItems/GridColumnMenuManageItem.d.ts +1 -1
  190. package/esm/components/menu/columnMenu/menuItems/GridColumnMenuSortItem.d.ts +1 -1
  191. package/esm/components/panel/GridColumnsPanel.d.ts +1 -1
  192. package/esm/components/panel/GridPanel.d.ts +1 -1
  193. package/esm/components/panel/GridPanelContent.d.ts +1 -1
  194. package/esm/components/panel/GridPanelFooter.d.ts +1 -1
  195. package/esm/components/panel/GridPanelHeader.d.ts +1 -1
  196. package/esm/components/panel/GridPanelWrapper.d.ts +2 -2
  197. package/esm/components/panel/filterPanel/GridFilterForm.d.ts +2 -2
  198. package/esm/components/panel/filterPanel/GridFilterInputBoolean.d.ts +2 -2
  199. package/esm/components/panel/filterPanel/GridFilterInputDate.d.ts +2 -2
  200. package/esm/components/panel/filterPanel/GridFilterInputMultipleSingleSelect.d.ts +2 -2
  201. package/esm/components/panel/filterPanel/GridFilterInputMultipleValue.d.ts +2 -2
  202. package/esm/components/panel/filterPanel/GridFilterInputSingleSelect.d.ts +2 -2
  203. package/esm/components/panel/filterPanel/GridFilterInputValue.d.ts +3 -3
  204. package/esm/components/panel/filterPanel/GridFilterPanel.d.ts +4 -4
  205. package/esm/components/quickFilter/QuickFilter.d.ts +2 -2
  206. package/esm/components/quickFilter/QuickFilterClear.d.ts +2 -2
  207. package/esm/components/quickFilter/QuickFilterControl.d.ts +2 -2
  208. package/esm/components/quickFilter/QuickFilterTrigger.d.ts +2 -2
  209. package/esm/components/toolbar/GridToolbar.d.ts +8 -3
  210. package/esm/components/toolbar/GridToolbar.js +5 -0
  211. package/esm/components/toolbar/GridToolbarExport.d.ts +1 -1
  212. package/esm/components/toolbar/GridToolbarQuickFilter.d.ts +2 -2
  213. package/esm/components/toolbarV8/GridToolbar.d.ts +2 -2
  214. package/esm/components/toolbarV8/GridToolbar.js +26 -24
  215. package/esm/components/toolbarV8/Toolbar.d.ts +1 -1
  216. package/esm/components/toolbarV8/ToolbarButton.d.ts +1 -1
  217. package/esm/components/virtualization/GridMainContainer.d.ts +1 -1
  218. package/esm/components/virtualization/GridVirtualScrollerContent.d.ts +1 -1
  219. package/esm/components/virtualization/GridVirtualScrollerRenderZone.d.ts +1 -1
  220. package/esm/constants/defaultGridSlotsComponents.d.ts +1 -1
  221. package/esm/constants/gridClasses.d.ts +44 -0
  222. package/esm/constants/gridClasses.js +1 -1
  223. package/esm/constants/localeTextConstants.d.ts +1 -1
  224. package/esm/constants/localeTextConstants.js +6 -0
  225. package/esm/context/GridContextProvider.d.ts +3 -3
  226. package/esm/hooks/core/gridCoreSelector.d.ts +1 -1
  227. package/esm/hooks/core/pipeProcessing/gridPipeProcessingApi.d.ts +10 -10
  228. package/esm/hooks/core/pipeProcessing/useGridPipeProcessing.d.ts +2 -2
  229. package/esm/hooks/core/pipeProcessing/useGridRegisterPipeApplier.d.ts +3 -3
  230. package/esm/hooks/core/pipeProcessing/useGridRegisterPipeProcessor.d.ts +3 -3
  231. package/esm/hooks/core/strategyProcessing/useGridRegisterStrategyProcessor.d.ts +3 -3
  232. package/esm/hooks/core/strategyProcessing/useGridStrategyProcessing.d.ts +3 -3
  233. package/esm/hooks/core/useGridApiInitialization.d.ts +2 -2
  234. package/esm/hooks/core/useGridInitialization.d.ts +2 -2
  235. package/esm/hooks/core/useGridIsRtl.d.ts +2 -2
  236. package/esm/hooks/core/useGridLocaleText.d.ts +3 -3
  237. package/esm/hooks/core/useGridLoggerFactory.d.ts +3 -3
  238. package/esm/hooks/core/useGridProps.js +5 -3
  239. package/esm/hooks/core/useGridRefs.d.ts +1 -1
  240. package/esm/hooks/core/useGridStateInitialization.d.ts +1 -1
  241. package/esm/hooks/features/clipboard/useGridClipboard.d.ts +2 -2
  242. package/esm/hooks/features/columnGrouping/gridColumnGroupsInterfaces.d.ts +1 -1
  243. package/esm/hooks/features/columnGrouping/gridColumnGroupsSelector.d.ts +1 -1
  244. package/esm/hooks/features/columnGrouping/gridColumnGroupsUtils.d.ts +3 -3
  245. package/esm/hooks/features/columnGrouping/useGridColumnGrouping.d.ts +4 -4
  246. package/esm/hooks/features/columnHeaders/useGridColumnHeaders.d.ts +8 -8
  247. package/esm/hooks/features/columnMenu/columnMenuInterfaces.d.ts +1 -1
  248. package/esm/hooks/features/columnMenu/columnMenuSelector.d.ts +1 -1
  249. package/esm/hooks/features/columnMenu/useGridColumnMenu.d.ts +3 -3
  250. package/esm/hooks/features/columnMenu/useGridColumnMenuSlots.d.ts +2 -2
  251. package/esm/hooks/features/columnResize/columnResizeSelector.d.ts +1 -1
  252. package/esm/hooks/features/columnResize/useGridColumnResize.d.ts +2 -2
  253. package/esm/hooks/features/columns/gridColumnsSelector.d.ts +2 -2
  254. package/esm/hooks/features/columns/gridColumnsUtils.d.ts +7 -7
  255. package/esm/hooks/features/columns/useGridColumnSpanning.d.ts +2 -2
  256. package/esm/hooks/features/columns/useGridColumns.d.ts +4 -4
  257. package/esm/hooks/features/dataSource/useGridDataSource.d.ts +1 -1
  258. package/esm/hooks/features/dataSource/useGridDataSourceBase.d.ts +2 -2
  259. package/esm/hooks/features/density/densitySelector.d.ts +2 -2
  260. package/esm/hooks/features/density/densityState.d.ts +1 -1
  261. package/esm/hooks/features/density/useGridDensity.d.ts +4 -4
  262. package/esm/hooks/features/dimensions/gridDimensionsSelectors.d.ts +1 -1
  263. package/esm/hooks/features/dimensions/useGridDimensions.d.ts +5 -5
  264. package/esm/hooks/features/editing/gridEditingSelectors.d.ts +3 -3
  265. package/esm/hooks/features/editing/useGridCellEditable.d.ts +1 -1
  266. package/esm/hooks/features/editing/useGridCellEditing.d.ts +3 -3
  267. package/esm/hooks/features/editing/useGridEditing.d.ts +5 -5
  268. package/esm/hooks/features/editing/useGridRowEditing.d.ts +3 -3
  269. package/esm/hooks/features/editing/utils.d.ts +1 -1
  270. package/esm/hooks/features/events/useGridEvents.d.ts +3 -3
  271. package/esm/hooks/features/export/serializers/csvSerializer.d.ts +1 -1
  272. package/esm/hooks/features/export/useGridCsvExport.d.ts +2 -2
  273. package/esm/hooks/features/export/useGridPrintExport.d.ts +3 -3
  274. package/esm/hooks/features/export/utils.d.ts +5 -5
  275. package/esm/hooks/features/filter/gridFilterSelector.d.ts +3 -3
  276. package/esm/hooks/features/filter/gridFilterState.d.ts +4 -4
  277. package/esm/hooks/features/filter/gridFilterUtils.d.ts +4 -4
  278. package/esm/hooks/features/filter/useGridFilter.d.ts +4 -4
  279. package/esm/hooks/features/focus/gridFocusState.d.ts +1 -1
  280. package/esm/hooks/features/focus/gridFocusStateSelector.d.ts +2 -2
  281. package/esm/hooks/features/focus/useGridFocus.d.ts +4 -4
  282. package/esm/hooks/features/focus/useGridFocus.js +40 -2
  283. package/esm/hooks/features/headerFiltering/gridHeaderFilteringSelectors.d.ts +1 -1
  284. package/esm/hooks/features/headerFiltering/useGridHeaderFiltering.d.ts +4 -4
  285. package/esm/hooks/features/keyboardNavigation/useGridKeyboardNavigation.d.ts +3 -3
  286. package/esm/hooks/features/keyboardNavigation/useGridKeyboardNavigation.js +3 -0
  287. package/esm/hooks/features/keyboardNavigation/utils.d.ts +3 -3
  288. package/esm/hooks/features/listView/gridListViewSelectors.d.ts +1 -1
  289. package/esm/hooks/features/listView/useGridListView.d.ts +4 -4
  290. package/esm/hooks/features/overlays/gridOverlaysInterfaces.d.ts +1 -1
  291. package/esm/hooks/features/overlays/useGridOverlays.d.ts +3 -3
  292. package/esm/hooks/features/pagination/gridPaginationInterfaces.d.ts +2 -2
  293. package/esm/hooks/features/pagination/gridPaginationSelector.d.ts +2 -2
  294. package/esm/hooks/features/pagination/gridPaginationUtils.d.ts +1 -1
  295. package/esm/hooks/features/pagination/useGridPagination.d.ts +4 -4
  296. package/esm/hooks/features/pagination/useGridPaginationMeta.d.ts +3 -3
  297. package/esm/hooks/features/pagination/useGridPaginationModel.d.ts +5 -5
  298. package/esm/hooks/features/pagination/useGridRowCount.d.ts +3 -3
  299. package/esm/hooks/features/preferencesPanel/gridPreferencePanelSelector.d.ts +1 -1
  300. package/esm/hooks/features/preferencesPanel/gridPreferencePanelState.d.ts +1 -1
  301. package/esm/hooks/features/preferencesPanel/useGridPreferencesPanel.d.ts +4 -4
  302. package/esm/hooks/features/rowReorder/gridRowReorderSelector.d.ts +1 -1
  303. package/esm/hooks/features/rowSelection/gridRowSelectionSelector.d.ts +2 -2
  304. package/esm/hooks/features/rowSelection/useGridRowSelection.d.ts +4 -4
  305. package/esm/hooks/features/rowSelection/useGridRowSelectionPreProcessors.d.ts +3 -3
  306. package/esm/hooks/features/rowSelection/utils.d.ts +3 -3
  307. package/esm/hooks/features/rows/gridRowSpanningUtils.d.ts +1 -1
  308. package/esm/hooks/features/rows/gridRowsInterfaces.d.ts +1 -1
  309. package/esm/hooks/features/rows/gridRowsMetaInterfaces.d.ts +1 -1
  310. package/esm/hooks/features/rows/gridRowsMetaSelector.d.ts +1 -1
  311. package/esm/hooks/features/rows/gridRowsMetaState.d.ts +1 -1
  312. package/esm/hooks/features/rows/gridRowsSelector.d.ts +2 -2
  313. package/esm/hooks/features/rows/gridRowsUtils.d.ts +5 -5
  314. package/esm/hooks/features/rows/useGridParamsApi.d.ts +3 -3
  315. package/esm/hooks/features/rows/useGridParamsOverridableMethods.d.ts +2 -2
  316. package/esm/hooks/features/rows/useGridRowAriaAttributes.d.ts +1 -1
  317. package/esm/hooks/features/rows/useGridRowSpanning.d.ts +2 -2
  318. package/esm/hooks/features/rows/useGridRows.d.ts +4 -4
  319. package/esm/hooks/features/rows/useGridRowsMeta.d.ts +4 -4
  320. package/esm/hooks/features/rows/useGridRowsOverridableMethods.d.ts +3 -3
  321. package/esm/hooks/features/rows/useGridRowsPreProcessors.d.ts +2 -2
  322. package/esm/hooks/features/scroll/useGridScroll.d.ts +3 -3
  323. package/esm/hooks/features/scroll/useGridScroll.js +3 -3
  324. package/esm/hooks/features/sorting/gridSortingSelector.d.ts +2 -2
  325. package/esm/hooks/features/sorting/gridSortingState.d.ts +2 -2
  326. package/esm/hooks/features/sorting/gridSortingUtils.d.ts +5 -5
  327. package/esm/hooks/features/sorting/useGridSorting.d.ts +4 -4
  328. package/esm/hooks/features/statePersistence/gridStatePersistenceInterface.d.ts +1 -1
  329. package/esm/hooks/features/statePersistence/useGridStatePersistence.d.ts +2 -2
  330. package/esm/hooks/features/virtualization/gridVirtualizationSelectors.d.ts +1 -1
  331. package/esm/hooks/features/virtualization/useGridVirtualization.d.ts +5 -5
  332. package/esm/hooks/utils/useGridApiContext.d.ts +3 -3
  333. package/esm/hooks/utils/useGridApiMethod.d.ts +2 -2
  334. package/esm/hooks/utils/useGridApiRef.d.ts +2 -2
  335. package/esm/hooks/utils/useGridAriaAttributes.d.ts +1 -1
  336. package/esm/hooks/utils/useGridConfiguration.d.ts +1 -1
  337. package/esm/hooks/utils/useGridEvent.d.ts +3 -3
  338. package/esm/hooks/utils/useGridInitializeState.d.ts +4 -4
  339. package/esm/hooks/utils/useGridLogger.d.ts +3 -3
  340. package/esm/hooks/utils/useGridNativeEventListener.d.ts +2 -2
  341. package/esm/hooks/utils/useGridPrivateApiContext.d.ts +3 -3
  342. package/esm/hooks/utils/useGridSelector.d.ts +1 -1
  343. package/esm/hooks/utils/useGridVisibleRows.d.ts +2 -2
  344. package/esm/index.d.ts +2 -2
  345. package/esm/index.js +1 -1
  346. package/esm/internals/index.d.ts +1 -1
  347. package/esm/internals/index.js +1 -1
  348. package/esm/internals/utils/attachPinnedStyle.d.ts +1 -1
  349. package/esm/internals/utils/cache.d.ts +1 -1
  350. package/esm/internals/utils/getPinnedCellOffset.d.ts +1 -1
  351. package/esm/internals/utils/propValidation.d.ts +1 -1
  352. package/esm/locales/arSD.d.ts +1 -1
  353. package/esm/locales/arSD.js +6 -0
  354. package/esm/locales/beBY.d.ts +1 -1
  355. package/esm/locales/beBY.js +6 -0
  356. package/esm/locales/bgBG.d.ts +1 -1
  357. package/esm/locales/bgBG.js +6 -0
  358. package/esm/locales/bnBD.d.ts +1 -1
  359. package/esm/locales/bnBD.js +6 -0
  360. package/esm/locales/caES.d.ts +1 -1
  361. package/esm/locales/caES.js +6 -0
  362. package/esm/locales/csCZ.d.ts +1 -1
  363. package/esm/locales/csCZ.js +6 -0
  364. package/esm/locales/daDK.d.ts +1 -1
  365. package/esm/locales/daDK.js +6 -0
  366. package/esm/locales/deDE.d.ts +1 -1
  367. package/esm/locales/deDE.js +6 -0
  368. package/esm/locales/elGR.d.ts +1 -1
  369. package/esm/locales/elGR.js +6 -0
  370. package/esm/locales/enUS.d.ts +1 -1
  371. package/esm/locales/esES.d.ts +1 -1
  372. package/esm/locales/esES.js +6 -0
  373. package/esm/locales/faIR.d.ts +1 -1
  374. package/esm/locales/faIR.js +6 -0
  375. package/esm/locales/fiFI.d.ts +1 -1
  376. package/esm/locales/fiFI.js +6 -0
  377. package/esm/locales/frFR.d.ts +1 -1
  378. package/esm/locales/frFR.js +6 -0
  379. package/esm/locales/heIL.d.ts +1 -1
  380. package/esm/locales/heIL.js +6 -0
  381. package/esm/locales/hrHR.js +6 -0
  382. package/esm/locales/huHU.d.ts +1 -1
  383. package/esm/locales/huHU.js +6 -0
  384. package/esm/locales/hyAM.d.ts +1 -1
  385. package/esm/locales/hyAM.js +6 -0
  386. package/esm/locales/idID.d.ts +2 -2
  387. package/esm/locales/idID.js +6 -0
  388. package/esm/locales/isIS.d.ts +1 -1
  389. package/esm/locales/isIS.js +6 -0
  390. package/esm/locales/itIT.d.ts +1 -1
  391. package/esm/locales/itIT.js +6 -0
  392. package/esm/locales/jaJP.d.ts +1 -1
  393. package/esm/locales/jaJP.js +6 -0
  394. package/esm/locales/koKR.d.ts +1 -1
  395. package/esm/locales/koKR.js +6 -0
  396. package/esm/locales/nbNO.d.ts +1 -1
  397. package/esm/locales/nbNO.js +6 -0
  398. package/esm/locales/nlNL.d.ts +1 -1
  399. package/esm/locales/nlNL.js +6 -0
  400. package/esm/locales/nnNO.d.ts +1 -1
  401. package/esm/locales/nnNO.js +6 -0
  402. package/esm/locales/plPL.d.ts +1 -1
  403. package/esm/locales/plPL.js +6 -0
  404. package/esm/locales/ptBR.d.ts +1 -1
  405. package/esm/locales/ptBR.js +6 -0
  406. package/esm/locales/ptPT.d.ts +1 -1
  407. package/esm/locales/ptPT.js +6 -0
  408. package/esm/locales/roRO.d.ts +1 -1
  409. package/esm/locales/roRO.js +6 -0
  410. package/esm/locales/ruRU.d.ts +1 -1
  411. package/esm/locales/ruRU.js +6 -0
  412. package/esm/locales/skSK.d.ts +1 -1
  413. package/esm/locales/skSK.js +6 -0
  414. package/esm/locales/svSE.d.ts +1 -1
  415. package/esm/locales/svSE.js +6 -0
  416. package/esm/locales/trTR.d.ts +1 -1
  417. package/esm/locales/trTR.js +6 -0
  418. package/esm/locales/ukUA.d.ts +1 -1
  419. package/esm/locales/ukUA.js +6 -0
  420. package/esm/locales/urPK.d.ts +1 -1
  421. package/esm/locales/urPK.js +6 -0
  422. package/esm/locales/viVN.d.ts +1 -1
  423. package/esm/locales/viVN.js +6 -0
  424. package/esm/locales/zhCN.d.ts +1 -1
  425. package/esm/locales/zhCN.js +6 -0
  426. package/esm/locales/zhHK.js +6 -0
  427. package/esm/locales/zhTW.d.ts +1 -1
  428. package/esm/locales/zhTW.js +6 -0
  429. package/esm/material/augmentation.d.ts +4 -0
  430. package/esm/material/icons/createSvgIcon.d.ts +1 -1
  431. package/esm/material/icons/index.d.ts +5 -1
  432. package/esm/material/icons/index.js +13 -1
  433. package/esm/material/index.js +27 -10
  434. package/esm/models/api/gridColumnApi.d.ts +1 -1
  435. package/esm/models/api/gridColumnGroupingApi.d.ts +2 -2
  436. package/esm/models/api/gridColumnSpanning.d.ts +3 -3
  437. package/esm/models/api/gridCoreApi.d.ts +2 -2
  438. package/esm/models/api/gridCsvExportApi.d.ts +1 -1
  439. package/esm/models/api/gridDensityApi.d.ts +2 -2
  440. package/esm/models/api/gridEditingApi.d.ts +6 -6
  441. package/esm/models/api/gridFilterApi.d.ts +4 -4
  442. package/esm/models/api/gridFocusApi.d.ts +3 -3
  443. package/esm/models/api/gridHeaderFilteringApi.d.ts +2 -2
  444. package/esm/models/api/gridLocaleTextApi.d.ts +5 -1
  445. package/esm/models/api/gridLoggerApi.d.ts +1 -1
  446. package/esm/models/api/gridParamsApi.d.ts +7 -7
  447. package/esm/models/api/gridPreferencesPanelApi.d.ts +1 -1
  448. package/esm/models/api/gridPrintExportApi.d.ts +1 -1
  449. package/esm/models/api/gridRowApi.d.ts +1 -1
  450. package/esm/models/api/gridRowSelectionApi.d.ts +1 -1
  451. package/esm/models/api/gridRowsMetaApi.d.ts +2 -2
  452. package/esm/models/api/gridScrollApi.d.ts +2 -2
  453. package/esm/models/api/gridSortApi.d.ts +3 -3
  454. package/esm/models/api/gridStateApi.d.ts +3 -3
  455. package/esm/models/colDef/gridColDef.d.ts +13 -13
  456. package/esm/models/colDef/gridColType.d.ts +1 -0
  457. package/esm/models/colDef/gridColumnTypesRecord.d.ts +2 -2
  458. package/esm/models/configuration/gridAggregationConfiguration.d.ts +2 -2
  459. package/esm/models/configuration/gridCellEditableConfiguration.d.ts +4 -4
  460. package/esm/models/configuration/gridConfiguration.d.ts +1 -1
  461. package/esm/models/configuration/gridParamsConfiguration.d.ts +2 -2
  462. package/esm/models/configuration/gridRowConfiguration.d.ts +4 -4
  463. package/esm/models/controlStateItem.d.ts +1 -1
  464. package/esm/models/events/gridEventLookup.d.ts +7 -7
  465. package/esm/models/gridBaseSlots.d.ts +13 -0
  466. package/esm/models/gridCell.d.ts +1 -1
  467. package/esm/models/gridCellClass.d.ts +2 -2
  468. package/esm/models/gridColumnGrouping.d.ts +1 -1
  469. package/esm/models/gridColumnHeaderClass.d.ts +1 -1
  470. package/esm/models/gridExport.d.ts +2 -2
  471. package/esm/models/gridFilterInputComponent.d.ts +3 -3
  472. package/esm/models/gridFilterItem.d.ts +1 -1
  473. package/esm/models/gridFilterModel.d.ts +1 -1
  474. package/esm/models/gridFilterOperator.d.ts +3 -3
  475. package/esm/models/gridHeaderFilteringModel.d.ts +1 -1
  476. package/esm/models/gridIconSlotsComponent.d.ts +22 -2
  477. package/esm/models/gridRowSelectionModel.d.ts +1 -1
  478. package/esm/models/gridSlotsComponent.d.ts +6 -1
  479. package/esm/models/gridSlotsComponentsProps.d.ts +4 -2
  480. package/esm/models/gridSortModel.d.ts +1 -1
  481. package/esm/models/gridStateCommunity.d.ts +2 -2
  482. package/esm/models/params/gridCellParams.d.ts +4 -4
  483. package/esm/models/params/gridColumnGroupHeaderParams.d.ts +1 -1
  484. package/esm/models/params/gridColumnHeaderParams.d.ts +1 -1
  485. package/esm/models/params/gridEditCellParams.d.ts +2 -2
  486. package/esm/models/params/gridPreferencePanelParams.d.ts +1 -1
  487. package/esm/models/params/gridRowParams.d.ts +1 -1
  488. package/esm/models/params/gridRowSelectionCheckboxParams.d.ts +1 -1
  489. package/esm/models/params/gridValueOptionsParams.d.ts +1 -1
  490. package/esm/models/props/DataGridProps.d.ts +25 -26
  491. package/esm/themeAugmentation/overrides.d.ts +1 -1
  492. package/esm/themeAugmentation/props.d.ts +2 -2
  493. package/esm/utils/assert.d.ts +1 -1
  494. package/esm/utils/cleanupTracking/FinalizationRegistryBasedCleanupTracking.d.ts +1 -1
  495. package/esm/utils/cleanupTracking/TimerBasedCleanupTracking.d.ts +1 -1
  496. package/esm/utils/createSelector.d.ts +2 -2
  497. package/esm/utils/exportAs.d.ts +1 -1
  498. package/esm/utils/getPublicApiRef.d.ts +1 -1
  499. package/esm/utils/keyboardUtils.d.ts +4 -2
  500. package/esm/utils/keyboardUtils.js +6 -0
  501. package/hooks/core/gridCoreSelector.d.ts +1 -1
  502. package/hooks/core/pipeProcessing/gridPipeProcessingApi.d.ts +10 -10
  503. package/hooks/core/pipeProcessing/useGridPipeProcessing.d.ts +2 -2
  504. package/hooks/core/pipeProcessing/useGridRegisterPipeApplier.d.ts +3 -3
  505. package/hooks/core/pipeProcessing/useGridRegisterPipeProcessor.d.ts +3 -3
  506. package/hooks/core/strategyProcessing/useGridRegisterStrategyProcessor.d.ts +3 -3
  507. package/hooks/core/strategyProcessing/useGridStrategyProcessing.d.ts +3 -3
  508. package/hooks/core/useGridApiInitialization.d.ts +2 -2
  509. package/hooks/core/useGridInitialization.d.ts +2 -2
  510. package/hooks/core/useGridIsRtl.d.ts +2 -2
  511. package/hooks/core/useGridLocaleText.d.ts +3 -3
  512. package/hooks/core/useGridLoggerFactory.d.ts +3 -3
  513. package/hooks/core/useGridProps.js +5 -3
  514. package/hooks/core/useGridRefs.d.ts +1 -1
  515. package/hooks/core/useGridStateInitialization.d.ts +1 -1
  516. package/hooks/features/clipboard/useGridClipboard.d.ts +2 -2
  517. package/hooks/features/columnGrouping/gridColumnGroupsInterfaces.d.ts +1 -1
  518. package/hooks/features/columnGrouping/gridColumnGroupsSelector.d.ts +1 -1
  519. package/hooks/features/columnGrouping/gridColumnGroupsUtils.d.ts +3 -3
  520. package/hooks/features/columnGrouping/useGridColumnGrouping.d.ts +4 -4
  521. package/hooks/features/columnHeaders/useGridColumnHeaders.d.ts +8 -8
  522. package/hooks/features/columnMenu/columnMenuInterfaces.d.ts +1 -1
  523. package/hooks/features/columnMenu/columnMenuSelector.d.ts +1 -1
  524. package/hooks/features/columnMenu/useGridColumnMenu.d.ts +3 -3
  525. package/hooks/features/columnMenu/useGridColumnMenuSlots.d.ts +2 -2
  526. package/hooks/features/columnResize/columnResizeSelector.d.ts +1 -1
  527. package/hooks/features/columnResize/useGridColumnResize.d.ts +2 -2
  528. package/hooks/features/columns/gridColumnsSelector.d.ts +2 -2
  529. package/hooks/features/columns/gridColumnsUtils.d.ts +7 -7
  530. package/hooks/features/columns/useGridColumnSpanning.d.ts +2 -2
  531. package/hooks/features/columns/useGridColumns.d.ts +4 -4
  532. package/hooks/features/dataSource/useGridDataSource.d.ts +1 -1
  533. package/hooks/features/dataSource/useGridDataSourceBase.d.ts +2 -2
  534. package/hooks/features/density/densitySelector.d.ts +2 -2
  535. package/hooks/features/density/densityState.d.ts +1 -1
  536. package/hooks/features/density/useGridDensity.d.ts +4 -4
  537. package/hooks/features/dimensions/gridDimensionsSelectors.d.ts +1 -1
  538. package/hooks/features/dimensions/useGridDimensions.d.ts +5 -5
  539. package/hooks/features/editing/gridEditingSelectors.d.ts +3 -3
  540. package/hooks/features/editing/useGridCellEditable.d.ts +1 -1
  541. package/hooks/features/editing/useGridCellEditing.d.ts +3 -3
  542. package/hooks/features/editing/useGridEditing.d.ts +5 -5
  543. package/hooks/features/editing/useGridRowEditing.d.ts +3 -3
  544. package/hooks/features/editing/utils.d.ts +1 -1
  545. package/hooks/features/events/useGridEvents.d.ts +3 -3
  546. package/hooks/features/export/serializers/csvSerializer.d.ts +1 -1
  547. package/hooks/features/export/useGridCsvExport.d.ts +2 -2
  548. package/hooks/features/export/useGridPrintExport.d.ts +3 -3
  549. package/hooks/features/export/utils.d.ts +5 -5
  550. package/hooks/features/filter/gridFilterSelector.d.ts +3 -3
  551. package/hooks/features/filter/gridFilterState.d.ts +4 -4
  552. package/hooks/features/filter/gridFilterUtils.d.ts +4 -4
  553. package/hooks/features/filter/useGridFilter.d.ts +4 -4
  554. package/hooks/features/focus/gridFocusState.d.ts +1 -1
  555. package/hooks/features/focus/gridFocusStateSelector.d.ts +2 -2
  556. package/hooks/features/focus/useGridFocus.d.ts +4 -4
  557. package/hooks/features/focus/useGridFocus.js +39 -1
  558. package/hooks/features/headerFiltering/gridHeaderFilteringSelectors.d.ts +1 -1
  559. package/hooks/features/headerFiltering/useGridHeaderFiltering.d.ts +4 -4
  560. package/hooks/features/keyboardNavigation/useGridKeyboardNavigation.d.ts +3 -3
  561. package/hooks/features/keyboardNavigation/useGridKeyboardNavigation.js +3 -0
  562. package/hooks/features/keyboardNavigation/utils.d.ts +3 -3
  563. package/hooks/features/listView/gridListViewSelectors.d.ts +1 -1
  564. package/hooks/features/listView/useGridListView.d.ts +4 -4
  565. package/hooks/features/overlays/gridOverlaysInterfaces.d.ts +1 -1
  566. package/hooks/features/overlays/useGridOverlays.d.ts +3 -3
  567. package/hooks/features/pagination/gridPaginationInterfaces.d.ts +2 -2
  568. package/hooks/features/pagination/gridPaginationSelector.d.ts +2 -2
  569. package/hooks/features/pagination/gridPaginationUtils.d.ts +1 -1
  570. package/hooks/features/pagination/useGridPagination.d.ts +4 -4
  571. package/hooks/features/pagination/useGridPaginationMeta.d.ts +3 -3
  572. package/hooks/features/pagination/useGridPaginationModel.d.ts +5 -5
  573. package/hooks/features/pagination/useGridRowCount.d.ts +3 -3
  574. package/hooks/features/preferencesPanel/gridPreferencePanelSelector.d.ts +1 -1
  575. package/hooks/features/preferencesPanel/gridPreferencePanelState.d.ts +1 -1
  576. package/hooks/features/preferencesPanel/useGridPreferencesPanel.d.ts +4 -4
  577. package/hooks/features/rowReorder/gridRowReorderSelector.d.ts +1 -1
  578. package/hooks/features/rowSelection/gridRowSelectionSelector.d.ts +2 -2
  579. package/hooks/features/rowSelection/useGridRowSelection.d.ts +4 -4
  580. package/hooks/features/rowSelection/useGridRowSelectionPreProcessors.d.ts +3 -3
  581. package/hooks/features/rowSelection/utils.d.ts +3 -3
  582. package/hooks/features/rows/gridRowSpanningUtils.d.ts +1 -1
  583. package/hooks/features/rows/gridRowsInterfaces.d.ts +1 -1
  584. package/hooks/features/rows/gridRowsMetaInterfaces.d.ts +1 -1
  585. package/hooks/features/rows/gridRowsMetaSelector.d.ts +1 -1
  586. package/hooks/features/rows/gridRowsMetaState.d.ts +1 -1
  587. package/hooks/features/rows/gridRowsSelector.d.ts +2 -2
  588. package/hooks/features/rows/gridRowsUtils.d.ts +5 -5
  589. package/hooks/features/rows/useGridParamsApi.d.ts +3 -3
  590. package/hooks/features/rows/useGridParamsOverridableMethods.d.ts +2 -2
  591. package/hooks/features/rows/useGridRowAriaAttributes.d.ts +1 -1
  592. package/hooks/features/rows/useGridRowSpanning.d.ts +2 -2
  593. package/hooks/features/rows/useGridRows.d.ts +4 -4
  594. package/hooks/features/rows/useGridRowsMeta.d.ts +4 -4
  595. package/hooks/features/rows/useGridRowsOverridableMethods.d.ts +3 -3
  596. package/hooks/features/rows/useGridRowsPreProcessors.d.ts +2 -2
  597. package/hooks/features/scroll/useGridScroll.d.ts +3 -3
  598. package/hooks/features/scroll/useGridScroll.js +3 -3
  599. package/hooks/features/sorting/gridSortingSelector.d.ts +2 -2
  600. package/hooks/features/sorting/gridSortingState.d.ts +2 -2
  601. package/hooks/features/sorting/gridSortingUtils.d.ts +5 -5
  602. package/hooks/features/sorting/useGridSorting.d.ts +4 -4
  603. package/hooks/features/statePersistence/gridStatePersistenceInterface.d.ts +1 -1
  604. package/hooks/features/statePersistence/useGridStatePersistence.d.ts +2 -2
  605. package/hooks/features/virtualization/gridVirtualizationSelectors.d.ts +1 -1
  606. package/hooks/features/virtualization/useGridVirtualization.d.ts +5 -5
  607. package/hooks/utils/useGridApiContext.d.ts +3 -3
  608. package/hooks/utils/useGridApiMethod.d.ts +2 -2
  609. package/hooks/utils/useGridApiRef.d.ts +2 -2
  610. package/hooks/utils/useGridAriaAttributes.d.ts +1 -1
  611. package/hooks/utils/useGridConfiguration.d.ts +1 -1
  612. package/hooks/utils/useGridEvent.d.ts +3 -3
  613. package/hooks/utils/useGridInitializeState.d.ts +4 -4
  614. package/hooks/utils/useGridLogger.d.ts +3 -3
  615. package/hooks/utils/useGridNativeEventListener.d.ts +2 -2
  616. package/hooks/utils/useGridPrivateApiContext.d.ts +3 -3
  617. package/hooks/utils/useGridSelector.d.ts +1 -1
  618. package/hooks/utils/useGridVisibleRows.d.ts +2 -2
  619. package/index.d.ts +2 -2
  620. package/index.js +1 -1
  621. package/internals/index.d.ts +1 -1
  622. package/internals/index.js +14 -0
  623. package/internals/utils/attachPinnedStyle.d.ts +1 -1
  624. package/internals/utils/cache.d.ts +1 -1
  625. package/internals/utils/getPinnedCellOffset.d.ts +1 -1
  626. package/internals/utils/propValidation.d.ts +1 -1
  627. package/locales/arSD.d.ts +1 -1
  628. package/locales/arSD.js +6 -0
  629. package/locales/beBY.d.ts +1 -1
  630. package/locales/beBY.js +6 -0
  631. package/locales/bgBG.d.ts +1 -1
  632. package/locales/bgBG.js +6 -0
  633. package/locales/bnBD.d.ts +1 -1
  634. package/locales/bnBD.js +6 -0
  635. package/locales/caES.d.ts +1 -1
  636. package/locales/caES.js +6 -0
  637. package/locales/csCZ.d.ts +1 -1
  638. package/locales/csCZ.js +6 -0
  639. package/locales/daDK.d.ts +1 -1
  640. package/locales/daDK.js +6 -0
  641. package/locales/deDE.d.ts +1 -1
  642. package/locales/deDE.js +6 -0
  643. package/locales/elGR.d.ts +1 -1
  644. package/locales/elGR.js +6 -0
  645. package/locales/enUS.d.ts +1 -1
  646. package/locales/esES.d.ts +1 -1
  647. package/locales/esES.js +6 -0
  648. package/locales/faIR.d.ts +1 -1
  649. package/locales/faIR.js +6 -0
  650. package/locales/fiFI.d.ts +1 -1
  651. package/locales/fiFI.js +6 -0
  652. package/locales/frFR.d.ts +1 -1
  653. package/locales/frFR.js +6 -0
  654. package/locales/heIL.d.ts +1 -1
  655. package/locales/heIL.js +6 -0
  656. package/locales/hrHR.js +6 -0
  657. package/locales/huHU.d.ts +1 -1
  658. package/locales/huHU.js +6 -0
  659. package/locales/hyAM.d.ts +1 -1
  660. package/locales/hyAM.js +6 -0
  661. package/locales/idID.d.ts +2 -2
  662. package/locales/idID.js +6 -0
  663. package/locales/isIS.d.ts +1 -1
  664. package/locales/isIS.js +6 -0
  665. package/locales/itIT.d.ts +1 -1
  666. package/locales/itIT.js +6 -0
  667. package/locales/jaJP.d.ts +1 -1
  668. package/locales/jaJP.js +6 -0
  669. package/locales/koKR.d.ts +1 -1
  670. package/locales/koKR.js +6 -0
  671. package/locales/nbNO.d.ts +1 -1
  672. package/locales/nbNO.js +6 -0
  673. package/locales/nlNL.d.ts +1 -1
  674. package/locales/nlNL.js +6 -0
  675. package/locales/nnNO.d.ts +1 -1
  676. package/locales/nnNO.js +6 -0
  677. package/locales/plPL.d.ts +1 -1
  678. package/locales/plPL.js +6 -0
  679. package/locales/ptBR.d.ts +1 -1
  680. package/locales/ptBR.js +6 -0
  681. package/locales/ptPT.d.ts +1 -1
  682. package/locales/ptPT.js +6 -0
  683. package/locales/roRO.d.ts +1 -1
  684. package/locales/roRO.js +6 -0
  685. package/locales/ruRU.d.ts +1 -1
  686. package/locales/ruRU.js +6 -0
  687. package/locales/skSK.d.ts +1 -1
  688. package/locales/skSK.js +6 -0
  689. package/locales/svSE.d.ts +1 -1
  690. package/locales/svSE.js +6 -0
  691. package/locales/trTR.d.ts +1 -1
  692. package/locales/trTR.js +6 -0
  693. package/locales/ukUA.d.ts +1 -1
  694. package/locales/ukUA.js +6 -0
  695. package/locales/urPK.d.ts +1 -1
  696. package/locales/urPK.js +6 -0
  697. package/locales/viVN.d.ts +1 -1
  698. package/locales/viVN.js +6 -0
  699. package/locales/zhCN.d.ts +1 -1
  700. package/locales/zhCN.js +6 -0
  701. package/locales/zhHK.js +6 -0
  702. package/locales/zhTW.d.ts +1 -1
  703. package/locales/zhTW.js +6 -0
  704. package/material/augmentation.d.ts +4 -0
  705. package/material/icons/createSvgIcon.d.ts +1 -1
  706. package/material/icons/index.d.ts +5 -1
  707. package/material/icons/index.js +14 -2
  708. package/material/index.js +26 -9
  709. package/models/api/gridColumnApi.d.ts +1 -1
  710. package/models/api/gridColumnGroupingApi.d.ts +2 -2
  711. package/models/api/gridColumnSpanning.d.ts +3 -3
  712. package/models/api/gridCoreApi.d.ts +2 -2
  713. package/models/api/gridCsvExportApi.d.ts +1 -1
  714. package/models/api/gridDensityApi.d.ts +2 -2
  715. package/models/api/gridEditingApi.d.ts +6 -6
  716. package/models/api/gridFilterApi.d.ts +4 -4
  717. package/models/api/gridFocusApi.d.ts +3 -3
  718. package/models/api/gridHeaderFilteringApi.d.ts +2 -2
  719. package/models/api/gridLocaleTextApi.d.ts +5 -1
  720. package/models/api/gridLoggerApi.d.ts +1 -1
  721. package/models/api/gridParamsApi.d.ts +7 -7
  722. package/models/api/gridPreferencesPanelApi.d.ts +1 -1
  723. package/models/api/gridPrintExportApi.d.ts +1 -1
  724. package/models/api/gridRowApi.d.ts +1 -1
  725. package/models/api/gridRowSelectionApi.d.ts +1 -1
  726. package/models/api/gridRowsMetaApi.d.ts +2 -2
  727. package/models/api/gridScrollApi.d.ts +2 -2
  728. package/models/api/gridSortApi.d.ts +3 -3
  729. package/models/api/gridStateApi.d.ts +3 -3
  730. package/models/colDef/gridColDef.d.ts +13 -13
  731. package/models/colDef/gridColType.d.ts +1 -0
  732. package/models/colDef/gridColumnTypesRecord.d.ts +2 -2
  733. package/models/configuration/gridAggregationConfiguration.d.ts +2 -2
  734. package/models/configuration/gridCellEditableConfiguration.d.ts +4 -4
  735. package/models/configuration/gridConfiguration.d.ts +1 -1
  736. package/models/configuration/gridParamsConfiguration.d.ts +2 -2
  737. package/models/configuration/gridRowConfiguration.d.ts +4 -4
  738. package/models/controlStateItem.d.ts +1 -1
  739. package/models/events/gridEventLookup.d.ts +7 -7
  740. package/models/gridBaseSlots.d.ts +13 -0
  741. package/models/gridCell.d.ts +1 -1
  742. package/models/gridCellClass.d.ts +2 -2
  743. package/models/gridColumnGrouping.d.ts +1 -1
  744. package/models/gridColumnHeaderClass.d.ts +1 -1
  745. package/models/gridExport.d.ts +2 -2
  746. package/models/gridFilterInputComponent.d.ts +3 -3
  747. package/models/gridFilterItem.d.ts +1 -1
  748. package/models/gridFilterModel.d.ts +1 -1
  749. package/models/gridFilterOperator.d.ts +3 -3
  750. package/models/gridHeaderFilteringModel.d.ts +1 -1
  751. package/models/gridIconSlotsComponent.d.ts +22 -2
  752. package/models/gridRowSelectionModel.d.ts +1 -1
  753. package/models/gridSlotsComponent.d.ts +6 -1
  754. package/models/gridSlotsComponentsProps.d.ts +4 -2
  755. package/models/gridSortModel.d.ts +1 -1
  756. package/models/gridStateCommunity.d.ts +2 -2
  757. package/models/params/gridCellParams.d.ts +4 -4
  758. package/models/params/gridColumnGroupHeaderParams.d.ts +1 -1
  759. package/models/params/gridColumnHeaderParams.d.ts +1 -1
  760. package/models/params/gridEditCellParams.d.ts +2 -2
  761. package/models/params/gridPreferencePanelParams.d.ts +1 -1
  762. package/models/params/gridRowParams.d.ts +1 -1
  763. package/models/params/gridRowSelectionCheckboxParams.d.ts +1 -1
  764. package/models/params/gridValueOptionsParams.d.ts +1 -1
  765. package/models/props/DataGridProps.d.ts +25 -26
  766. package/package.json +3 -3
  767. package/themeAugmentation/overrides.d.ts +1 -1
  768. package/themeAugmentation/props.d.ts +2 -2
  769. package/utils/assert.d.ts +1 -1
  770. package/utils/cleanupTracking/FinalizationRegistryBasedCleanupTracking.d.ts +1 -1
  771. package/utils/cleanupTracking/TimerBasedCleanupTracking.d.ts +1 -1
  772. package/utils/createSelector.d.ts +2 -2
  773. package/utils/exportAs.d.ts +1 -1
  774. package/utils/getPublicApiRef.d.ts +1 -1
  775. package/utils/keyboardUtils.d.ts +4 -2
  776. package/utils/keyboardUtils.js +8 -0
@@ -13,6 +13,9 @@ const hrHRGrid = {
13
13
  toolbarDensityCompact: 'Kompaktno',
14
14
  toolbarDensityStandard: 'Standardno',
15
15
  toolbarDensityComfortable: 'Udobno',
16
+ // Undo/redo toolbar button text
17
+ toolbarUndo: 'Poništi',
18
+ toolbarRedo: 'Ponovi',
16
19
  // Columns selector toolbar button text
17
20
  toolbarColumns: 'Stupci',
18
21
  toolbarColumnsLabel: 'Odaberite stupce',
@@ -162,6 +165,9 @@ const hrHRGrid = {
162
165
  // Boolean cell text
163
166
  booleanCellTrueLabel: 'Da',
164
167
  booleanCellFalseLabel: 'Ne',
168
+ // Long text cell
169
+ longTextCellExpandLabel: 'Proširiti',
170
+ longTextCellCollapseLabel: 'Skupiti',
165
171
  // Actions cell more text
166
172
  actionsCellMore: 'više',
167
173
  // Column pinning text
@@ -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;
@@ -13,6 +13,9 @@ const huHUGrid = {
13
13
  toolbarDensityCompact: 'Kompakt',
14
14
  toolbarDensityStandard: 'Normál',
15
15
  toolbarDensityComfortable: 'Kényelmes',
16
+ // Undo/redo toolbar button text
17
+ toolbarUndo: 'Visszavonás',
18
+ toolbarRedo: 'Újra',
16
19
  // Columns selector toolbar button text
17
20
  toolbarColumns: 'Oszlopok',
18
21
  toolbarColumnsLabel: 'Oszlopok kiválasztása',
@@ -139,6 +142,9 @@ const huHUGrid = {
139
142
  // Boolean cell text
140
143
  booleanCellTrueLabel: 'igen',
141
144
  booleanCellFalseLabel: 'nem',
145
+ // Long text cell
146
+ longTextCellExpandLabel: 'Kibontás',
147
+ longTextCellCollapseLabel: 'Összecsukás',
142
148
  // Actions cell more text
143
149
  actionsCellMore: 'további',
144
150
  // Column pinning text
@@ -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;
@@ -13,6 +13,9 @@ const hyAMGrid = {
13
13
  toolbarDensityCompact: 'Կոմպակտ',
14
14
  toolbarDensityStandard: 'Ստանդարտ',
15
15
  toolbarDensityComfortable: 'Հարմարավետ',
16
+ // Undo/redo toolbar button text
17
+ toolbarUndo: 'Հետսարկել',
18
+ toolbarRedo: 'Կրկնվել',
16
19
  // Columns selector toolbar button text
17
20
  toolbarColumns: 'Սյունակներ',
18
21
  toolbarColumnsLabel: 'Ընտրել սյունակներ',
@@ -164,6 +167,9 @@ const hyAMGrid = {
164
167
  // Boolean cell text
165
168
  booleanCellTrueLabel: 'այո',
166
169
  booleanCellFalseLabel: 'ոչ',
170
+ // Long text cell
171
+ longTextCellExpandLabel: 'Բացել',
172
+ longTextCellCollapseLabel: 'Փակել',
167
173
  // Actions cell more text
168
174
  actionsCellMore: 'ավելին',
169
175
  // Column pinning text
@@ -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;
@@ -12,6 +12,9 @@ export const idIDGrid = {
12
12
  toolbarDensityCompact: 'Ringkas',
13
13
  toolbarDensityStandard: 'Standar',
14
14
  toolbarDensityComfortable: 'Nyaman',
15
+ // Undo/redo toolbar button text
16
+ toolbarUndo: 'Urungkan',
17
+ toolbarRedo: 'Ulangi',
15
18
  // Columns selector toolbar button text
16
19
  toolbarColumns: 'Kolom',
17
20
  toolbarColumnsLabel: 'Pilih kolom',
@@ -136,6 +139,9 @@ export const idIDGrid = {
136
139
  // Boolean cell text
137
140
  booleanCellTrueLabel: 'ya',
138
141
  booleanCellFalseLabel: 'tidak',
142
+ // Long text cell
143
+ longTextCellExpandLabel: 'Perluas',
144
+ longTextCellCollapseLabel: 'Ciutkan',
139
145
  // Actions cell more text
140
146
  actionsCellMore: 'lainnya',
141
147
  // Column pinning text
@@ -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;
@@ -13,6 +13,9 @@ const isISGrid = {
13
13
  toolbarDensityCompact: 'Þétt',
14
14
  toolbarDensityStandard: 'Staðlað',
15
15
  toolbarDensityComfortable: 'Rúmlegt',
16
+ // Undo/redo toolbar button text
17
+ toolbarUndo: 'Afturkalla',
18
+ toolbarRedo: 'Endurgera',
16
19
  // Columns selector toolbar button text
17
20
  toolbarColumns: 'Dálkar',
18
21
  toolbarColumnsLabel: 'Veldu dálka',
@@ -141,6 +144,9 @@ const isISGrid = {
141
144
  // Boolean cell text
142
145
  booleanCellTrueLabel: 'já',
143
146
  booleanCellFalseLabel: 'nei',
147
+ // Long text cell
148
+ longTextCellExpandLabel: 'Stækka',
149
+ longTextCellCollapseLabel: 'Minnka',
144
150
  // Actions cell more text
145
151
  actionsCellMore: 'meira',
146
152
  // Column pinning text
@@ -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;
@@ -12,6 +12,9 @@ const itITGrid = {
12
12
  toolbarDensityCompact: 'Compatta',
13
13
  toolbarDensityStandard: 'Standard',
14
14
  toolbarDensityComfortable: 'Comoda',
15
+ // Undo/redo toolbar button text
16
+ toolbarUndo: 'Annulla',
17
+ toolbarRedo: 'Ripeti',
15
18
  // Columns selector toolbar button text
16
19
  toolbarColumns: 'Colonne',
17
20
  toolbarColumnsLabel: 'Seleziona le colonne',
@@ -135,6 +138,9 @@ const itITGrid = {
135
138
  // Boolean cell text
136
139
  booleanCellTrueLabel: 'vero',
137
140
  booleanCellFalseLabel: 'falso',
141
+ // Long text cell
142
+ longTextCellExpandLabel: 'Espandi',
143
+ longTextCellCollapseLabel: 'Comprimi',
138
144
  // Actions cell more text
139
145
  actionsCellMore: 'più',
140
146
  // Column pinning text
@@ -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;
@@ -13,6 +13,9 @@ const jaJPGrid = {
13
13
  toolbarDensityCompact: 'コンパクト',
14
14
  toolbarDensityStandard: '標準',
15
15
  toolbarDensityComfortable: '広め',
16
+ // Undo/redo toolbar button text
17
+ toolbarUndo: '元に戻す',
18
+ toolbarRedo: 'やり直す',
16
19
  // Columns selector toolbar button text
17
20
  toolbarColumns: '列一覧',
18
21
  toolbarColumnsLabel: '列選択',
@@ -139,6 +142,9 @@ const jaJPGrid = {
139
142
  // Boolean cell text
140
143
  booleanCellTrueLabel: '真',
141
144
  booleanCellFalseLabel: '偽',
145
+ // Long text cell
146
+ longTextCellExpandLabel: '展開',
147
+ longTextCellCollapseLabel: '折りたたみ',
142
148
  // Actions cell more text
143
149
  actionsCellMore: 'もっと見る',
144
150
  // Column pinning text
@@ -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;
@@ -12,6 +12,9 @@ const koKRGrid = {
12
12
  toolbarDensityCompact: '좁게',
13
13
  toolbarDensityStandard: '기본',
14
14
  toolbarDensityComfortable: '넓게',
15
+ // Undo/redo toolbar button text
16
+ toolbarUndo: '실행 취소',
17
+ toolbarRedo: '다시 실행',
15
18
  // Columns selector toolbar button text
16
19
  toolbarColumns: '열 목록',
17
20
  toolbarColumnsLabel: '열 선택',
@@ -136,6 +139,9 @@ const koKRGrid = {
136
139
  // Boolean cell text
137
140
  booleanCellTrueLabel: '참',
138
141
  booleanCellFalseLabel: '거짓',
142
+ // Long text cell
143
+ longTextCellExpandLabel: '열기',
144
+ longTextCellCollapseLabel: '접기',
139
145
  // Actions cell more text
140
146
  actionsCellMore: '더보기',
141
147
  // Column pinning text
@@ -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;
@@ -13,6 +13,9 @@ const nbNOGrid = {
13
13
  toolbarDensityCompact: 'Kompakt',
14
14
  toolbarDensityStandard: 'Standard',
15
15
  toolbarDensityComfortable: 'Komfortabelt',
16
+ // Undo/redo toolbar button text
17
+ toolbarUndo: 'Angre',
18
+ toolbarRedo: 'Gjør om',
16
19
  // Columns selector toolbar button text
17
20
  toolbarColumns: 'Kolonner',
18
21
  toolbarColumnsLabel: 'Velg kolonner',
@@ -139,6 +142,9 @@ const nbNOGrid = {
139
142
  // Boolean cell text
140
143
  booleanCellTrueLabel: 'sant',
141
144
  booleanCellFalseLabel: 'usant',
145
+ // Long text cell
146
+ longTextCellExpandLabel: 'Utvid',
147
+ longTextCellCollapseLabel: 'Kollaps',
142
148
  // Actions cell more text
143
149
  actionsCellMore: 'mer',
144
150
  // Column pinning text
@@ -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;
@@ -13,6 +13,9 @@ const nlNLGrid = {
13
13
  toolbarDensityCompact: 'Compact',
14
14
  toolbarDensityStandard: 'Normaal',
15
15
  toolbarDensityComfortable: 'Breed',
16
+ // Undo/redo toolbar button text
17
+ toolbarUndo: 'Ongedaan maken',
18
+ toolbarRedo: 'Opnieuw',
16
19
  // Columns selector toolbar button text
17
20
  toolbarColumns: 'Kolommen',
18
21
  toolbarColumnsLabel: 'Kies kolommen',
@@ -140,6 +143,9 @@ const nlNLGrid = {
140
143
  // Boolean cell text
141
144
  booleanCellTrueLabel: 'waar',
142
145
  booleanCellFalseLabel: 'onwaar',
146
+ // Long text cell
147
+ longTextCellExpandLabel: 'Uitklappen',
148
+ longTextCellCollapseLabel: 'Inklappen',
143
149
  // Actions cell more text
144
150
  actionsCellMore: 'meer',
145
151
  // Column pinning text
@@ -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;
@@ -12,6 +12,9 @@ const nnNOGrid = {
12
12
  toolbarDensityCompact: 'Kompakt',
13
13
  toolbarDensityStandard: 'Standard',
14
14
  toolbarDensityComfortable: 'Komfortabelt',
15
+ // Undo/redo toolbar button text
16
+ toolbarUndo: 'Angre',
17
+ toolbarRedo: 'Gjer om',
15
18
  // Columns selector toolbar button text
16
19
  toolbarColumns: 'Kolonner',
17
20
  toolbarColumnsLabel: 'Vel kolonner',
@@ -136,6 +139,9 @@ const nnNOGrid = {
136
139
  // Boolean cell text
137
140
  booleanCellTrueLabel: 'sant',
138
141
  booleanCellFalseLabel: 'usant',
142
+ // Long text cell
143
+ longTextCellExpandLabel: 'Vis',
144
+ longTextCellCollapseLabel: 'Gøym',
139
145
  // Actions cell more text
140
146
  actionsCellMore: 'meir',
141
147
  // Column pinning text
@@ -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;
@@ -13,6 +13,9 @@ const plPLGrid = {
13
13
  toolbarDensityCompact: 'Kompakt',
14
14
  toolbarDensityStandard: 'Standard',
15
15
  toolbarDensityComfortable: 'Komfort',
16
+ // Undo/redo toolbar button text
17
+ toolbarUndo: 'Cofnij',
18
+ toolbarRedo: 'Ponów',
16
19
  // Columns selector toolbar button text
17
20
  toolbarColumns: 'Kolumny',
18
21
  toolbarColumnsLabel: 'Zaznacz kolumny',
@@ -138,6 +141,9 @@ const plPLGrid = {
138
141
  // Boolean cell text
139
142
  booleanCellTrueLabel: 'tak',
140
143
  booleanCellFalseLabel: 'nie',
144
+ // Long text cell
145
+ longTextCellExpandLabel: 'Rozwiń',
146
+ longTextCellCollapseLabel: 'Zwiń',
141
147
  // Actions cell more text
142
148
  actionsCellMore: 'więcej',
143
149
  // Column pinning text
@@ -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;
@@ -12,6 +12,9 @@ const ptBRGrid = {
12
12
  toolbarDensityCompact: 'Compacto',
13
13
  toolbarDensityStandard: 'Padrão',
14
14
  toolbarDensityComfortable: 'Confortável',
15
+ // Undo/redo toolbar button text
16
+ toolbarUndo: 'Desfazer',
17
+ toolbarRedo: 'Refazer',
15
18
  // Columns selector toolbar button text
16
19
  toolbarColumns: 'Colunas',
17
20
  toolbarColumnsLabel: 'Exibir seletor de colunas',
@@ -134,6 +137,9 @@ const ptBRGrid = {
134
137
  // Boolean cell text
135
138
  booleanCellTrueLabel: 'sim',
136
139
  booleanCellFalseLabel: 'não',
140
+ // Long text cell
141
+ longTextCellExpandLabel: 'Expandir',
142
+ longTextCellCollapseLabel: 'Recolher',
137
143
  // Actions cell more text
138
144
  actionsCellMore: 'mais',
139
145
  // Column pinning text
@@ -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;
@@ -12,6 +12,9 @@ const ptPTGrid = {
12
12
  toolbarDensityCompact: 'Compacto',
13
13
  toolbarDensityStandard: 'Padrão',
14
14
  toolbarDensityComfortable: 'Confortável',
15
+ // Undo/redo toolbar button text
16
+ toolbarUndo: 'Anular',
17
+ toolbarRedo: 'Refazer',
15
18
  // Columns selector toolbar button text
16
19
  toolbarColumns: 'Colunas',
17
20
  toolbarColumnsLabel: 'Selecione colunas',
@@ -134,6 +137,9 @@ const ptPTGrid = {
134
137
  // Boolean cell text
135
138
  booleanCellTrueLabel: 'sim',
136
139
  booleanCellFalseLabel: 'não',
140
+ // Long text cell
141
+ longTextCellExpandLabel: 'Expandir',
142
+ longTextCellCollapseLabel: 'Colapsar',
137
143
  // Actions cell more text
138
144
  actionsCellMore: 'mais',
139
145
  // Column pinning text
@@ -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;
@@ -13,6 +13,9 @@ const roROGrid = {
13
13
  toolbarDensityCompact: 'Compact',
14
14
  toolbarDensityStandard: 'Standard',
15
15
  toolbarDensityComfortable: 'Lat',
16
+ // Undo/redo toolbar button text
17
+ toolbarUndo: 'Anulează',
18
+ toolbarRedo: 'Refă',
16
19
  // Columns selector toolbar button text
17
20
  toolbarColumns: 'Coloane',
18
21
  toolbarColumnsLabel: 'Afișează selecție coloane',
@@ -140,6 +143,9 @@ const roROGrid = {
140
143
  // Boolean cell text
141
144
  booleanCellTrueLabel: 'Da',
142
145
  booleanCellFalseLabel: 'Nu',
146
+ // Long text cell
147
+ longTextCellExpandLabel: 'Extindere',
148
+ longTextCellCollapseLabel: 'Restrângere',
143
149
  // Actions cell more text
144
150
  actionsCellMore: 'Mai multe',
145
151
  // Column pinning text
@@ -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;
@@ -24,6 +24,9 @@ const ruRUGrid = {
24
24
  toolbarDensityCompact: 'Компактная',
25
25
  toolbarDensityStandard: 'Стандартная',
26
26
  toolbarDensityComfortable: 'Комфортная',
27
+ // Undo/redo toolbar button text
28
+ toolbarUndo: 'Отменить',
29
+ toolbarRedo: 'Повторить',
27
30
  // Columns selector toolbar button text
28
31
  toolbarColumns: 'Столбцы',
29
32
  toolbarColumnsLabel: 'Выделите столбцы',
@@ -162,6 +165,9 @@ const ruRUGrid = {
162
165
  // Boolean cell text
163
166
  booleanCellTrueLabel: 'истина',
164
167
  booleanCellFalseLabel: 'ложь',
168
+ // Long text cell
169
+ longTextCellExpandLabel: 'Развернуть',
170
+ longTextCellCollapseLabel: 'Свернуть',
165
171
  // Actions cell more text
166
172
  actionsCellMore: 'ещё',
167
173
  // Column pinning text
@@ -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;
@@ -13,6 +13,9 @@ const skSKGrid = {
13
13
  toolbarDensityCompact: 'Kompaktná',
14
14
  toolbarDensityStandard: 'Štandartná',
15
15
  toolbarDensityComfortable: 'Komfortná',
16
+ // Undo/redo toolbar button text
17
+ toolbarUndo: 'Späť',
18
+ toolbarRedo: 'Znova',
16
19
  // Columns selector toolbar button text
17
20
  toolbarColumns: 'Stĺpce',
18
21
  toolbarColumnsLabel: 'Vybrať stĺpce',
@@ -168,6 +171,9 @@ const skSKGrid = {
168
171
  // Boolean cell text
169
172
  booleanCellTrueLabel: 'áno',
170
173
  booleanCellFalseLabel: 'nie',
174
+ // Long text cell
175
+ longTextCellExpandLabel: 'Rozbaliť',
176
+ longTextCellCollapseLabel: 'Zbaliť',
171
177
  // Actions cell more text
172
178
  actionsCellMore: 'viac',
173
179
  // Column pinning text
@@ -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;
@@ -13,6 +13,9 @@ const svSEGrid = {
13
13
  toolbarDensityCompact: 'Kompakt',
14
14
  toolbarDensityStandard: 'Standard',
15
15
  toolbarDensityComfortable: 'Luftig',
16
+ // Undo/redo toolbar button text
17
+ toolbarUndo: 'Ångra',
18
+ toolbarRedo: 'Gör om',
16
19
  // Columns selector toolbar button text
17
20
  toolbarColumns: 'Kolumner',
18
21
  toolbarColumnsLabel: 'Välj kolumner',
@@ -141,6 +144,9 @@ const svSEGrid = {
141
144
  // Boolean cell text
142
145
  booleanCellTrueLabel: 'ja',
143
146
  booleanCellFalseLabel: 'nej',
147
+ // Long text cell
148
+ longTextCellExpandLabel: 'Expandera',
149
+ longTextCellCollapseLabel: 'Kollapsa',
144
150
  // Actions cell more text
145
151
  actionsCellMore: 'mer',
146
152
  // Column pinning text
@@ -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;
@@ -13,6 +13,9 @@ const trTRGrid = {
13
13
  toolbarDensityCompact: 'Sıkı',
14
14
  toolbarDensityStandard: 'Standart',
15
15
  toolbarDensityComfortable: 'Rahat',
16
+ // Undo/redo toolbar button text
17
+ toolbarUndo: 'Geri al',
18
+ toolbarRedo: 'Yinele',
16
19
  // Columns selector toolbar button text
17
20
  toolbarColumns: 'Sütunlar',
18
21
  toolbarColumnsLabel: 'Sütun seç',
@@ -140,6 +143,9 @@ const trTRGrid = {
140
143
  // Boolean cell text
141
144
  booleanCellTrueLabel: 'Evet',
142
145
  booleanCellFalseLabel: 'Hayır',
146
+ // Long text cell
147
+ longTextCellExpandLabel: 'Genişlet',
148
+ longTextCellCollapseLabel: 'Gizle',
143
149
  // Actions cell more text
144
150
  actionsCellMore: 'daha fazla',
145
151
  // Column pinning text
@@ -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;
@@ -24,6 +24,9 @@ const ukUAGrid = {
24
24
  toolbarDensityCompact: 'Компактний',
25
25
  toolbarDensityStandard: 'Стандартний',
26
26
  toolbarDensityComfortable: 'Комфортний',
27
+ // Undo/redo toolbar button text
28
+ toolbarUndo: 'Скасувати',
29
+ toolbarRedo: 'Повторити',
27
30
  // Columns selector toolbar button text
28
31
  toolbarColumns: 'Стовпці',
29
32
  toolbarColumnsLabel: 'Виділіть стовпці',
@@ -162,6 +165,9 @@ const ukUAGrid = {
162
165
  // Boolean cell text
163
166
  booleanCellTrueLabel: 'так',
164
167
  booleanCellFalseLabel: 'ні',
168
+ // Long text cell
169
+ longTextCellExpandLabel: 'Показати',
170
+ longTextCellCollapseLabel: 'Приховати',
165
171
  // Actions cell more text
166
172
  actionsCellMore: 'більше',
167
173
  // Column pinning text
@@ -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;
@@ -13,6 +13,9 @@ const urPKGrid = {
13
13
  toolbarDensityCompact: 'تنگ',
14
14
  toolbarDensityStandard: 'درمیانہ',
15
15
  toolbarDensityComfortable: 'مناسب',
16
+ // Undo/redo toolbar button text
17
+ toolbarUndo: 'واپس',
18
+ toolbarRedo: 'دوبارہ',
16
19
  // Columns selector toolbar button text
17
20
  toolbarColumns: 'کالمز',
18
21
  toolbarColumnsLabel: 'کالمز کو منتخب کریں',
@@ -140,6 +143,9 @@ const urPKGrid = {
140
143
  // Boolean cell text
141
144
  booleanCellTrueLabel: 'ہاں',
142
145
  booleanCellFalseLabel: 'نہیں',
146
+ // Long text cell
147
+ longTextCellExpandLabel: 'پھیلائیں',
148
+ longTextCellCollapseLabel: 'تنگ کریں',
143
149
  // Actions cell more text
144
150
  actionsCellMore: 'ذیادہ',
145
151
  // Column pinning text
@@ -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;
@@ -13,6 +13,9 @@ const viVNGrid = {
13
13
  toolbarDensityCompact: 'Trung bình',
14
14
  toolbarDensityStandard: 'Tiêu chuẩn',
15
15
  toolbarDensityComfortable: 'Rộng',
16
+ // Undo/redo toolbar button text
17
+ toolbarUndo: 'Hoàn tác',
18
+ toolbarRedo: 'Làm lại',
16
19
  // Columns selector toolbar button text
17
20
  toolbarColumns: 'Cột',
18
21
  toolbarColumnsLabel: 'Chọn cột',
@@ -141,6 +144,9 @@ const viVNGrid = {
141
144
  // Boolean cell text
142
145
  booleanCellTrueLabel: 'Có',
143
146
  booleanCellFalseLabel: 'Không',
147
+ // Long text cell
148
+ longTextCellExpandLabel: 'Mở rộng',
149
+ longTextCellCollapseLabel: 'Thu nhỏ',
144
150
  // Actions cell more text
145
151
  actionsCellMore: 'Thêm',
146
152
  // Column pinning text
@@ -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;
@@ -13,6 +13,9 @@ const zhCNGrid = {
13
13
  toolbarDensityCompact: '紧密',
14
14
  toolbarDensityStandard: '标准',
15
15
  toolbarDensityComfortable: '稀疏',
16
+ // Undo/redo toolbar button text
17
+ toolbarUndo: '撤销',
18
+ toolbarRedo: '重做',
16
19
  // Columns selector toolbar button text
17
20
  toolbarColumns: '列',
18
21
  toolbarColumnsLabel: '选择列',
@@ -139,6 +142,9 @@ const zhCNGrid = {
139
142
  // Boolean cell text
140
143
  booleanCellTrueLabel: '真',
141
144
  booleanCellFalseLabel: '假',
145
+ // Long text cell
146
+ longTextCellExpandLabel: '显示',
147
+ longTextCellCollapseLabel: '折叠',
142
148
  // Actions cell more text
143
149
  actionsCellMore: '更多',
144
150
  // Column pinning text
@@ -13,6 +13,9 @@ const zhHKGrid = {
13
13
  toolbarDensityCompact: '袖珍的',
14
14
  toolbarDensityStandard: '標準',
15
15
  toolbarDensityComfortable: '舒服的',
16
+ // Undo/redo toolbar button text
17
+ toolbarUndo: '復原',
18
+ toolbarRedo: '重做',
16
19
  // Columns selector toolbar button text
17
20
  toolbarColumns: '列',
18
21
  toolbarColumnsLabel: '選擇列',
@@ -139,6 +142,9 @@ const zhHKGrid = {
139
142
  // Boolean cell text
140
143
  booleanCellTrueLabel: '是的',
141
144
  booleanCellFalseLabel: '不',
145
+ // Long text cell
146
+ longTextCellExpandLabel: '擴張',
147
+ longTextCellCollapseLabel: '坍塌',
142
148
  // Actions cell more text
143
149
  actionsCellMore: '更多的',
144
150
  // Column pinning text
@@ -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;
@@ -13,6 +13,9 @@ const zhTWGrid = {
13
13
  toolbarDensityCompact: '緊湊',
14
14
  toolbarDensityStandard: '標準',
15
15
  toolbarDensityComfortable: '舒適',
16
+ // Undo/redo toolbar button text
17
+ toolbarUndo: '復原',
18
+ toolbarRedo: '重做',
16
19
  // Columns selector toolbar button text
17
20
  toolbarColumns: '欄位',
18
21
  toolbarColumnsLabel: '選擇欄位',
@@ -139,6 +142,9 @@ const zhTWGrid = {
139
142
  // Boolean cell text
140
143
  booleanCellTrueLabel: '真',
141
144
  booleanCellFalseLabel: '假',
145
+ // Long text cell
146
+ longTextCellExpandLabel: '展開',
147
+ longTextCellCollapseLabel: '摺疊',
142
148
  // Actions cell more text
143
149
  actionsCellMore: '查看更多',
144
150
  // Column pinning text