@mui/x-data-grid-pro 5.17.14 → 5.17.15

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -3,6 +3,34 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ ## 5.17.15
7
+
8
+ _Dec 8, 2022_
9
+
10
+ We'd like to offer a big thanks to the 4 contributors who made this release possible. Here are some highlights ✨:
11
+
12
+ - ✨ Fix lazy-loading not working in `DataGridPremium` (#7130) @m4theushw
13
+ - 🐞 Bugfixes
14
+
15
+ ### `@mui/x-data-grid@v5.17.15` / `@mui/x-data-grid-pro@v5.17.15` / `@mui/x-data-grid-premium@v5.17.15`
16
+
17
+ #### Changes
18
+
19
+ - [DataGridPremium] Add support for lazy-loading (#7130) @m4theushw
20
+ - [DataGridPremium] Pass `groupId` to the aggregation function (#7143) @m4theushw
21
+
22
+ ### `@mui/x-date-pickers@v5.0.10` / `@mui/x-date-pickers-pro@v5.0.10`
23
+
24
+ #### Changes
25
+
26
+ - [pickers] Initialize date without time when selecting year or month (#7136) @LukasTy
27
+
28
+ ### Docs
29
+
30
+ - [docs] Fix the nested import on the api pages (#7134) @flaviendelangle
31
+ - [docs] Keep track of the localization completion (#7099) @alexfauquette
32
+ - [docs] Update localization doc to use existing locale (#7104) @LukasTy
33
+
6
34
  ## 5.17.14
7
35
 
8
36
  _Dec 1, 2022_
package/index.js CHANGED
@@ -1,4 +1,4 @@
1
- /** @license MUI v5.17.14
1
+ /** @license MUI v5.17.15
2
2
  *
3
3
  * This source code is licensed under the MIT license found in the
4
4
  * LICENSE file in the root directory of this source tree.
@@ -15,6 +15,8 @@ export { useGridTreeDataPreProcessors } from '../hooks/features/treeData/useGrid
15
15
  export { TREE_DATA_STRATEGY } from '../hooks/features/treeData/gridTreeDataUtils';
16
16
  export { useGridRowPinning, rowPinningStateInitializer, } from '../hooks/features/rowPinning/useGridRowPinning';
17
17
  export { useGridRowPinningPreProcessors, addPinnedRow, } from '../hooks/features/rowPinning/useGridRowPinningPreProcessors';
18
+ export { useGridLazyLoader } from '../hooks/features/lazyLoader/useGridLazyLoader';
19
+ export { useGridLazyLoaderPreProcessors } from '../hooks/features/lazyLoader/useGridLazyLoaderPreProcessors';
18
20
  export type { GridExperimentalProFeatures, DataGridProPropsWithoutDefaultValue, DataGridProPropsWithDefaultValue, } from '../models/dataGridProProps';
19
21
  export { buildRowTree } from '../utils/tree/buildRowTree';
20
22
  export type { BuildRowTreeGroupingCriteria } from '../utils/tree/buildRowTree';
@@ -15,5 +15,7 @@ export { useGridTreeDataPreProcessors } from '../hooks/features/treeData/useGrid
15
15
  export { TREE_DATA_STRATEGY } from '../hooks/features/treeData/gridTreeDataUtils';
16
16
  export { useGridRowPinning, rowPinningStateInitializer } from '../hooks/features/rowPinning/useGridRowPinning';
17
17
  export { useGridRowPinningPreProcessors, addPinnedRow } from '../hooks/features/rowPinning/useGridRowPinningPreProcessors';
18
+ export { useGridLazyLoader } from '../hooks/features/lazyLoader/useGridLazyLoader';
19
+ export { useGridLazyLoaderPreProcessors } from '../hooks/features/lazyLoader/useGridLazyLoaderPreProcessors';
18
20
  export { buildRowTree } from '../utils/tree/buildRowTree';
19
21
  export { sortRowTree } from '../utils/tree/sortRowTree';
package/legacy/index.js CHANGED
@@ -1,4 +1,4 @@
1
- /** @license MUI v5.17.14
1
+ /** @license MUI v5.17.15
2
2
  *
3
3
  * This source code is licensed under the MIT license found in the
4
4
  * LICENSE file in the root directory of this source tree.
@@ -15,5 +15,7 @@ export { useGridTreeDataPreProcessors } from '../hooks/features/treeData/useGrid
15
15
  export { TREE_DATA_STRATEGY } from '../hooks/features/treeData/gridTreeDataUtils';
16
16
  export { useGridRowPinning, rowPinningStateInitializer } from '../hooks/features/rowPinning/useGridRowPinning';
17
17
  export { useGridRowPinningPreProcessors, addPinnedRow } from '../hooks/features/rowPinning/useGridRowPinningPreProcessors';
18
+ export { useGridLazyLoader } from '../hooks/features/lazyLoader/useGridLazyLoader';
19
+ export { useGridLazyLoaderPreProcessors } from '../hooks/features/lazyLoader/useGridLazyLoaderPreProcessors';
18
20
  export { buildRowTree } from '../utils/tree/buildRowTree';
19
21
  export { sortRowTree } from '../utils/tree/sortRowTree';
@@ -1,6 +1,6 @@
1
1
  import { ponyfillGlobal } from '@mui/utils';
2
2
  export var getReleaseInfo = function getReleaseInfo() {
3
- var releaseInfo = "MTY2OTg0OTIwMDAwMA==";
3
+ var releaseInfo = "MTY3MDQ1NDAwMDAwMA==";
4
4
 
5
5
  if (process.env.NODE_ENV !== 'production') {
6
6
  // A simple hack to set the value in the test environment (has no build step).
package/modern/index.js CHANGED
@@ -1,4 +1,4 @@
1
- /** @license MUI v5.17.14
1
+ /** @license MUI v5.17.15
2
2
  *
3
3
  * This source code is licensed under the MIT license found in the
4
4
  * LICENSE file in the root directory of this source tree.
@@ -15,5 +15,7 @@ export { useGridTreeDataPreProcessors } from '../hooks/features/treeData/useGrid
15
15
  export { TREE_DATA_STRATEGY } from '../hooks/features/treeData/gridTreeDataUtils';
16
16
  export { useGridRowPinning, rowPinningStateInitializer } from '../hooks/features/rowPinning/useGridRowPinning';
17
17
  export { useGridRowPinningPreProcessors, addPinnedRow } from '../hooks/features/rowPinning/useGridRowPinningPreProcessors';
18
+ export { useGridLazyLoader } from '../hooks/features/lazyLoader/useGridLazyLoader';
19
+ export { useGridLazyLoaderPreProcessors } from '../hooks/features/lazyLoader/useGridLazyLoaderPreProcessors';
18
20
  export { buildRowTree } from '../utils/tree/buildRowTree';
19
21
  export { sortRowTree } from '../utils/tree/sortRowTree';
@@ -1,6 +1,6 @@
1
1
  import { ponyfillGlobal } from '@mui/utils';
2
2
  export const getReleaseInfo = () => {
3
- const releaseInfo = "MTY2OTg0OTIwMDAwMA==";
3
+ const releaseInfo = "MTY3MDQ1NDAwMDAwMA==";
4
4
 
5
5
  if (process.env.NODE_ENV !== 'production') {
6
6
  // A simple hack to set the value in the test environment (has no build step).
package/node/index.js CHANGED
@@ -1,4 +1,4 @@
1
- /** @license MUI v5.17.14
1
+ /** @license MUI v5.17.15
2
2
  *
3
3
  * This source code is licensed under the MIT license found in the
4
4
  * LICENSE file in the root directory of this source tree.
@@ -26,6 +26,8 @@ var _exportNames = {
26
26
  rowPinningStateInitializer: true,
27
27
  useGridRowPinningPreProcessors: true,
28
28
  addPinnedRow: true,
29
+ useGridLazyLoader: true,
30
+ useGridLazyLoaderPreProcessors: true,
29
31
  buildRowTree: true,
30
32
  sortRowTree: true
31
33
  };
@@ -137,6 +139,18 @@ Object.defineProperty(exports, "useGridInfiniteLoader", {
137
139
  return _useGridInfiniteLoader.useGridInfiniteLoader;
138
140
  }
139
141
  });
142
+ Object.defineProperty(exports, "useGridLazyLoader", {
143
+ enumerable: true,
144
+ get: function () {
145
+ return _useGridLazyLoader.useGridLazyLoader;
146
+ }
147
+ });
148
+ Object.defineProperty(exports, "useGridLazyLoaderPreProcessors", {
149
+ enumerable: true,
150
+ get: function () {
151
+ return _useGridLazyLoaderPreProcessors.useGridLazyLoaderPreProcessors;
152
+ }
153
+ });
140
154
  Object.defineProperty(exports, "useGridRowPinning", {
141
155
  enumerable: true,
142
156
  get: function () {
@@ -220,6 +234,10 @@ var _useGridRowPinning = require("../hooks/features/rowPinning/useGridRowPinning
220
234
 
221
235
  var _useGridRowPinningPreProcessors = require("../hooks/features/rowPinning/useGridRowPinningPreProcessors");
222
236
 
237
+ var _useGridLazyLoader = require("../hooks/features/lazyLoader/useGridLazyLoader");
238
+
239
+ var _useGridLazyLoaderPreProcessors = require("../hooks/features/lazyLoader/useGridLazyLoaderPreProcessors");
240
+
223
241
  var _buildRowTree = require("../utils/tree/buildRowTree");
224
242
 
225
243
  var _sortRowTree = require("../utils/tree/sortRowTree");
@@ -8,7 +8,7 @@ exports.getReleaseInfo = void 0;
8
8
  var _utils = require("@mui/utils");
9
9
 
10
10
  const getReleaseInfo = () => {
11
- const releaseInfo = "MTY2OTg0OTIwMDAwMA==";
11
+ const releaseInfo = "MTY3MDQ1NDAwMDAwMA==";
12
12
 
13
13
  if (process.env.NODE_ENV !== 'production') {
14
14
  // A simple hack to set the value in the test environment (has no build step).
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mui/x-data-grid-pro",
3
- "version": "5.17.14",
3
+ "version": "5.17.15",
4
4
  "description": "The Pro plan edition of the data grid component (MUI X).",
5
5
  "author": "MUI Team",
6
6
  "main": "./node/index.js",
@@ -1,6 +1,6 @@
1
1
  import { ponyfillGlobal } from '@mui/utils';
2
2
  export const getReleaseInfo = () => {
3
- const releaseInfo = "MTY2OTg0OTIwMDAwMA==";
3
+ const releaseInfo = "MTY3MDQ1NDAwMDAwMA==";
4
4
 
5
5
  if (process.env.NODE_ENV !== 'production') {
6
6
  // A simple hack to set the value in the test environment (has no build step).