@mui/x-data-grid 5.6.1 → 5.7.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 (778) hide show
  1. package/CHANGELOG.md +71 -1
  2. package/DataGrid/DataGrid.js +10 -0
  3. package/DataGrid/useDataGridComponent.js +8 -2
  4. package/components/ErrorOverlay.js +8 -1
  5. package/components/GridLoadingOverlay.d.ts +4 -2
  6. package/components/GridLoadingOverlay.js +11 -2
  7. package/components/GridNoResultsOverlay.d.ts +3 -2
  8. package/components/GridNoRowsOverlay.d.ts +4 -2
  9. package/components/GridNoRowsOverlay.js +11 -2
  10. package/components/base/GridErrorHandler.js +6 -25
  11. package/components/cell/GridEditBooleanCell.js +1 -1
  12. package/components/cell/GridEditDateCell.js +1 -1
  13. package/components/cell/GridEditInputCell.js +66 -5
  14. package/components/cell/GridEditSingleSelectCell.js +76 -4
  15. package/components/columnHeaders/GridColumnHeaderTitle.d.ts +2 -2
  16. package/components/columnHeaders/GridColumnHeaderTitle.js +1 -1
  17. package/components/columnHeaders/GridColumnHeaders.js +3 -1
  18. package/components/containers/GridOverlay.d.ts +9 -2
  19. package/components/containers/GridOverlay.js +11 -2
  20. package/components/containers/GridRootStyles.js +2 -2
  21. package/components/panel/GridColumnsPanel.d.ts +4 -1
  22. package/components/panel/GridColumnsPanel.js +3 -3
  23. package/components/panel/GridPanelWrapper.d.ts +1 -1
  24. package/components/panel/GridPreferencesPanel.js +4 -6
  25. package/hooks/core/preProcessing/gridPreProcessingApi.d.ts +11 -15
  26. package/hooks/core/preProcessing/useGridPreProcessing.d.ts +3 -0
  27. package/hooks/core/preProcessing/useGridPreProcessing.js +5 -1
  28. package/hooks/core/preProcessing/useGridRegisterPreProcessor.d.ts +5 -2
  29. package/hooks/core/preProcessing/useGridRegisterPreProcessor.js +4 -0
  30. package/hooks/core/strategyProcessing/gridStrategyProcessingApi.d.ts +58 -0
  31. package/hooks/core/{rowGroupsPreProcessing/gridRowGroupsPreProcessingApi.js → strategyProcessing/gridStrategyProcessingApi.js} +0 -0
  32. package/hooks/core/strategyProcessing/index.d.ts +3 -0
  33. package/hooks/core/strategyProcessing/index.js +3 -0
  34. package/hooks/core/strategyProcessing/useGridRegisterStrategyProcessor.d.ts +4 -0
  35. package/hooks/core/strategyProcessing/useGridRegisterStrategyProcessor.js +18 -0
  36. package/hooks/core/strategyProcessing/useGridStrategyProcessing.d.ts +37 -0
  37. package/hooks/core/strategyProcessing/useGridStrategyProcessing.js +114 -0
  38. package/hooks/core/useGridInitialization.js +2 -2
  39. package/hooks/features/columns/gridColumnsInterfaces.d.ts +6 -1
  40. package/hooks/features/columns/gridColumnsUtils.d.ts +12 -4
  41. package/hooks/features/columns/gridColumnsUtils.js +113 -29
  42. package/hooks/features/columns/useGridColumns.d.ts +1 -1
  43. package/hooks/features/columns/useGridColumns.js +79 -42
  44. package/hooks/features/editRows/useGridCellEditing.new.d.ts +4 -0
  45. package/hooks/features/editRows/useGridCellEditing.new.js +315 -0
  46. package/hooks/features/editRows/{useGridCellEditing.d.ts → useGridCellEditing.old.d.ts} +0 -0
  47. package/hooks/features/editRows/{useGridCellEditing.js → useGridCellEditing.old.js} +1 -1
  48. package/hooks/features/editRows/useGridEditing.new.d.ts +6 -0
  49. package/hooks/features/editRows/useGridEditing.new.js +118 -0
  50. package/hooks/features/editRows/{useGridEditing.d.ts → useGridEditing.old.d.ts} +0 -0
  51. package/hooks/features/editRows/{useGridEditing.js → useGridEditing.old.js} +4 -4
  52. package/hooks/features/editRows/useGridRowEditing.new.d.ts +4 -0
  53. package/hooks/features/editRows/useGridRowEditing.new.js +486 -0
  54. package/hooks/features/editRows/{useGridRowEditing.d.ts → useGridRowEditing.old.d.ts} +0 -0
  55. package/hooks/features/editRows/{useGridRowEditing.js → useGridRowEditing.old.js} +7 -7
  56. package/hooks/features/filter/gridFilterState.d.ts +2 -5
  57. package/hooks/features/filter/useGridFilter.d.ts +1 -1
  58. package/hooks/features/filter/useGridFilter.js +21 -27
  59. package/hooks/features/focus/useGridFocus.d.ts +1 -1
  60. package/hooks/features/focus/useGridFocus.js +37 -1
  61. package/hooks/features/preferencesPanel/gridPreferencePanelState.d.ts +5 -0
  62. package/hooks/features/rows/gridRowsState.d.ts +20 -5
  63. package/hooks/features/rows/useGridRows.d.ts +0 -3
  64. package/hooks/features/rows/useGridRows.js +63 -42
  65. package/hooks/features/rows/useGridRowsPreProcessors.d.ts +3 -0
  66. package/hooks/features/rows/useGridRowsPreProcessors.js +37 -0
  67. package/hooks/features/selection/useGridSelection.js +4 -0
  68. package/hooks/features/sorting/gridSortingState.d.ts +2 -5
  69. package/hooks/features/sorting/useGridSorting.js +7 -26
  70. package/hooks/features/virtualization/useGridVirtualScroller.js +5 -3
  71. package/index.js +1 -1
  72. package/internals/index.d.ts +10 -7
  73. package/internals/index.js +4 -3
  74. package/legacy/DataGrid/DataGrid.js +10 -0
  75. package/legacy/DataGrid/useDataGridComponent.js +8 -2
  76. package/legacy/components/ErrorOverlay.js +8 -1
  77. package/legacy/components/GridLoadingOverlay.js +11 -2
  78. package/legacy/components/GridNoRowsOverlay.js +11 -2
  79. package/legacy/components/base/GridErrorHandler.js +3 -24
  80. package/legacy/components/cell/GridEditBooleanCell.js +2 -1
  81. package/legacy/components/cell/GridEditDateCell.js +2 -1
  82. package/legacy/components/cell/GridEditInputCell.js +66 -5
  83. package/legacy/components/cell/GridEditSingleSelectCell.js +83 -7
  84. package/legacy/components/columnHeaders/GridColumnHeaderTitle.js +1 -1
  85. package/legacy/components/columnHeaders/GridColumnHeaders.js +3 -1
  86. package/legacy/components/containers/GridOverlay.js +11 -2
  87. package/legacy/components/containers/GridRootStyles.js +2 -2
  88. package/legacy/components/panel/GridColumnsPanel.js +3 -3
  89. package/legacy/components/panel/GridPreferencesPanel.js +4 -6
  90. package/legacy/hooks/core/preProcessing/useGridPreProcessing.js +5 -1
  91. package/legacy/hooks/core/preProcessing/useGridRegisterPreProcessor.js +4 -0
  92. package/legacy/hooks/core/{rowGroupsPreProcessing/gridRowGroupsPreProcessingApi.js → strategyProcessing/gridStrategyProcessingApi.js} +0 -0
  93. package/legacy/hooks/core/strategyProcessing/index.js +3 -0
  94. package/legacy/hooks/core/strategyProcessing/useGridRegisterStrategyProcessor.js +18 -0
  95. package/legacy/hooks/core/strategyProcessing/useGridStrategyProcessing.js +119 -0
  96. package/legacy/hooks/core/useGridInitialization.js +2 -2
  97. package/legacy/hooks/features/columns/gridColumnsUtils.js +117 -27
  98. package/legacy/hooks/features/columns/useGridColumns.js +80 -43
  99. package/legacy/hooks/features/editRows/useGridCellEditing.new.js +329 -0
  100. package/legacy/hooks/features/editRows/{useGridCellEditing.js → useGridCellEditing.old.js} +1 -1
  101. package/legacy/hooks/features/editRows/useGridEditing.new.js +152 -0
  102. package/legacy/hooks/features/editRows/{useGridEditing.js → useGridEditing.old.js} +4 -4
  103. package/legacy/hooks/features/editRows/useGridRowEditing.new.js +493 -0
  104. package/legacy/hooks/features/editRows/{useGridRowEditing.js → useGridRowEditing.old.js} +7 -7
  105. package/legacy/hooks/features/filter/useGridFilter.js +21 -27
  106. package/legacy/hooks/features/focus/useGridFocus.js +37 -1
  107. package/legacy/hooks/features/rows/useGridRows.js +65 -44
  108. package/legacy/hooks/features/rows/useGridRowsPreProcessors.js +36 -0
  109. package/legacy/hooks/features/selection/useGridSelection.js +4 -0
  110. package/legacy/hooks/features/sorting/useGridSorting.js +7 -26
  111. package/legacy/hooks/features/virtualization/useGridVirtualScroller.js +5 -3
  112. package/legacy/index.js +1 -1
  113. package/legacy/internals/index.js +4 -3
  114. package/legacy/locales/arSD.js +62 -58
  115. package/legacy/locales/faIR.js +26 -22
  116. package/legacy/locales/koKR.js +1 -1
  117. package/legacy/locales/plPL.js +30 -26
  118. package/legacy/models/events/gridEvents.js +2 -1
  119. package/legacy/models/gridEditRowModel.js +1 -0
  120. package/legacy/models/params/gridEditCellParams.js +34 -1
  121. package/legacy/models/params/gridRowParams.js +39 -1
  122. package/legacy/utils/cleanupTracking/TimerBasedCleanupTracking.js +5 -1
  123. package/legacy/utils/utils.js +150 -3
  124. package/locales/arSD.js +58 -58
  125. package/locales/faIR.js +22 -22
  126. package/locales/koKR.js +1 -1
  127. package/locales/plPL.js +26 -26
  128. package/models/api/gridApiCommon.d.ts +2 -2
  129. package/models/api/gridEditingApi.d.ts +125 -4
  130. package/models/api/gridFocusApi.d.ts +9 -0
  131. package/models/api/index.d.ts +1 -1
  132. package/models/colDef/gridColDef.d.ts +4 -0
  133. package/models/events/gridEventLookup.d.ts +11 -5
  134. package/models/events/gridEvents.d.ts +9 -2
  135. package/models/events/gridEvents.js +2 -1
  136. package/models/gridEditRowModel.d.ts +4 -3
  137. package/models/gridEditRowModel.js +1 -0
  138. package/models/params/gridCellParams.d.ts +10 -1
  139. package/models/params/gridEditCellParams.d.ts +50 -0
  140. package/models/params/gridEditCellParams.js +34 -1
  141. package/models/params/gridRowParams.d.ts +41 -1
  142. package/models/params/gridRowParams.js +39 -1
  143. package/models/props/DataGridProps.d.ts +13 -1
  144. package/modern/DataGrid/DataGrid.js +10 -0
  145. package/modern/DataGrid/useDataGridComponent.js +6 -2
  146. package/modern/components/ErrorOverlay.js +8 -1
  147. package/modern/components/GridLoadingOverlay.js +11 -2
  148. package/modern/components/GridNoRowsOverlay.js +11 -2
  149. package/modern/components/base/GridErrorHandler.js +1 -20
  150. package/modern/components/cell/GridEditBooleanCell.js +1 -1
  151. package/modern/components/cell/GridEditDateCell.js +1 -1
  152. package/modern/components/cell/GridEditInputCell.js +64 -5
  153. package/modern/components/cell/GridEditSingleSelectCell.js +72 -4
  154. package/modern/components/columnHeaders/GridColumnHeaderTitle.js +1 -1
  155. package/modern/components/columnHeaders/GridColumnHeaders.js +3 -1
  156. package/modern/components/containers/GridOverlay.js +11 -2
  157. package/modern/components/containers/GridRootStyles.js +2 -2
  158. package/modern/components/panel/GridColumnsPanel.js +3 -3
  159. package/modern/components/panel/GridPreferencesPanel.js +3 -5
  160. package/modern/hooks/core/preProcessing/useGridPreProcessing.js +5 -1
  161. package/modern/hooks/core/preProcessing/useGridRegisterPreProcessor.js +4 -0
  162. package/modern/hooks/core/{rowGroupsPreProcessing/gridRowGroupsPreProcessingApi.js → strategyProcessing/gridStrategyProcessingApi.js} +0 -0
  163. package/modern/hooks/core/strategyProcessing/index.js +3 -0
  164. package/modern/hooks/core/strategyProcessing/useGridRegisterStrategyProcessor.js +18 -0
  165. package/modern/hooks/core/strategyProcessing/useGridStrategyProcessing.js +112 -0
  166. package/modern/hooks/core/useGridInitialization.js +2 -2
  167. package/modern/hooks/features/columns/gridColumnsUtils.js +113 -27
  168. package/modern/hooks/features/columns/useGridColumns.js +74 -39
  169. package/modern/hooks/features/editRows/useGridCellEditing.new.js +315 -0
  170. package/modern/hooks/features/editRows/{useGridCellEditing.js → useGridCellEditing.old.js} +1 -1
  171. package/modern/hooks/features/editRows/useGridEditing.new.js +118 -0
  172. package/modern/hooks/features/editRows/{useGridEditing.js → useGridEditing.old.js} +4 -4
  173. package/modern/hooks/features/editRows/useGridRowEditing.new.js +484 -0
  174. package/modern/hooks/features/editRows/{useGridRowEditing.js → useGridRowEditing.old.js} +7 -7
  175. package/modern/hooks/features/filter/useGridFilter.js +17 -27
  176. package/modern/hooks/features/focus/useGridFocus.js +37 -1
  177. package/modern/hooks/features/rows/useGridRows.js +63 -42
  178. package/modern/hooks/features/rows/useGridRowsPreProcessors.js +37 -0
  179. package/modern/hooks/features/selection/useGridSelection.js +4 -0
  180. package/modern/hooks/features/sorting/useGridSorting.js +7 -26
  181. package/modern/hooks/features/virtualization/useGridVirtualScroller.js +5 -3
  182. package/modern/index.js +1 -1
  183. package/modern/internals/index.js +4 -3
  184. package/modern/locales/arSD.js +58 -58
  185. package/modern/locales/faIR.js +22 -22
  186. package/modern/locales/koKR.js +1 -1
  187. package/modern/locales/plPL.js +26 -26
  188. package/modern/models/events/gridEvents.js +2 -1
  189. package/modern/models/gridEditRowModel.js +1 -0
  190. package/modern/models/params/gridEditCellParams.js +34 -1
  191. package/modern/models/params/gridRowParams.js +39 -1
  192. package/modern/utils/cleanupTracking/TimerBasedCleanupTracking.js +4 -2
  193. package/modern/utils/utils.js +150 -3
  194. package/node/DataGrid/DataGrid.js +10 -0
  195. package/node/DataGrid/useDataGridComponent.js +11 -3
  196. package/node/components/ErrorOverlay.js +10 -1
  197. package/node/components/GridLoadingOverlay.js +10 -1
  198. package/node/components/GridNoRowsOverlay.js +10 -1
  199. package/node/components/base/GridErrorHandler.js +7 -30
  200. package/node/components/cell/GridEditBooleanCell.js +1 -1
  201. package/node/components/cell/GridEditDateCell.js +1 -1
  202. package/node/components/cell/GridEditInputCell.js +66 -5
  203. package/node/components/cell/GridEditSingleSelectCell.js +76 -4
  204. package/node/components/columnHeaders/GridColumnHeaderTitle.js +1 -1
  205. package/node/components/columnHeaders/GridColumnHeaders.js +3 -1
  206. package/node/components/containers/GridOverlay.js +10 -1
  207. package/node/components/containers/GridRootStyles.js +2 -2
  208. package/node/components/panel/GridColumnsPanel.js +3 -3
  209. package/node/components/panel/GridPreferencesPanel.js +4 -5
  210. package/node/hooks/core/preProcessing/useGridPreProcessing.js +4 -1
  211. package/node/hooks/core/preProcessing/useGridRegisterPreProcessor.js +3 -0
  212. package/node/hooks/core/{rowGroupsPreProcessing/gridRowGroupsPreProcessingApi.js → strategyProcessing/gridStrategyProcessingApi.js} +0 -0
  213. package/node/hooks/core/strategyProcessing/index.js +44 -0
  214. package/node/hooks/{features/sorting/useGridRegisterSortingMethod.js → core/strategyProcessing/useGridRegisterStrategyProcessor.js} +18 -9
  215. package/node/hooks/core/strategyProcessing/useGridStrategyProcessing.js +135 -0
  216. package/node/hooks/core/useGridInitialization.js +2 -2
  217. package/node/hooks/features/columns/gridColumnsUtils.js +118 -31
  218. package/node/hooks/features/columns/useGridColumns.js +82 -41
  219. package/node/hooks/features/editRows/useGridCellEditing.new.js +334 -0
  220. package/node/hooks/features/editRows/{useGridCellEditing.js → useGridCellEditing.old.js} +1 -1
  221. package/node/hooks/features/editRows/useGridEditing.new.js +142 -0
  222. package/node/hooks/features/editRows/{useGridEditing.js → useGridEditing.old.js} +4 -4
  223. package/node/hooks/features/editRows/useGridRowEditing.new.js +499 -0
  224. package/node/hooks/features/editRows/{useGridRowEditing.js → useGridRowEditing.old.js} +6 -6
  225. package/node/hooks/features/filter/useGridFilter.js +21 -26
  226. package/node/hooks/features/focus/useGridFocus.js +40 -1
  227. package/node/hooks/features/rows/useGridRows.js +62 -41
  228. package/node/hooks/features/rows/useGridRowsPreProcessors.js +46 -0
  229. package/node/hooks/features/selection/useGridSelection.js +4 -0
  230. package/node/hooks/features/sorting/useGridSorting.js +7 -26
  231. package/node/hooks/features/virtualization/useGridVirtualScroller.js +5 -3
  232. package/node/index.js +1 -1
  233. package/node/internals/index.js +29 -15
  234. package/node/locales/arSD.js +58 -58
  235. package/node/locales/faIR.js +22 -22
  236. package/node/locales/koKR.js +1 -1
  237. package/node/locales/plPL.js +26 -26
  238. package/node/models/events/gridEvents.js +2 -1
  239. package/node/models/gridEditRowModel.js +1 -0
  240. package/node/models/params/gridEditCellParams.js +37 -1
  241. package/node/models/params/gridRowParams.js +42 -1
  242. package/node/utils/cleanupTracking/TimerBasedCleanupTracking.js +4 -2
  243. package/node/utils/utils.js +152 -11
  244. package/package.json +1 -1
  245. package/utils/cleanupTracking/TimerBasedCleanupTracking.d.ts +2 -0
  246. package/utils/cleanupTracking/TimerBasedCleanupTracking.js +4 -2
  247. package/utils/utils.d.ts +27 -2
  248. package/utils/utils.js +150 -3
  249. package/hooks/core/rowGroupsPreProcessing/gridRowGroupsPreProcessingApi.d.ts +0 -35
  250. package/hooks/core/rowGroupsPreProcessing/index.d.ts +0 -2
  251. package/hooks/core/rowGroupsPreProcessing/index.js +0 -2
  252. package/hooks/core/rowGroupsPreProcessing/useGridRowGroupsPreProcessing.d.ts +0 -3
  253. package/hooks/core/rowGroupsPreProcessing/useGridRowGroupsPreProcessing.js +0 -72
  254. package/hooks/features/filter/useGridRegisterFilteringMethod.d.ts +0 -4
  255. package/hooks/features/filter/useGridRegisterFilteringMethod.js +0 -9
  256. package/hooks/features/sorting/useGridRegisterSortingMethod.d.ts +0 -4
  257. package/hooks/features/sorting/useGridRegisterSortingMethod.js +0 -9
  258. package/legacy/hooks/core/rowGroupsPreProcessing/index.js +0 -2
  259. package/legacy/hooks/core/rowGroupsPreProcessing/useGridRowGroupsPreProcessing.js +0 -71
  260. package/legacy/hooks/features/filter/useGridRegisterFilteringMethod.js +0 -9
  261. package/legacy/hooks/features/sorting/useGridRegisterSortingMethod.js +0 -9
  262. package/legacy/lib/lodash/_DataView.js +0 -8
  263. package/legacy/lib/lodash/_Hash.js +0 -33
  264. package/legacy/lib/lodash/_ListCache.js +0 -33
  265. package/legacy/lib/lodash/_Map.js +0 -8
  266. package/legacy/lib/lodash/_MapCache.js +0 -33
  267. package/legacy/lib/lodash/_Promise.js +0 -8
  268. package/legacy/lib/lodash/_Set.js +0 -8
  269. package/legacy/lib/lodash/_SetCache.js +0 -28
  270. package/legacy/lib/lodash/_Stack.js +0 -28
  271. package/legacy/lib/lodash/_Symbol.js +0 -7
  272. package/legacy/lib/lodash/_Uint8Array.js +0 -7
  273. package/legacy/lib/lodash/_WeakMap.js +0 -8
  274. package/legacy/lib/lodash/_arrayFilter.js +0 -29
  275. package/legacy/lib/lodash/_arrayLikeKeys.js +0 -46
  276. package/legacy/lib/lodash/_arrayPush.js +0 -23
  277. package/legacy/lib/lodash/_arraySome.js +0 -26
  278. package/legacy/lib/lodash/_assocIndexOf.js +0 -25
  279. package/legacy/lib/lodash/_baseGetAllKeys.js +0 -22
  280. package/legacy/lib/lodash/_baseGetTag.js +0 -29
  281. package/legacy/lib/lodash/_baseIsArguments.js +0 -20
  282. package/legacy/lib/lodash/_baseIsEqual.js +0 -32
  283. package/legacy/lib/lodash/_baseIsEqualDeep.js +0 -85
  284. package/legacy/lib/lodash/_baseIsNative.js +0 -47
  285. package/legacy/lib/lodash/_baseIsTypedArray.js +0 -49
  286. package/legacy/lib/lodash/_baseKeys.js +0 -35
  287. package/legacy/lib/lodash/_baseTimes.js +0 -23
  288. package/legacy/lib/lodash/_baseUnary.js +0 -16
  289. package/legacy/lib/lodash/_cacheHas.js +0 -15
  290. package/legacy/lib/lodash/_coreJsData.js +0 -7
  291. package/legacy/lib/lodash/_equalArrays.js +0 -84
  292. package/legacy/lib/lodash/_equalByTag.js +0 -117
  293. package/legacy/lib/lodash/_equalObjects.js +0 -92
  294. package/legacy/lib/lodash/_freeGlobal.js +0 -6
  295. package/legacy/lib/lodash/_getAllKeys.js +0 -18
  296. package/legacy/lib/lodash/_getMapData.js +0 -18
  297. package/legacy/lib/lodash/_getNative.js +0 -19
  298. package/legacy/lib/lodash/_getRawTag.js +0 -50
  299. package/legacy/lib/lodash/_getSymbols.js +0 -32
  300. package/legacy/lib/lodash/_getTag.js +0 -64
  301. package/legacy/lib/lodash/_getValue.js +0 -15
  302. package/legacy/lib/lodash/_hashClear.js +0 -17
  303. package/legacy/lib/lodash/_hashDelete.js +0 -19
  304. package/legacy/lib/lodash/_hashGet.js +0 -34
  305. package/legacy/lib/lodash/_hashHas.js +0 -25
  306. package/legacy/lib/lodash/_hashSet.js +0 -25
  307. package/legacy/lib/lodash/_isIndex.js +0 -25
  308. package/legacy/lib/lodash/_isKeyable.js +0 -18
  309. package/legacy/lib/lodash/_isMasked.js +0 -23
  310. package/legacy/lib/lodash/_isPrototype.js +0 -19
  311. package/legacy/lib/lodash/_listCacheClear.js +0 -15
  312. package/legacy/lib/lodash/_listCacheDelete.js +0 -40
  313. package/legacy/lib/lodash/_listCacheGet.js +0 -20
  314. package/legacy/lib/lodash/_listCacheHas.js +0 -18
  315. package/legacy/lib/lodash/_listCacheSet.js +0 -29
  316. package/legacy/lib/lodash/_mapCacheClear.js +0 -23
  317. package/legacy/lib/lodash/_mapCacheDelete.js +0 -20
  318. package/legacy/lib/lodash/_mapCacheGet.js +0 -18
  319. package/legacy/lib/lodash/_mapCacheHas.js +0 -18
  320. package/legacy/lib/lodash/_mapCacheSet.js +0 -23
  321. package/legacy/lib/lodash/_mapToArray.js +0 -19
  322. package/legacy/lib/lodash/_nativeCreate.js +0 -7
  323. package/legacy/lib/lodash/_nativeKeys.js +0 -7
  324. package/legacy/lib/lodash/_nodeUtil.js +0 -25
  325. package/legacy/lib/lodash/_objectToString.js +0 -24
  326. package/legacy/lib/lodash/_overArg.js +0 -17
  327. package/legacy/lib/lodash/_root.js +0 -11
  328. package/legacy/lib/lodash/_setCacheAdd.js +0 -22
  329. package/legacy/lib/lodash/_setCacheHas.js +0 -16
  330. package/legacy/lib/lodash/_setToArray.js +0 -19
  331. package/legacy/lib/lodash/_stackClear.js +0 -17
  332. package/legacy/lib/lodash/_stackDelete.js +0 -19
  333. package/legacy/lib/lodash/_stackGet.js +0 -16
  334. package/legacy/lib/lodash/_stackHas.js +0 -16
  335. package/legacy/lib/lodash/_stackSet.js +0 -40
  336. package/legacy/lib/lodash/_toSource.js +0 -30
  337. package/legacy/lib/lodash/date.default.js +0 -4
  338. package/legacy/lib/lodash/date.js +0 -2
  339. package/legacy/lib/lodash/eq.js +0 -39
  340. package/legacy/lib/lodash/function.default.js +0 -4
  341. package/legacy/lib/lodash/function.js +0 -2
  342. package/legacy/lib/lodash/isArguments.js +0 -38
  343. package/legacy/lib/lodash/isArray.js +0 -27
  344. package/legacy/lib/lodash/isArrayLike.js +0 -35
  345. package/legacy/lib/lodash/isBuffer.js +0 -40
  346. package/legacy/lib/lodash/isDeepEqual.js +0 -45
  347. package/legacy/lib/lodash/isFunction.js +0 -40
  348. package/legacy/lib/lodash/isLength.js +0 -36
  349. package/legacy/lib/lodash/isObject.js +0 -36
  350. package/legacy/lib/lodash/isObjectLike.js +0 -33
  351. package/legacy/lib/lodash/isSymbol.js +0 -31
  352. package/legacy/lib/lodash/isTypedArray.js +0 -28
  353. package/legacy/lib/lodash/keys.js +0 -39
  354. package/legacy/lib/lodash/lang.default.js +0 -28
  355. package/legacy/lib/lodash/lang.js +0 -14
  356. package/legacy/lib/lodash/now.js +0 -25
  357. package/legacy/lib/lodash/object.default.js +0 -4
  358. package/legacy/lib/lodash/object.js +0 -2
  359. package/legacy/lib/lodash/stubArray.js +0 -25
  360. package/legacy/lib/lodash/stubFalse.js +0 -20
  361. package/legacy/lib/lodash/toNumber.js +0 -70
  362. package/legacy/lib/lodash/util.default.js +0 -6
  363. package/legacy/lib/lodash/util.js +0 -3
  364. package/lib/lodash/_DataView.d.ts +0 -2
  365. package/lib/lodash/_DataView.js +0 -8
  366. package/lib/lodash/_Hash.d.ts +0 -29
  367. package/lib/lodash/_Hash.js +0 -33
  368. package/lib/lodash/_ListCache.d.ts +0 -29
  369. package/lib/lodash/_ListCache.js +0 -33
  370. package/lib/lodash/_Map.d.ts +0 -2
  371. package/lib/lodash/_Map.js +0 -8
  372. package/lib/lodash/_MapCache.d.ts +0 -29
  373. package/lib/lodash/_MapCache.js +0 -33
  374. package/lib/lodash/_Promise.d.ts +0 -2
  375. package/lib/lodash/_Promise.js +0 -8
  376. package/lib/lodash/_Set.d.ts +0 -2
  377. package/lib/lodash/_Set.js +0 -8
  378. package/lib/lodash/_SetCache.d.ts +0 -28
  379. package/lib/lodash/_SetCache.js +0 -28
  380. package/lib/lodash/_Stack.d.ts +0 -32
  381. package/lib/lodash/_Stack.js +0 -28
  382. package/lib/lodash/_Symbol.d.ts +0 -3
  383. package/lib/lodash/_Symbol.js +0 -7
  384. package/lib/lodash/_Uint8Array.d.ts +0 -3
  385. package/lib/lodash/_Uint8Array.js +0 -7
  386. package/lib/lodash/_WeakMap.d.ts +0 -2
  387. package/lib/lodash/_WeakMap.js +0 -8
  388. package/lib/lodash/_arrayFilter.d.ts +0 -11
  389. package/lib/lodash/_arrayFilter.js +0 -29
  390. package/lib/lodash/_arrayLikeKeys.d.ts +0 -10
  391. package/lib/lodash/_arrayLikeKeys.js +0 -46
  392. package/lib/lodash/_arrayPush.d.ts +0 -10
  393. package/lib/lodash/_arrayPush.js +0 -23
  394. package/lib/lodash/_arraySome.d.ts +0 -12
  395. package/lib/lodash/_arraySome.js +0 -26
  396. package/lib/lodash/_assocIndexOf.d.ts +0 -10
  397. package/lib/lodash/_assocIndexOf.js +0 -25
  398. package/lib/lodash/_baseGetAllKeys.d.ts +0 -13
  399. package/lib/lodash/_baseGetAllKeys.js +0 -22
  400. package/lib/lodash/_baseGetTag.d.ts +0 -9
  401. package/lib/lodash/_baseGetTag.js +0 -29
  402. package/lib/lodash/_baseIsArguments.d.ts +0 -9
  403. package/lib/lodash/_baseIsArguments.js +0 -20
  404. package/lib/lodash/_baseIsEqual.d.ts +0 -16
  405. package/lib/lodash/_baseIsEqual.js +0 -32
  406. package/lib/lodash/_baseIsEqualDeep.d.ts +0 -16
  407. package/lib/lodash/_baseIsEqualDeep.js +0 -85
  408. package/lib/lodash/_baseIsNative.d.ts +0 -10
  409. package/lib/lodash/_baseIsNative.js +0 -47
  410. package/lib/lodash/_baseIsTypedArray.d.ts +0 -9
  411. package/lib/lodash/_baseIsTypedArray.js +0 -49
  412. package/lib/lodash/_baseKeys.d.ts +0 -9
  413. package/lib/lodash/_baseKeys.js +0 -35
  414. package/lib/lodash/_baseTimes.d.ts +0 -11
  415. package/lib/lodash/_baseTimes.js +0 -23
  416. package/lib/lodash/_baseUnary.d.ts +0 -9
  417. package/lib/lodash/_baseUnary.js +0 -16
  418. package/lib/lodash/_cacheHas.d.ts +0 -10
  419. package/lib/lodash/_cacheHas.js +0 -15
  420. package/lib/lodash/_coreJsData.d.ts +0 -3
  421. package/lib/lodash/_coreJsData.js +0 -7
  422. package/lib/lodash/_equalArrays.d.ts +0 -15
  423. package/lib/lodash/_equalArrays.js +0 -84
  424. package/lib/lodash/_equalByTag.d.ts +0 -19
  425. package/lib/lodash/_equalByTag.js +0 -117
  426. package/lib/lodash/_equalObjects.d.ts +0 -15
  427. package/lib/lodash/_equalObjects.js +0 -92
  428. package/lib/lodash/_freeGlobal.d.ts +0 -3
  429. package/lib/lodash/_freeGlobal.js +0 -5
  430. package/lib/lodash/_getAllKeys.d.ts +0 -9
  431. package/lib/lodash/_getAllKeys.js +0 -18
  432. package/lib/lodash/_getMapData.d.ts +0 -10
  433. package/lib/lodash/_getMapData.js +0 -18
  434. package/lib/lodash/_getNative.d.ts +0 -10
  435. package/lib/lodash/_getNative.js +0 -19
  436. package/lib/lodash/_getRawTag.d.ts +0 -9
  437. package/lib/lodash/_getRawTag.js +0 -50
  438. package/lib/lodash/_getSymbols.d.ts +0 -2
  439. package/lib/lodash/_getSymbols.js +0 -32
  440. package/lib/lodash/_getTag.d.ts +0 -10
  441. package/lib/lodash/_getTag.js +0 -64
  442. package/lib/lodash/_getValue.d.ts +0 -10
  443. package/lib/lodash/_getValue.js +0 -15
  444. package/lib/lodash/_hashClear.d.ts +0 -13
  445. package/lib/lodash/_hashClear.js +0 -17
  446. package/lib/lodash/_hashDelete.d.ts +0 -12
  447. package/lib/lodash/_hashDelete.js +0 -19
  448. package/lib/lodash/_hashGet.d.ts +0 -11
  449. package/lib/lodash/_hashGet.js +0 -34
  450. package/lib/lodash/_hashHas.d.ts +0 -11
  451. package/lib/lodash/_hashHas.js +0 -25
  452. package/lib/lodash/_hashSet.d.ts +0 -12
  453. package/lib/lodash/_hashSet.js +0 -25
  454. package/lib/lodash/_isIndex.d.ts +0 -10
  455. package/lib/lodash/_isIndex.js +0 -23
  456. package/lib/lodash/_isKeyable.d.ts +0 -9
  457. package/lib/lodash/_isKeyable.js +0 -15
  458. package/lib/lodash/_isMasked.d.ts +0 -9
  459. package/lib/lodash/_isMasked.js +0 -23
  460. package/lib/lodash/_isPrototype.d.ts +0 -9
  461. package/lib/lodash/_isPrototype.js +0 -19
  462. package/lib/lodash/_listCacheClear.d.ts +0 -13
  463. package/lib/lodash/_listCacheClear.js +0 -15
  464. package/lib/lodash/_listCacheDelete.d.ts +0 -11
  465. package/lib/lodash/_listCacheDelete.js +0 -40
  466. package/lib/lodash/_listCacheGet.d.ts +0 -11
  467. package/lib/lodash/_listCacheGet.js +0 -20
  468. package/lib/lodash/_listCacheHas.d.ts +0 -11
  469. package/lib/lodash/_listCacheHas.js +0 -18
  470. package/lib/lodash/_listCacheSet.d.ts +0 -12
  471. package/lib/lodash/_listCacheSet.js +0 -29
  472. package/lib/lodash/_mapCacheClear.d.ts +0 -18
  473. package/lib/lodash/_mapCacheClear.js +0 -23
  474. package/lib/lodash/_mapCacheDelete.d.ts +0 -11
  475. package/lib/lodash/_mapCacheDelete.js +0 -20
  476. package/lib/lodash/_mapCacheGet.d.ts +0 -11
  477. package/lib/lodash/_mapCacheGet.js +0 -18
  478. package/lib/lodash/_mapCacheHas.d.ts +0 -11
  479. package/lib/lodash/_mapCacheHas.js +0 -18
  480. package/lib/lodash/_mapCacheSet.d.ts +0 -12
  481. package/lib/lodash/_mapCacheSet.js +0 -23
  482. package/lib/lodash/_mapToArray.d.ts +0 -9
  483. package/lib/lodash/_mapToArray.js +0 -19
  484. package/lib/lodash/_nativeCreate.d.ts +0 -2
  485. package/lib/lodash/_nativeCreate.js +0 -7
  486. package/lib/lodash/_nativeKeys.d.ts +0 -2
  487. package/lib/lodash/_nativeKeys.js +0 -7
  488. package/lib/lodash/_nodeUtil.d.ts +0 -3
  489. package/lib/lodash/_nodeUtil.js +0 -24
  490. package/lib/lodash/_objectToString.d.ts +0 -9
  491. package/lib/lodash/_objectToString.js +0 -24
  492. package/lib/lodash/_overArg.d.ts +0 -10
  493. package/lib/lodash/_overArg.js +0 -17
  494. package/lib/lodash/_root.d.ts +0 -3
  495. package/lib/lodash/_root.js +0 -10
  496. package/lib/lodash/_setCacheAdd.d.ts +0 -12
  497. package/lib/lodash/_setCacheAdd.js +0 -22
  498. package/lib/lodash/_setCacheHas.d.ts +0 -11
  499. package/lib/lodash/_setCacheHas.js +0 -16
  500. package/lib/lodash/_setToArray.d.ts +0 -9
  501. package/lib/lodash/_setToArray.js +0 -19
  502. package/lib/lodash/_stackClear.d.ts +0 -14
  503. package/lib/lodash/_stackClear.js +0 -17
  504. package/lib/lodash/_stackDelete.d.ts +0 -24
  505. package/lib/lodash/_stackDelete.js +0 -19
  506. package/lib/lodash/_stackGet.d.ts +0 -11
  507. package/lib/lodash/_stackGet.js +0 -16
  508. package/lib/lodash/_stackHas.d.ts +0 -11
  509. package/lib/lodash/_stackHas.js +0 -16
  510. package/lib/lodash/_stackSet.d.ts +0 -28
  511. package/lib/lodash/_stackSet.js +0 -40
  512. package/lib/lodash/_toSource.d.ts +0 -9
  513. package/lib/lodash/_toSource.js +0 -30
  514. package/lib/lodash/date.d.ts +0 -2
  515. package/lib/lodash/date.default.d.ts +0 -5
  516. package/lib/lodash/date.default.js +0 -4
  517. package/lib/lodash/date.js +0 -2
  518. package/lib/lodash/eq.d.ts +0 -34
  519. package/lib/lodash/eq.js +0 -39
  520. package/lib/lodash/function.d.ts +0 -1
  521. package/lib/lodash/function.default.d.ts +0 -4
  522. package/lib/lodash/function.default.js +0 -4
  523. package/lib/lodash/function.js +0 -2
  524. package/lib/lodash/isArguments.d.ts +0 -2
  525. package/lib/lodash/isArguments.js +0 -38
  526. package/lib/lodash/isArray.d.ts +0 -25
  527. package/lib/lodash/isArray.js +0 -27
  528. package/lib/lodash/isArrayLike.d.ts +0 -27
  529. package/lib/lodash/isArrayLike.js +0 -35
  530. package/lib/lodash/isBuffer.d.ts +0 -19
  531. package/lib/lodash/isBuffer.js +0 -39
  532. package/lib/lodash/isDeepEqual.d.ts +0 -30
  533. package/lib/lodash/isDeepEqual.js +0 -45
  534. package/lib/lodash/isFunction.d.ts +0 -19
  535. package/lib/lodash/isFunction.js +0 -40
  536. package/lib/lodash/isLength.d.ts +0 -28
  537. package/lib/lodash/isLength.js +0 -36
  538. package/lib/lodash/isObject.d.ts +0 -27
  539. package/lib/lodash/isObject.js +0 -33
  540. package/lib/lodash/isObjectLike.d.ts +0 -26
  541. package/lib/lodash/isObjectLike.js +0 -31
  542. package/lib/lodash/isSymbol.d.ts +0 -19
  543. package/lib/lodash/isSymbol.js +0 -30
  544. package/lib/lodash/isTypedArray.d.ts +0 -19
  545. package/lib/lodash/isTypedArray.js +0 -28
  546. package/lib/lodash/keys.d.ts +0 -30
  547. package/lib/lodash/keys.js +0 -39
  548. package/lib/lodash/lang.d.ts +0 -14
  549. package/lib/lodash/lang.default.d.ts +0 -29
  550. package/lib/lodash/lang.default.js +0 -28
  551. package/lib/lodash/lang.js +0 -14
  552. package/lib/lodash/now.d.ts +0 -18
  553. package/lib/lodash/now.js +0 -25
  554. package/lib/lodash/object.d.ts +0 -2
  555. package/lib/lodash/object.default.d.ts +0 -5
  556. package/lib/lodash/object.default.js +0 -4
  557. package/lib/lodash/object.js +0 -2
  558. package/lib/lodash/stubArray.d.ts +0 -20
  559. package/lib/lodash/stubArray.js +0 -25
  560. package/lib/lodash/stubFalse.d.ts +0 -15
  561. package/lib/lodash/stubFalse.js +0 -20
  562. package/lib/lodash/toNumber.d.ts +0 -25
  563. package/lib/lodash/toNumber.js +0 -70
  564. package/lib/lodash/util.d.ts +0 -3
  565. package/lib/lodash/util.default.d.ts +0 -7
  566. package/lib/lodash/util.default.js +0 -6
  567. package/lib/lodash/util.js +0 -3
  568. package/modern/hooks/core/rowGroupsPreProcessing/index.js +0 -2
  569. package/modern/hooks/core/rowGroupsPreProcessing/useGridRowGroupsPreProcessing.js +0 -70
  570. package/modern/hooks/features/filter/useGridRegisterFilteringMethod.js +0 -9
  571. package/modern/hooks/features/sorting/useGridRegisterSortingMethod.js +0 -9
  572. package/modern/lib/lodash/_DataView.js +0 -8
  573. package/modern/lib/lodash/_Hash.js +0 -33
  574. package/modern/lib/lodash/_ListCache.js +0 -33
  575. package/modern/lib/lodash/_Map.js +0 -8
  576. package/modern/lib/lodash/_MapCache.js +0 -33
  577. package/modern/lib/lodash/_Promise.js +0 -8
  578. package/modern/lib/lodash/_Set.js +0 -8
  579. package/modern/lib/lodash/_SetCache.js +0 -28
  580. package/modern/lib/lodash/_Stack.js +0 -28
  581. package/modern/lib/lodash/_Symbol.js +0 -7
  582. package/modern/lib/lodash/_Uint8Array.js +0 -7
  583. package/modern/lib/lodash/_WeakMap.js +0 -8
  584. package/modern/lib/lodash/_arrayFilter.js +0 -29
  585. package/modern/lib/lodash/_arrayLikeKeys.js +0 -46
  586. package/modern/lib/lodash/_arrayPush.js +0 -23
  587. package/modern/lib/lodash/_arraySome.js +0 -26
  588. package/modern/lib/lodash/_assocIndexOf.js +0 -25
  589. package/modern/lib/lodash/_baseGetAllKeys.js +0 -22
  590. package/modern/lib/lodash/_baseGetTag.js +0 -29
  591. package/modern/lib/lodash/_baseIsArguments.js +0 -20
  592. package/modern/lib/lodash/_baseIsEqual.js +0 -32
  593. package/modern/lib/lodash/_baseIsEqualDeep.js +0 -85
  594. package/modern/lib/lodash/_baseIsNative.js +0 -47
  595. package/modern/lib/lodash/_baseIsTypedArray.js +0 -49
  596. package/modern/lib/lodash/_baseKeys.js +0 -35
  597. package/modern/lib/lodash/_baseTimes.js +0 -23
  598. package/modern/lib/lodash/_baseUnary.js +0 -16
  599. package/modern/lib/lodash/_cacheHas.js +0 -15
  600. package/modern/lib/lodash/_coreJsData.js +0 -7
  601. package/modern/lib/lodash/_equalArrays.js +0 -84
  602. package/modern/lib/lodash/_equalByTag.js +0 -117
  603. package/modern/lib/lodash/_equalObjects.js +0 -92
  604. package/modern/lib/lodash/_freeGlobal.js +0 -5
  605. package/modern/lib/lodash/_getAllKeys.js +0 -18
  606. package/modern/lib/lodash/_getMapData.js +0 -18
  607. package/modern/lib/lodash/_getNative.js +0 -19
  608. package/modern/lib/lodash/_getRawTag.js +0 -50
  609. package/modern/lib/lodash/_getSymbols.js +0 -32
  610. package/modern/lib/lodash/_getTag.js +0 -64
  611. package/modern/lib/lodash/_getValue.js +0 -15
  612. package/modern/lib/lodash/_hashClear.js +0 -17
  613. package/modern/lib/lodash/_hashDelete.js +0 -19
  614. package/modern/lib/lodash/_hashGet.js +0 -34
  615. package/modern/lib/lodash/_hashHas.js +0 -25
  616. package/modern/lib/lodash/_hashSet.js +0 -25
  617. package/modern/lib/lodash/_isIndex.js +0 -23
  618. package/modern/lib/lodash/_isKeyable.js +0 -15
  619. package/modern/lib/lodash/_isMasked.js +0 -23
  620. package/modern/lib/lodash/_isPrototype.js +0 -19
  621. package/modern/lib/lodash/_listCacheClear.js +0 -15
  622. package/modern/lib/lodash/_listCacheDelete.js +0 -40
  623. package/modern/lib/lodash/_listCacheGet.js +0 -20
  624. package/modern/lib/lodash/_listCacheHas.js +0 -18
  625. package/modern/lib/lodash/_listCacheSet.js +0 -29
  626. package/modern/lib/lodash/_mapCacheClear.js +0 -23
  627. package/modern/lib/lodash/_mapCacheDelete.js +0 -20
  628. package/modern/lib/lodash/_mapCacheGet.js +0 -18
  629. package/modern/lib/lodash/_mapCacheHas.js +0 -18
  630. package/modern/lib/lodash/_mapCacheSet.js +0 -23
  631. package/modern/lib/lodash/_mapToArray.js +0 -19
  632. package/modern/lib/lodash/_nativeCreate.js +0 -7
  633. package/modern/lib/lodash/_nativeKeys.js +0 -7
  634. package/modern/lib/lodash/_nodeUtil.js +0 -24
  635. package/modern/lib/lodash/_objectToString.js +0 -24
  636. package/modern/lib/lodash/_overArg.js +0 -17
  637. package/modern/lib/lodash/_root.js +0 -10
  638. package/modern/lib/lodash/_setCacheAdd.js +0 -22
  639. package/modern/lib/lodash/_setCacheHas.js +0 -16
  640. package/modern/lib/lodash/_setToArray.js +0 -19
  641. package/modern/lib/lodash/_stackClear.js +0 -17
  642. package/modern/lib/lodash/_stackDelete.js +0 -19
  643. package/modern/lib/lodash/_stackGet.js +0 -16
  644. package/modern/lib/lodash/_stackHas.js +0 -16
  645. package/modern/lib/lodash/_stackSet.js +0 -40
  646. package/modern/lib/lodash/_toSource.js +0 -30
  647. package/modern/lib/lodash/date.default.js +0 -4
  648. package/modern/lib/lodash/date.js +0 -2
  649. package/modern/lib/lodash/eq.js +0 -39
  650. package/modern/lib/lodash/function.default.js +0 -4
  651. package/modern/lib/lodash/function.js +0 -2
  652. package/modern/lib/lodash/isArguments.js +0 -38
  653. package/modern/lib/lodash/isArray.js +0 -27
  654. package/modern/lib/lodash/isArrayLike.js +0 -35
  655. package/modern/lib/lodash/isBuffer.js +0 -39
  656. package/modern/lib/lodash/isDeepEqual.js +0 -45
  657. package/modern/lib/lodash/isFunction.js +0 -40
  658. package/modern/lib/lodash/isLength.js +0 -36
  659. package/modern/lib/lodash/isObject.js +0 -33
  660. package/modern/lib/lodash/isObjectLike.js +0 -31
  661. package/modern/lib/lodash/isSymbol.js +0 -30
  662. package/modern/lib/lodash/isTypedArray.js +0 -28
  663. package/modern/lib/lodash/keys.js +0 -39
  664. package/modern/lib/lodash/lang.default.js +0 -28
  665. package/modern/lib/lodash/lang.js +0 -14
  666. package/modern/lib/lodash/now.js +0 -25
  667. package/modern/lib/lodash/object.default.js +0 -4
  668. package/modern/lib/lodash/object.js +0 -2
  669. package/modern/lib/lodash/stubArray.js +0 -25
  670. package/modern/lib/lodash/stubFalse.js +0 -20
  671. package/modern/lib/lodash/toNumber.js +0 -70
  672. package/modern/lib/lodash/util.default.js +0 -6
  673. package/modern/lib/lodash/util.js +0 -3
  674. package/node/hooks/core/rowGroupsPreProcessing/index.js +0 -31
  675. package/node/hooks/core/rowGroupsPreProcessing/useGridRowGroupsPreProcessing.js +0 -87
  676. package/node/hooks/features/filter/useGridRegisterFilteringMethod.js +0 -24
  677. package/node/lib/lodash/_DataView.js +0 -20
  678. package/node/lib/lodash/_Hash.js +0 -48
  679. package/node/lib/lodash/_ListCache.js +0 -48
  680. package/node/lib/lodash/_Map.js +0 -20
  681. package/node/lib/lodash/_MapCache.js +0 -48
  682. package/node/lib/lodash/_Promise.js +0 -20
  683. package/node/lib/lodash/_Set.js +0 -20
  684. package/node/lib/lodash/_SetCache.js +0 -41
  685. package/node/lib/lodash/_Stack.js +0 -44
  686. package/node/lib/lodash/_Symbol.js +0 -18
  687. package/node/lib/lodash/_Uint8Array.js +0 -18
  688. package/node/lib/lodash/_WeakMap.js +0 -20
  689. package/node/lib/lodash/_arrayFilter.js +0 -35
  690. package/node/lib/lodash/_arrayLikeKeys.js +0 -62
  691. package/node/lib/lodash/_arrayPush.js +0 -29
  692. package/node/lib/lodash/_arraySome.js +0 -32
  693. package/node/lib/lodash/_assocIndexOf.js +0 -36
  694. package/node/lib/lodash/_baseGetAllKeys.js +0 -34
  695. package/node/lib/lodash/_baseGetTag.js +0 -42
  696. package/node/lib/lodash/_baseIsArguments.js +0 -32
  697. package/node/lib/lodash/_baseIsEqual.js +0 -44
  698. package/node/lib/lodash/_baseIsEqualDeep.js +0 -103
  699. package/node/lib/lodash/_baseIsNative.js +0 -61
  700. package/node/lib/lodash/_baseIsTypedArray.js +0 -62
  701. package/node/lib/lodash/_baseKeys.js +0 -47
  702. package/node/lib/lodash/_baseTimes.js +0 -29
  703. package/node/lib/lodash/_baseUnary.js +0 -22
  704. package/node/lib/lodash/_cacheHas.js +0 -21
  705. package/node/lib/lodash/_coreJsData.js +0 -18
  706. package/node/lib/lodash/_equalArrays.js +0 -97
  707. package/node/lib/lodash/_equalByTag.js +0 -133
  708. package/node/lib/lodash/_equalObjects.js +0 -103
  709. package/node/lib/lodash/_freeGlobal.js +0 -10
  710. package/node/lib/lodash/_getAllKeys.js +0 -31
  711. package/node/lib/lodash/_getMapData.js +0 -29
  712. package/node/lib/lodash/_getNative.js +0 -31
  713. package/node/lib/lodash/_getRawTag.js +0 -61
  714. package/node/lib/lodash/_getSymbols.js +0 -44
  715. package/node/lib/lodash/_getTag.js +0 -81
  716. package/node/lib/lodash/_getValue.js +0 -21
  717. package/node/lib/lodash/_hashClear.js +0 -28
  718. package/node/lib/lodash/_hashDelete.js +0 -25
  719. package/node/lib/lodash/_hashGet.js +0 -45
  720. package/node/lib/lodash/_hashHas.js +0 -36
  721. package/node/lib/lodash/_hashSet.js +0 -36
  722. package/node/lib/lodash/_isIndex.js +0 -28
  723. package/node/lib/lodash/_isKeyable.js +0 -21
  724. package/node/lib/lodash/_isMasked.js +0 -34
  725. package/node/lib/lodash/_isPrototype.js +0 -24
  726. package/node/lib/lodash/_listCacheClear.js +0 -21
  727. package/node/lib/lodash/_listCacheDelete.js +0 -51
  728. package/node/lib/lodash/_listCacheGet.js +0 -31
  729. package/node/lib/lodash/_listCacheHas.js +0 -29
  730. package/node/lib/lodash/_listCacheSet.js +0 -40
  731. package/node/lib/lodash/_mapCacheClear.js +0 -36
  732. package/node/lib/lodash/_mapCacheDelete.js +0 -31
  733. package/node/lib/lodash/_mapCacheGet.js +0 -29
  734. package/node/lib/lodash/_mapCacheHas.js +0 -29
  735. package/node/lib/lodash/_mapCacheSet.js +0 -34
  736. package/node/lib/lodash/_mapToArray.js +0 -25
  737. package/node/lib/lodash/_nativeCreate.js +0 -18
  738. package/node/lib/lodash/_nativeKeys.js +0 -18
  739. package/node/lib/lodash/_nodeUtil.js +0 -35
  740. package/node/lib/lodash/_objectToString.js +0 -29
  741. package/node/lib/lodash/_overArg.js +0 -23
  742. package/node/lib/lodash/_root.js +0 -21
  743. package/node/lib/lodash/_setCacheAdd.js +0 -27
  744. package/node/lib/lodash/_setCacheHas.js +0 -22
  745. package/node/lib/lodash/_setToArray.js +0 -25
  746. package/node/lib/lodash/_stackClear.js +0 -28
  747. package/node/lib/lodash/_stackDelete.js +0 -25
  748. package/node/lib/lodash/_stackGet.js +0 -22
  749. package/node/lib/lodash/_stackHas.js +0 -22
  750. package/node/lib/lodash/_stackSet.js +0 -53
  751. package/node/lib/lodash/_toSource.js +0 -35
  752. package/node/lib/lodash/date.default.js +0 -15
  753. package/node/lib/lodash/date.js +0 -23
  754. package/node/lib/lodash/eq.js +0 -45
  755. package/node/lib/lodash/function.default.js +0 -15
  756. package/node/lib/lodash/function.js +0 -23
  757. package/node/lib/lodash/isArguments.js +0 -50
  758. package/node/lib/lodash/isArray.js +0 -32
  759. package/node/lib/lodash/isArrayLike.js +0 -47
  760. package/node/lib/lodash/isBuffer.js +0 -51
  761. package/node/lib/lodash/isDeepEqual.js +0 -56
  762. package/node/lib/lodash/isFunction.js +0 -52
  763. package/node/lib/lodash/isLength.js +0 -41
  764. package/node/lib/lodash/isObject.js +0 -39
  765. package/node/lib/lodash/isObjectLike.js +0 -37
  766. package/node/lib/lodash/isSymbol.js +0 -42
  767. package/node/lib/lodash/isTypedArray.js +0 -41
  768. package/node/lib/lodash/keys.js +0 -52
  769. package/node/lib/lodash/lang.default.js +0 -51
  770. package/node/lib/lodash/lang.js +0 -119
  771. package/node/lib/lodash/now.js +0 -36
  772. package/node/lib/lodash/object.default.js +0 -15
  773. package/node/lib/lodash/object.js +0 -23
  774. package/node/lib/lodash/stubArray.js +0 -31
  775. package/node/lib/lodash/stubFalse.js +0 -26
  776. package/node/lib/lodash/toNumber.js +0 -82
  777. package/node/lib/lodash/util.default.js +0 -18
  778. package/node/lib/lodash/util.js +0 -31
