@mui/x-data-grid-premium 8.27.2 → 8.27.3
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 +33 -0
- package/DataGridPremium/DataGridPremium.js +8 -1
- package/esm/DataGridPremium/DataGridPremium.js +8 -1
- package/esm/index.js +1 -1
- package/index.js +1 -1
- package/package.json +5 -5
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,39 @@
|
|
|
5
5
|
All notable changes to this project will be documented in this file.
|
|
6
6
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
7
7
|
|
|
8
|
+
## 8.27.3
|
|
9
|
+
|
|
10
|
+
_Feb 25, 2026_
|
|
11
|
+
|
|
12
|
+
We'd like to extend a big thank you to the 4 contributors who made this release possible. Here are some highlights ✨:
|
|
13
|
+
|
|
14
|
+
- 🐞 Bugfixes
|
|
15
|
+
- ⚡️ Improved dynamic data support and cache invalidation in lazy loading for Data Grid Pro
|
|
16
|
+
|
|
17
|
+
The following team members contributed to this release:
|
|
18
|
+
@cherniavskii, @michelengelen, @MBilalShafi, @arminmeh
|
|
19
|
+
|
|
20
|
+
### Data Grid
|
|
21
|
+
|
|
22
|
+
#### `@mui/x-data-grid@8.27.3`
|
|
23
|
+
|
|
24
|
+
- [DataGrid] Preserve key input during row edit when using `rowModesModel` (#21457) @michelengelen
|
|
25
|
+
|
|
26
|
+
#### `@mui/x-data-grid-pro@8.27.3` [](https://mui.com/r/x-pro-svg-link 'Pro plan')
|
|
27
|
+
|
|
28
|
+
Same changes as in `@mui/x-data-grid@8.27.3`, plus:
|
|
29
|
+
|
|
30
|
+
- [DataGridPro] Improve dynamic data support and cache invalidation in lazy loading (#21465) @MBilalShafi
|
|
31
|
+
|
|
32
|
+
#### `@mui/x-data-grid-premium@8.27.3` [](https://mui.com/r/x-premium-svg-link 'Premium plan')
|
|
33
|
+
|
|
34
|
+
Same changes as in `@mui/x-data-grid-pro@8.27.3`.
|
|
35
|
+
|
|
36
|
+
### Core
|
|
37
|
+
|
|
38
|
+
- [code-infra] Do not append `x` to the last version for the compare API (#21422) @arminmeh
|
|
39
|
+
- [docs-infra] Fix current version detection logic (#21415) @cherniavskii
|
|
40
|
+
|
|
8
41
|
## 8.27.2
|
|
9
42
|
|
|
10
43
|
_Feb 20, 2026_
|
|
@@ -50,7 +50,7 @@ const configuration = {
|
|
|
50
50
|
useGridParamsOverridableMethods: _useGridParamsOverridableMethods.useGridParamsOverridableMethods
|
|
51
51
|
}
|
|
52
52
|
};
|
|
53
|
-
const releaseInfo = "
|
|
53
|
+
const releaseInfo = "MTc3MTk3NzYwMDAwMA==";
|
|
54
54
|
const watermark = /*#__PURE__*/(0, _jsxRuntime.jsx)(_xLicense.Watermark, {
|
|
55
55
|
packageName: "x-data-grid-premium",
|
|
56
56
|
releaseInfo: releaseInfo
|
|
@@ -284,6 +284,13 @@ process.env.NODE_ENV !== "production" ? DataGridPremiumRaw.propTypes = {
|
|
|
284
284
|
get: _propTypes.default.func.isRequired,
|
|
285
285
|
set: _propTypes.default.func.isRequired
|
|
286
286
|
}),
|
|
287
|
+
/**
|
|
288
|
+
* If positive, the Data Grid will periodically revalidate data source rows by re-fetching them from the server when the cache entry has expired.
|
|
289
|
+
* If the refetched rows are different from the current rows, the grid will update the rows.
|
|
290
|
+
* Set to `0` to disable polling.
|
|
291
|
+
* @default 0
|
|
292
|
+
*/
|
|
293
|
+
dataSourceRevalidateMs: _propTypes.default.number,
|
|
287
294
|
/**
|
|
288
295
|
* If above 0, the row children will be expanded up to this depth.
|
|
289
296
|
* If equal to -1, all the row children will be expanded.
|
|
@@ -43,7 +43,7 @@ const configuration = {
|
|
|
43
43
|
useGridParamsOverridableMethods
|
|
44
44
|
}
|
|
45
45
|
};
|
|
46
|
-
const releaseInfo = "
|
|
46
|
+
const releaseInfo = "MTc3MTk3NzYwMDAwMA==";
|
|
47
47
|
const watermark = /*#__PURE__*/_jsx(Watermark, {
|
|
48
48
|
packageName: "x-data-grid-premium",
|
|
49
49
|
releaseInfo: releaseInfo
|
|
@@ -277,6 +277,13 @@ process.env.NODE_ENV !== "production" ? DataGridPremiumRaw.propTypes = {
|
|
|
277
277
|
get: PropTypes.func.isRequired,
|
|
278
278
|
set: PropTypes.func.isRequired
|
|
279
279
|
}),
|
|
280
|
+
/**
|
|
281
|
+
* If positive, the Data Grid will periodically revalidate data source rows by re-fetching them from the server when the cache entry has expired.
|
|
282
|
+
* If the refetched rows are different from the current rows, the grid will update the rows.
|
|
283
|
+
* Set to `0` to disable polling.
|
|
284
|
+
* @default 0
|
|
285
|
+
*/
|
|
286
|
+
dataSourceRevalidateMs: PropTypes.number,
|
|
280
287
|
/**
|
|
281
288
|
* If above 0, the row children will be expanded up to this depth.
|
|
282
289
|
* If equal to -1, all the row children will be expanded.
|
package/esm/index.js
CHANGED
package/index.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mui/x-data-grid-premium",
|
|
3
|
-
"version": "8.27.
|
|
3
|
+
"version": "8.27.3",
|
|
4
4
|
"author": "MUI Team",
|
|
5
5
|
"description": "The Premium plan edition of the MUI X Data Grid Components.",
|
|
6
6
|
"license": "SEE LICENSE IN LICENSE",
|
|
@@ -38,10 +38,10 @@
|
|
|
38
38
|
"@mui/x-internal-exceljs-fork": "4.4.3",
|
|
39
39
|
"clsx": "^2.1.1",
|
|
40
40
|
"prop-types": "^15.8.1",
|
|
41
|
-
"@mui/x-data-grid": "8.27.
|
|
42
|
-
"@mui/x-
|
|
43
|
-
"@mui/x-
|
|
44
|
-
"@mui/x-
|
|
41
|
+
"@mui/x-data-grid": "8.27.3",
|
|
42
|
+
"@mui/x-internals": "8.26.0",
|
|
43
|
+
"@mui/x-data-grid-pro": "8.27.3",
|
|
44
|
+
"@mui/x-license": "8.26.0"
|
|
45
45
|
},
|
|
46
46
|
"peerDependencies": {
|
|
47
47
|
"@emotion/react": "^11.9.0",
|