package/locales/faIR.js CHANGED
@@ -23,8 +23,8 @@ const faIRGrid = {
23
23
  // Export selector toolbar button text
24
24
  toolbarExport: 'خروجی',
25
25
  toolbarExportLabel: 'خروجی',
26
- toolbarExportCSV: 'دانلود به‌صورت CSV',
27
- // toolbarExportPrint: 'Print',
26
+ toolbarExportCSV: 'دانلود به صورت CSV',
27
+ toolbarExportPrint: 'چاپ',
28
28
  // Columns panel text
29
29
  columnsPanelTextFieldLabel: 'پیداکردن ستون',
30
30
  columnsPanelTextFieldPlaceholder: 'عنوان ستون',
@@ -34,7 +34,7 @@ const faIRGrid = {
34
34
  // Filter panel text
35
35
  filterPanelAddFilter: 'افزودن فیلتر',
36
36
  filterPanelDeleteIconLabel: 'حذف',
37
- // filterPanelLinkOperator: 'Logic operator',
37
+ filterPanelLinkOperator: 'عملگر منطقی',
38
38
  filterPanelOperators: 'عملگرها',
39
39
  // TODO v6: rename to filterPanelOperator
40
40
  filterPanelOperatorAnd: 'و',
@@ -55,7 +55,7 @@ const faIRGrid = {
55
55
  filterOperatorOnOrBefore: 'معادل یا قبلش',
56
56
  filterOperatorIsEmpty: 'خالی است',
57
57
  filterOperatorIsNotEmpty: 'خالی نیست',
58
- // filterOperatorIsAnyOf: 'is any of',
58
+ filterOperatorIsAnyOf: 'هر یک از',
59
59
  // Filter values text
60
60
  filterValueAny: 'هرچیزی',
61
61
  filterValueTrue: 'صحیح',
@@ -79,30 +79,30 @@ const faIRGrid = {
79
79
  // Total visible row amount footer text
80
80
  footerTotalVisibleRows: (visibleCount, totalCount) => `${visibleCount.toLocaleString()} از ${totalCount.toLocaleString()}`,
81
81
  // Checkbox selection text
82
- checkboxSelectionHeaderName: 'انتخاب چک‌باکس',
83
- // checkboxSelectionSelectAllRows: 'Select all rows',
84
- // checkboxSelectionUnselectAllRows: 'Unselect all rows',
85
- // checkboxSelectionSelectRow: 'Select row',
86
- // checkboxSelectionUnselectRow: 'Unselect row',
82
+ checkboxSelectionHeaderName: 'چک‌باکس انتخاب',
83
+ checkboxSelectionSelectAllRows: 'انتخاب همه‌ی ردیف‌ها',
84
+ checkboxSelectionUnselectAllRows: 'لغو انتخاب همه‌ی ردیف‌ها',
85
+ checkboxSelectionSelectRow: 'انتخاب ردیف',
86
+ checkboxSelectionUnselectRow: 'لغو انتخاب ردیف',
87
87
  // Boolean cell text
88
88
  booleanCellTrueLabel: 'صحیح',
89
89
  booleanCellFalseLabel: 'غلط',
90
90
  // Actions cell more text
91
- actionsCellMore: 'بیشتر' // Column pinning text
92
- // pinToLeft: 'Pin to left',
93
- // pinToRight: 'Pin to right',
94
- // unpin: 'Unpin',
91
+ actionsCellMore: 'بیشتر',
92
+ // Column pinning text
93
+ pinToLeft: 'سنجاق کردن به چپ',
94
+ pinToRight: 'سنجاق کردن به راست',
95
+ unpin: 'برداشتن سنجاق',
95
96
  // Tree Data
96
- // treeDataGroupingHeaderName: 'Group',
97
- // treeDataExpand: 'see children',
98
- // treeDataCollapse: 'hide children',
97
+ treeDataGroupingHeaderName: 'گروه‌بندی',
98
+ treeDataExpand: 'نمایش فرزندان',
99
+ treeDataCollapse: 'پنهان‌سازی فرزندان',
99
100
  // Grouping columns
100
- // groupingColumnHeaderName: 'Group',
101
- // groupColumn: name => `Group by ${name}`,
102
- // unGroupColumn: name => `Stop grouping by ${name}`,
101
+ groupingColumnHeaderName: 'گروه‌بندی',
102
+ groupColumn: name => `گروه‌بندی براساس ${name}`,
103
+ unGroupColumn: name => `لغو گروه‌بندی براساس ${name}`,
103
104
  // Master/detail
104
- // expandDetailPanel: 'Expand',
105
- // collapseDetailPanel: 'Collapse',
106
-
105
+ expandDetailPanel: 'بازکردن پنل جزئیات',
106
+ collapseDetailPanel: 'بستن پنل جزئیات'
107
107
  };
108
108
  export const faIR = getGridLocalization(faIRGrid, faIRCore);
package/locales/koKR.js CHANGED
@@ -55,7 +55,7 @@ const koKRGrid = {
55
55
  filterOperatorOnOrBefore: '이전',
56
56
  filterOperatorIsEmpty: '값이 없는',
57
57
  filterOperatorIsNotEmpty: '값이 있는',
58
- // filterOperatorIsAnyOf: 'is any of',
58
+ filterOperatorIsAnyOf: ' 하나인',
59
59
  // Filter values text
60
60
  filterValueAny: '아무값',
61
61
  filterValueTrue: '참',
package/locales/plPL.js CHANGED
@@ -24,7 +24,7 @@ const plPLGrid = {
24
24
  toolbarExport: 'Eksportuj',
25
25
  toolbarExportLabel: 'Eksportuj',
26
26
  toolbarExportCSV: 'Pobierz jako plik CSV',
27
- // toolbarExportPrint: 'Print',
27
+ toolbarExportPrint: 'Drukuj',
28
28
  // Columns panel text
29
29
  columnsPanelTextFieldLabel: 'Znajdź kolumnę',
30
30
  columnsPanelTextFieldPlaceholder: 'Tytuł kolumny',
@@ -34,7 +34,7 @@ const plPLGrid = {
34
34
  // Filter panel text
35
35
  filterPanelAddFilter: 'Dodaj filtr',
36
36
  filterPanelDeleteIconLabel: 'Usuń',
37
- // filterPanelLinkOperator: 'Logic operator',
37
+ filterPanelLinkOperator: 'Operator logiczny',
38
38
  filterPanelOperators: 'Operator',
39
39
  // TODO v6: rename to filterPanelOperator
40
40
  filterPanelOperatorAnd: 'I',
@@ -55,11 +55,11 @@ const plPLGrid = {
55
55
  filterOperatorOnOrBefore: 'mniejsze lub równe',
56
56
  filterOperatorIsEmpty: 'jest pusty',
57
57
  filterOperatorIsNotEmpty: 'nie jest pusty',
58
- // filterOperatorIsAnyOf: 'is any of',
58
+ filterOperatorIsAnyOf: 'jest jednym z',
59
59
  // Filter values text
60
- // filterValueAny: 'any',
61
- // filterValueTrue: 'true',
62
- // filterValueFalse: 'false',
60
+ filterValueAny: 'dowolny',
61
+ filterValueTrue: 'prawda',
62
+ filterValueFalse: 'fałsz',
63
63
  // Column menu text
64
64
  columnMenuLabel: 'Menu',
65
65
  columnMenuShowColumns: 'Pokaż wszystkie kolumny',
@@ -79,30 +79,30 @@ const plPLGrid = {
79
79
  // Total visible row amount footer text
80
80
  footerTotalVisibleRows: (visibleCount, totalCount) => `${visibleCount.toLocaleString()} z ${totalCount.toLocaleString()}`,
81
81
  // Checkbox selection text
82
- // checkboxSelectionHeaderName: 'Checkbox selection',
83
- // checkboxSelectionSelectAllRows: 'Select all rows',
84
- // checkboxSelectionUnselectAllRows: 'Unselect all rows',
85
- // checkboxSelectionSelectRow: 'Select row',
86
- // checkboxSelectionUnselectRow: 'Unselect row',
82
+ checkboxSelectionHeaderName: 'Pole wyboru',
83
+ checkboxSelectionSelectAllRows: 'Zaznacz wszystkie wiersze',
84
+ checkboxSelectionUnselectAllRows: 'Odznacz wszystkie wiersze',
85
+ checkboxSelectionSelectRow: 'Zaznacz wiersz',
86
+ checkboxSelectionUnselectRow: 'Odznacz wiersz',
87
87
  // Boolean cell text
88
- // booleanCellTrueLabel: 'yes',
89
- // booleanCellFalseLabel: 'no',
88
+ booleanCellTrueLabel: 'tak',
89
+ booleanCellFalseLabel: 'nie',
90
90
  // Actions cell more text
91
- actionsCellMore: 'więcej' // Column pinning text
92
- // pinToLeft: 'Pin to left',
93
- // pinToRight: 'Pin to right',
94
- // unpin: 'Unpin',
91
+ actionsCellMore: 'więcej',
92
+ // Column pinning text
93
+ pinToLeft: 'Przypnij do lewej',
94
+ pinToRight: 'Przypnij do prawej',
95
+ unpin: 'Odepnij',
95
96
  // Tree Data
96
- // treeDataGroupingHeaderName: 'Group',
97
- // treeDataExpand: 'see children',
98
- // treeDataCollapse: 'hide children',
97
+ treeDataGroupingHeaderName: 'Grupa',
98
+ treeDataExpand: 'pokaż elementy potomne',
99
+ treeDataCollapse: 'ukryj elementy potomne',
99
100
  // Grouping columns
100
- // groupingColumnHeaderName: 'Group',
101
- // groupColumn: name => `Group by ${name}`,
102
- // unGroupColumn: name => `Stop grouping by ${name}`,
101
+ groupingColumnHeaderName: 'Grupa',
102
+ groupColumn: name => `Grupuj według ${name}`,
103
+ unGroupColumn: name => `Rozgrupuj ${name}`,
103
104
  // Master/detail
104
- // expandDetailPanel: 'Expand',
105
- // collapseDetailPanel: 'Collapse',
106
-
105
+ expandDetailPanel: 'Rozwiń',
106
+ collapseDetailPanel: 'Zwiń'
107
107
  };
108
108
  export const plPL = getGridLocalization(plPLGrid, plPLCore);
@@ -21,13 +21,13 @@ import { GridLoggerApi } from './gridLoggerApi';
21
21
  import { GridScrollApi } from './gridScrollApi';
22
22
  import { GridVirtualScrollerApi } from './gridVirtualScrollerApi';
23
23
  import type { GridPreProcessingApi } from '../../hooks/core/preProcessing';
24
- import type { GridRowGroupsPreProcessingApi } from '../../hooks/core/rowGroupsPreProcessing';
24
+ import type { GridStrategyProcessingApi } from '../../hooks/core/strategyProcessing';
25
25
  import type { GridDimensionsApi } from '../../hooks/features/dimensions';
26
26
  import type { GridPaginationApi } from '../../hooks/features/pagination';
27
27
  import type { GridStatePersistenceApi } from '../../hooks/features/statePersistence';
28
28
  declare type GridStateApiUntyped = {
29
29
  [key in keyof (GridStateApi<any> & GridStatePersistenceApi<any>)]: any;
30
30
  };
31
- export interface GridApiCommon extends GridCoreApi, GridLoggerApi, GridPreProcessingApi, GridRowGroupsPreProcessingApi, GridDensityApi, GridDimensionsApi, GridRowApi, GridRowsMetaApi, GridEditingApi, GridParamsApi, GridColumnApi, GridSelectionApi, GridSortApi, GridPaginationApi, GridCsvExportApi, GridFocusApi, GridFilterApi, GridColumnMenuApi, GridPreferencesPanelApi, GridPrintExportApi, GridDisableVirtualizationApi, GridVirtualScrollerApi, GridLocaleTextApi, GridClipboardApi, GridScrollApi, GridStateApiUntyped {
31
+ export interface GridApiCommon extends GridCoreApi, GridLoggerApi, GridPreProcessingApi, GridStrategyProcessingApi, GridDensityApi, GridDimensionsApi, GridRowApi, GridRowsMetaApi, GridEditingApi, GridParamsApi, GridColumnApi, GridSelectionApi, GridSortApi, GridPaginationApi, GridCsvExportApi, GridFocusApi, GridFilterApi, GridColumnMenuApi, GridPreferencesPanelApi, GridPrintExportApi, GridDisableVirtualizationApi, GridVirtualScrollerApi, GridLocaleTextApi, GridClipboardApi, GridScrollApi, GridStateApiUntyped {
32
32
  }
33
33
  export {};
@@ -38,7 +38,7 @@ export interface GridEditingSharedApi {
38
38
  * @param {string} field The field to update. If not passed, updates all fields in the given row id.
39
39
  * @ignore - do not document.
40
40
  */
41
- unstable_runPendingEditCellValueChangeDebounce: (id: GridRowId, field?: string) => void;
41
+ unstable_runPendingEditCellValueMutation: (id: GridRowId, field?: string) => void;
42
42
  /**
43
43
  * @ignore - do not document.
44
44
  */
@@ -65,7 +65,7 @@ export interface GridRowEditingApi extends GridEditingSharedApi {
65
65
  */
66
66
  getRowMode: (id: GridRowId) => GridRowMode;
67
67
  /**
68
- * Updates the row at the given id with the values stored in the edit row model.
68
+ * Updates the row corresponding to the given id with the values stored in the edit row model.
69
69
  * @param {GridRowId} id The id to commit to.
70
70
  * @param {React.SyntheticEvent} event The event to pass forward.
71
71
  * @returns {boolean} A boolean indicating if there is an error.
@@ -84,7 +84,7 @@ export interface GridRowEditingApi extends GridEditingSharedApi {
84
84
  */
85
85
  export interface GridCellEditingApi extends GridEditingSharedApi {
86
86
  /**
87
- * Updates the field at the given id with the value stored in the edit row model.
87
+ * Updates the field corresponding to the given id with the value stored in the edit row model.
88
88
  * @param {GridCommitCellChangeParams} params The id and field to commit to.
89
89
  * @param {React.SyntheticEvent} event The event to pass forward.
90
90
  * @returns {boolean} A boolean indicating if there is an error.
@@ -112,8 +112,129 @@ export interface GridCellEditingApi extends GridEditingSharedApi {
112
112
  */
113
113
  unstable_setCellEditingEditCellValue: (params: GridEditCellValueParams) => Promise<boolean>;
114
114
  }
115
+ /**
116
+ * Params passed to `apiRef.current.startCellEditMode`.
117
+ */
118
+ interface GridStartCellEditModeParams {
119
+ /**
120
+ * The row id.
121
+ */
122
+ id: GridRowId;
123
+ /**
124
+ * The field.
125
+ */
126
+ field: string;
127
+ }
128
+ /**
129
+ * Params passed to `apiRef.current.stopCellEditMode`.
130
+ */
131
+ export interface GridStopCellEditModeParams {
132
+ /**
133
+ * The row id.
134
+ */
135
+ id: GridRowId;
136
+ /**
137
+ * The field.
138
+ */
139
+ field: string;
140
+ /**
141
+ * Whether or not to ignore the modifications made on this cell.
142
+ * @default false
143
+ */
144
+ ignoreModifications?: boolean;
145
+ /**
146
+ * To which cell to move focus after finishing editing.
147
+ * @default "none"
148
+ */
149
+ cellToFocusAfter?: 'none' | 'below' | 'right' | 'left';
150
+ }
151
+ /**
152
+ * Params passed to `apiRef.current.startRowEditMode`.
153
+ */
154
+ interface GridStartRowEditModeParams {
155
+ /**
156
+ * The row id.
157
+ */
158
+ id: GridRowId;
159
+ /**
160
+ * The field to put focus.
161
+ */
162
+ fieldToFocus?: string;
163
+ }
164
+ /**
165
+ * Params passed to `apiRef.current.stopRowEditMode`.
166
+ */
167
+ export interface GridStopRowEditModeParams {
168
+ /**
169
+ * The row id.
170
+ */
171
+ id: GridRowId;
172
+ /**
173
+ * Whether or not to ignore the modifications made on this cell.
174
+ * @default false
175
+ */
176
+ ignoreModifications?: boolean;
177
+ /**
178
+ * The field that has focus when the editing is stopped.
179
+ * Used to calculate which cell to move the focus to after finishing editing.
180
+ */
181
+ field?: string;
182
+ /**
183
+ * To which cell to move focus after finishing editing.
184
+ * Only works if the field is also specified, otherwise focus stay in the same cell.
185
+ * @default "none"
186
+ */
187
+ cellToFocusAfter?: 'none' | 'below' | 'right' | 'left';
188
+ }
189
+ export interface GridNewCellEditingApi extends Omit<GridEditingSharedApi, 'getEditRowsModel' | 'setEditRowsModel'>, Pick<GridCellEditingApi, 'getCellMode'> {
190
+ /**
191
+ * Puts the cell corresponding to the given row id and field into edit mode.
192
+ * @param {GridStartCellEditModeParams} params The row id and field of the cell to edit.
193
+ */
194
+ startCellEditMode(params: GridStartCellEditModeParams): void;
195
+ /**
196
+ * Puts the cell corresponding to the given row id and field into view mode and updates the original row with the new value stored.
197
+ * If `params.ignoreModifications` is `false` it will discard the modifications made.
198
+ * @param {GridStopCellEditModeParams} params The row id and field of the cell to stop editing.
199
+ */
200
+ stopCellEditMode(params: GridStopCellEditModeParams): void;
201
+ /**
202
+ * Updates the value of a cell being edited.
203
+ * Don't call this method directly, prefer `setEditCellValue`.
204
+ * @param {GridCommitCellChangeParams} params Object with the new value and id and field to update.
205
+ * @returns {Promise<boolean>} Resolves with `true` when the new value is valid.
206
+ * @ignore - do not document.
207
+ */
208
+ unstable_setCellEditingEditCellValue: (params: GridEditCellValueParams) => Promise<boolean>;
209
+ }
210
+ export interface GridNewRowEditingApi extends Omit<GridEditingSharedApi, 'getEditRowsModel' | 'setEditRowsModel'>, Pick<GridRowEditingApi, 'getRowMode'> {
211
+ /**
212
+ * Puts the row corresponding to the given id into edit mode.
213
+ * @param {GridStartCellEditModeParams} params The row id edit.
214
+ */
215
+ startRowEditMode(params: GridStartRowEditModeParams): void;
216
+ /**
217
+ * Puts the row corresponding to the given id and into view mode and updates the original row with the new values stored.
218
+ * If `params.ignoreModifications` is `false` it will discard the modifications made.
219
+ * @param {GridStopCellEditModeParams} params The row id and field of the cell to stop editing.
220
+ */
221
+ stopRowEditMode(params: GridStopRowEditModeParams): void;
222
+ /**
223
+ * Updates the value of a cell being edited.
224
+ * Don't call this method directly, prefer `setEditCellValue`.
225
+ * @param {GridCommitCellChangeParams} params Object with the new value and id and field to update.
226
+ * @returns {Promise<boolean>} Resolves with `true` when all values in the row are valid.
227
+ * @ignore - do not document.
228
+ */
229
+ unstable_setRowEditingEditCellValue: (params: GridEditCellValueParams) => Promise<boolean>;
230
+ }
115
231
  /**
116
232
  * The editing API interface that is available in the grid `apiRef`.
117
233
  */
118
- export interface GridEditingApi extends GridCellEditingApi, GridRowEditingApi {
234
+ export interface GridEditingApi extends GridCellEditingApi, GridRowEditingApi, GridNewCellEditingApi, GridNewRowEditingApi {
235
+ }
236
+ export interface GridOldEditingApi extends GridCellEditingApi, GridRowEditingApi {
237
+ }
238
+ export interface GridNewEditingApi extends GridNewCellEditingApi, GridNewRowEditingApi {
119
239
  }
240
+ export {};
@@ -13,4 +13,13 @@ export interface GridFocusApi {
13
13
  * @param {string} event The event that triggers the action.
14
14
  */
15
15
  setColumnHeaderFocus: (field: string, event?: MuiBaseEvent) => void;
16
+ /**
17
+ * Moves the focus to the cell situated at the given direction.
18
+ * If field is the last and direction=right, the focus goes to the next row.
19
+ * If field is the first and direction=left, the focus goes to the previous row.
20
+ * @param {GridRowId} id The base row id.
21
+ * @param {string} field The base column field.
22
+ * @param {'below' | 'right' | 'left'} direction Which direction is the next cell to focus.
23
+ */
24
+ unstable_moveFocusToRelativeCell: (id: GridRowId, field: string, direction: 'below' | 'right' | 'left') => void;
16
25
  }
@@ -21,5 +21,5 @@ export * from './gridCallbackDetails';
21
21
  export * from './gridScrollApi';
22
22
  export * from './gridVirtualScrollerApi';
23
23
  export * from './gridApiCommon';
24
- export type { GridEditingApi } from './gridEditingApi';
24
+ export type { GridEditingApi, GridOldEditingApi, GridNewEditingApi } from './gridEditingApi';
25
25
  export declare type GridEditRowApi = GridEditingApi;
@@ -230,6 +230,10 @@ export declare type GridColTypeDef = Omit<GridColDef, 'field'> & {
230
230
  };
231
231
  export declare type GridStateColDef = GridEnrichedColDef & {
232
232
  computedWidth: number;
233
+ /**
234
+ * If `true`, it means that at least one of the dimension's property of this column has been modified since the last time the column prop has changed.
235
+ */
236
+ hasBeenResized?: boolean;
233
237
  };
234
238
  /**
235
239
  * Meta Info about columns.
@@ -1,5 +1,6 @@
1
1
  import * as React from 'react';
2
2
  import type { GridCellEditCommitParams, GridColumnHeaderParams, GridColumnOrderChangeParams, GridColumnResizeParams, GridColumnVisibilityChangeParams, GridEditCellPropsParams, GridHeaderSelectionCheckboxParams, GridRowParams, GridRowSelectionCheckboxParams, GridScrollParams } from '../params';
3
+ import { GridCellEditStartParams, GridCellEditStopParams } from '../params/gridEditCellParams';
3
4
  import { GridCellParams } from '../params/gridCellParams';
4
5
  import type { GridFilterModel } from '../gridFilterModel';
5
6
  import type { GridSortModel } from '../gridSortModel';
@@ -10,6 +11,8 @@ import type { MuiBaseEvent } from '../muiEvent';
10
11
  import type { GridRowId, GridRowTreeNodeConfig } from '../gridRows';
11
12
  import type { GridPreProcessingGroup } from '../../hooks/core/preProcessing';
12
13
  import type { GridColumnVisibilityModel } from '../../hooks/features/columns';
14
+ import type { GridStrategyProcessorName } from '../../hooks/core/strategyProcessing';
15
+ import { GridRowEditStartParams, GridRowEditStopParams } from '../params/gridRowParams';
13
16
  export interface GridRowEventLookup {
14
17
  rowClick: {
15
18
  params: GridRowParams;
@@ -159,13 +162,16 @@ export interface GridEventLookup extends GridRowEventLookup, GridColumnHeaderEve
159
162
  debouncedResize: {
160
163
  params: ElementSize;
161
164
  };
162
- rowGroupsPreProcessingChange: {};
163
165
  preProcessorRegister: {
164
166
  params: GridPreProcessingGroup;
165
167
  };
166
168
  preProcessorUnregister: {
167
169
  params: GridPreProcessingGroup;
168
170
  };
171
+ activeStrategyProcessorChange: {
172
+ params: GridStrategyProcessorName;
173
+ };
174
+ strategyAvailabilityChange: {};
169
175
  columnsChange: {
170
176
  params: string[];
171
177
  };
@@ -202,11 +208,11 @@ export interface GridEventLookup extends GridRowEventLookup, GridColumnHeaderEve
202
208
  params: GridCellParams;
203
209
  };
204
210
  cellEditStart: {
205
- params: GridCellParams;
211
+ params: GridCellEditStartParams;
206
212
  event: React.MouseEvent<HTMLElement> | React.KeyboardEvent<HTMLElement>;
207
213
  };
208
214
  cellEditStop: {
209
- params: GridCellParams;
215
+ params: GridCellEditStopParams;
210
216
  event: MuiBaseEvent;
211
217
  };
212
218
  cellEditCommit: {
@@ -218,11 +224,11 @@ export interface GridEventLookup extends GridRowEventLookup, GridColumnHeaderEve
218
224
  event: React.SyntheticEvent<HTMLElement> | {};
219
225
  };
220
226
  rowEditStart: {
221
- params: GridRowParams;
227
+ params: GridRowEditStartParams;
222
228
  event: React.MouseEvent<HTMLElement> | React.KeyboardEvent<HTMLElement>;
223
229
  };
224
230
  rowEditStop: {
225
- params: GridRowParams;
231
+ params: GridRowEditStopParams;
226
232
  event: MuiBaseEvent;
227
233
  };
228
234
  rowEditCommit: {
@@ -275,19 +275,26 @@ declare enum GridEvents {
275
275
  pinnedColumnsChange = "pinnedColumnsChange",
276
276
  /**
277
277
  * Fired when a pre-processor is registered.
278
+ * TODO: Rename `pipeProcessorRegister`
278
279
  * @ignore - do not document.
279
280
  */
280
281
  preProcessorRegister = "preProcessorRegister",
281
282
  /**
282
283
  * Fired when a pre-processor is unregistered.
284
+ * TODO: Rename `pipeProcessorUnregister`
283
285
  * @ignore - do not document.
284
286
  */
285
287
  preProcessorUnregister = "preProcessorUnregister",
286
288
  /**
287
- * Fired when the row grouping function is changed
289
+ * Fired when a processor of the active strategy changes.
288
290
  * @ignore - do not document.
289
291
  */
290
- rowGroupsPreProcessingChange = "rowGroupsPreProcessingChange",
292
+ activeStrategyProcessorChange = "activeStrategyProcessorChange",
293
+ /**
294
+ * Fired when the callback to decide if a strategy is available or not changes.
295
+ * @ignore - do not document.
296
+ */
297
+ strategyAvailabilityChange = "strategyAvailabilityChange",
291
298
  /**
292
299
  * Fired when the sort model changes.
293
300
  */
@@ -65,7 +65,8 @@ var GridEvents;
65
65
  GridEvents["pinnedColumnsChange"] = "pinnedColumnsChange";
66
66
  GridEvents["preProcessorRegister"] = "preProcessorRegister";
67
67
  GridEvents["preProcessorUnregister"] = "preProcessorUnregister";
68
- GridEvents["rowGroupsPreProcessingChange"] = "rowGroupsPreProcessingChange";
68
+ GridEvents["activeStrategyProcessorChange"] = "activeStrategyProcessorChange";
69
+ GridEvents["strategyAvailabilityChange"] = "strategyAvailabilityChange";
69
70
  GridEvents["sortModelChange"] = "sortModelChange";
70
71
  GridEvents["filterModelChange"] = "filterModelChange";
71
72
  GridEvents["columnVisibilityModelChange"] = "columnVisibilityModelChange";
@@ -1,7 +1,7 @@
1
- import { GridCellValue } from './gridCell';
2
- export interface GridEditCellProps {
3
- value: GridCellValue;
1
+ export interface GridEditCellProps<V = any> {
2
+ value: V;
4
3
  isValidating?: boolean;
4
+ isProcessingProps?: boolean;
5
5
  [prop: string]: any;
6
6
  }
7
7
  export declare type GridEditRowProps = {
@@ -10,6 +10,7 @@ export declare type GridEditRowProps = {
10
10
  export declare type GridEditRowsModel = {
11
11
  [rowId: string]: GridEditRowProps;
12
12
  };
13
+ export declare type GridEditingState = GridEditRowsModel;
13
14
  export declare type GridEditMode = 'cell' | 'row';
14
15
  declare enum GridEditModes {
15
16
  Cell = "cell",
@@ -1,3 +1,4 @@
1
+ // TODO v6: rename to GridEditingState
1
2
  var GridEditModes;
2
3
 
3
4
  (function (GridEditModes) {
@@ -72,7 +72,7 @@ export interface GridRenderCellParams<V = any, R = any, F = V> extends GridCellP
72
72
  /**
73
73
  * GridEditCellProps containing api.
74
74
  */
75
- export interface GridRenderEditCellParams extends GridEditCellProps {
75
+ export interface GridRenderEditCellParams<V = any, R = any, F = V> extends GridCellParams<V, R, F>, GridEditCellProps<V> {
76
76
  /**
77
77
  * GridApi that let you manipulate the grid.
78
78
  * @deprecated Use the `apiRef` returned by `useGridApiContext` or `useGridApiRef` (only available in `@mui/x-data-grid-pro`)
@@ -145,4 +145,13 @@ export interface GridPreProcessEditCellProps {
145
145
  * The edit cell props.
146
146
  */
147
147
  props: GridEditCellProps;
148
+ /**
149
+ * Whether the new value is different from the stored value or not.
150
+ */
151
+ hasChanged?: boolean;
152
+ /**
153
+ * Object containing the props of the other fields.
154
+ * Only available for row editing and when using the new editing API.
155
+ */
156
+ otherFieldsProps?: Record<string, GridEditCellProps>;
148
157
  }
@@ -1,15 +1,31 @@
1
1
  import { GridCellValue } from '../gridCell';
2
2
  import { GridEditCellProps } from '../gridEditRowModel';
3
3
  import { GridRowId } from '../gridRows';
4
+ import { GridCellParams } from './gridCellParams';
4
5
  export interface GridEditCellPropsParams {
5
6
  id: GridRowId;
6
7
  field: string;
7
8
  props: GridEditCellProps;
8
9
  }
10
+ /**
11
+ * Params passed to `apiRef.current.setEditCellValue`.
12
+ */
9
13
  export interface GridEditCellValueParams {
14
+ /**
15
+ * The row id.
16
+ */
10
17
  id: GridRowId;
18
+ /**
19
+ * The field.
20
+ */
11
21
  field: string;
22
+ /**
23
+ * The new value for the cell.
24
+ */
12
25
  value: GridCellValue;
26
+ /**
27
+ * The debounce time in milliseconds.
28
+ */
13
29
  debounceMs?: number;
14
30
  }
15
31
  export interface GridCommitCellChangeParams {
@@ -21,3 +37,37 @@ export interface GridCellEditCommitParams {
21
37
  field: string;
22
38
  value: GridCellValue;
23
39
  }
40
+ declare enum GridCellEditStartReasons {
41
+ enterKeyDown = "enterKeyDown",
42
+ cellDoubleClick = "cellDoubleClick",
43
+ printableKeyDown = "printableKeyDown",
44
+ deleteKeyDown = "deleteKeyDown"
45
+ }
46
+ /**
47
+ * Params passed to the `cellEditStart` event.
48
+ */
49
+ export interface GridCellEditStartParams<V = any, R = any, F = V> extends GridCellParams<V, R, F> {
50
+ /**
51
+ * The reason for this event to be triggered.
52
+ * Only applied if `props.experimentalFeatures.newEditingApi: true`.
53
+ */
54
+ reason?: GridCellEditStartReasons;
55
+ }
56
+ declare enum GridCellEditStopReasons {
57
+ cellFocusOut = "cellFocusOut",
58
+ escapeKeyDown = "escapeKeyDown",
59
+ enterKeyDown = "enterKeyDown",
60
+ tabKeyDown = "tabKeyDown",
61
+ shiftTabKeyDown = "shiftTabKeyDown"
62
+ }
63
+ /**
64
+ * Params passed to the `cellEditStop event.
65
+ */
66
+ export interface GridCellEditStopParams<V = any, R = any, F = V> extends GridCellParams<V, R, F> {
67
+ /**
68
+ * The reason for this event to be triggered.
69
+ * Only available if `props.experimentalFeatures.newEditingApi: true`.
70
+ */
71
+ reason?: GridCellEditStopReasons;
72
+ }
73
+ export { GridCellEditStartReasons, GridCellEditStopReasons };
@@ -1 +1,34 @@
1
- export {};
1
+ // TODO v6 - remove
2
+
3
+ /**
4
+ * Params passed to `apiRef.current.setEditCellValue`.
5
+ */
6
+ // TODO v6 - remove
7
+ // TODO v6 - remove
8
+ var GridCellEditStartReasons;
9
+ /**
10
+ * Params passed to the `cellEditStart` event.
11
+ */
12
+
13
+ (function (GridCellEditStartReasons) {
14
+ GridCellEditStartReasons["enterKeyDown"] = "enterKeyDown";
15
+ GridCellEditStartReasons["cellDoubleClick"] = "cellDoubleClick";
16
+ GridCellEditStartReasons["printableKeyDown"] = "printableKeyDown";
17
+ GridCellEditStartReasons["deleteKeyDown"] = "deleteKeyDown";
18
+ })(GridCellEditStartReasons || (GridCellEditStartReasons = {}));
19
+
20
+ var GridCellEditStopReasons;
21
+ /**
22
+ * Params passed to the `cellEditStop event.
23
+ */
24
+
25
+ (function (GridCellEditStopReasons) {
26
+ GridCellEditStopReasons["cellFocusOut"] = "cellFocusOut";
27
+ GridCellEditStopReasons["escapeKeyDown"] = "escapeKeyDown";
28
+ GridCellEditStopReasons["enterKeyDown"] = "enterKeyDown";
29
+ GridCellEditStopReasons["tabKeyDown"] = "tabKeyDown";
30
+ GridCellEditStopReasons["shiftTabKeyDown"] = "shiftTabKeyDown";
31
+ })(GridCellEditStopReasons || (GridCellEditStopReasons = {}));
32
+
33
+ // https://github.com/mui/mui-x/pull/3738#discussion_r798504277
34
+ export { GridCellEditStartReasons, GridCellEditStopReasons };