@mui/x-data-grid 5.17.9 → 5.17.10
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 +25 -0
- package/components/columnSelection/GridCellCheckboxRenderer.d.ts +1 -1
- package/components/columnSelection/GridCellCheckboxRenderer.js +1 -1
- package/index.js +1 -1
- package/legacy/components/columnSelection/GridCellCheckboxRenderer.js +1 -1
- package/legacy/index.js +1 -1
- package/modern/components/columnSelection/GridCellCheckboxRenderer.js +1 -1
- package/modern/index.js +1 -1
- package/node/components/columnSelection/GridCellCheckboxRenderer.js +1 -1
- package/node/index.js +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,31 @@
|
|
|
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.10
|
|
7
|
+
|
|
8
|
+
_Nov 4, 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
|
+
- 🌍 Add Ukrainian (uk-UA) locale to pickers (#6661) @Dufran
|
|
13
|
+
|
|
14
|
+
### `@mui/x-data-grid@v5.17.10` / `@mui/x-data-grid-pro@v5.17.10` / `@mui/x-data-grid-premium@v5.17.10`
|
|
15
|
+
|
|
16
|
+
#### Changes
|
|
17
|
+
|
|
18
|
+
- [DataGrid] Remove `React.memo` from `GridCellCheckboxRenderer` (#6688) @mattcorner
|
|
19
|
+
|
|
20
|
+
### `@mui/x-date-pickers@v5.0.7` / `@mui/x-date-pickers-pro@v5.0.7`
|
|
21
|
+
|
|
22
|
+
#### Changes
|
|
23
|
+
|
|
24
|
+
- [DateRangePicker] Fix input focused style and mobile behaviour (#6645) (#6714) @LukasTy
|
|
25
|
+
- [pickers] Add Ukrainian (uk-UA) locale on the date picker (#6661) @Dufran
|
|
26
|
+
|
|
27
|
+
### Docs
|
|
28
|
+
|
|
29
|
+
- [docs] Mark data grid column group available (#6659) @alexfauquette
|
|
30
|
+
|
|
6
31
|
## 5.17.9
|
|
7
32
|
|
|
8
33
|
_Oct 28, 2022_
|
|
@@ -2,4 +2,4 @@ import * as React from 'react';
|
|
|
2
2
|
import { GridRenderCellParams } from '../../models/params/gridCellParams';
|
|
3
3
|
declare const GridCellCheckboxForwardRef: React.ForwardRefExoticComponent<GridRenderCellParams<any, any, any> & React.RefAttributes<HTMLInputElement>>;
|
|
4
4
|
export { GridCellCheckboxForwardRef };
|
|
5
|
-
export declare const GridCellCheckboxRenderer: React.
|
|
5
|
+
export declare const GridCellCheckboxRenderer: React.ForwardRefExoticComponent<GridRenderCellParams<any, any, any> & React.RefAttributes<HTMLInputElement>>;
|
|
@@ -193,4 +193,4 @@ process.env.NODE_ENV !== "production" ? GridCellCheckboxForwardRef.propTypes = {
|
|
|
193
193
|
value: PropTypes.any
|
|
194
194
|
} : void 0;
|
|
195
195
|
export { GridCellCheckboxForwardRef };
|
|
196
|
-
export const GridCellCheckboxRenderer =
|
|
196
|
+
export const GridCellCheckboxRenderer = GridCellCheckboxForwardRef;
|
package/index.js
CHANGED
|
@@ -196,4 +196,4 @@ process.env.NODE_ENV !== "production" ? GridCellCheckboxForwardRef.propTypes = {
|
|
|
196
196
|
value: PropTypes.any
|
|
197
197
|
} : void 0;
|
|
198
198
|
export { GridCellCheckboxForwardRef };
|
|
199
|
-
export var GridCellCheckboxRenderer =
|
|
199
|
+
export var GridCellCheckboxRenderer = GridCellCheckboxForwardRef;
|
package/legacy/index.js
CHANGED
|
@@ -189,4 +189,4 @@ process.env.NODE_ENV !== "production" ? GridCellCheckboxForwardRef.propTypes = {
|
|
|
189
189
|
value: PropTypes.any
|
|
190
190
|
} : void 0;
|
|
191
191
|
export { GridCellCheckboxForwardRef };
|
|
192
|
-
export const GridCellCheckboxRenderer =
|
|
192
|
+
export const GridCellCheckboxRenderer = GridCellCheckboxForwardRef;
|
package/modern/index.js
CHANGED
|
@@ -216,5 +216,5 @@ process.env.NODE_ENV !== "production" ? GridCellCheckboxForwardRef.propTypes = {
|
|
|
216
216
|
*/
|
|
217
217
|
value: _propTypes.default.any
|
|
218
218
|
} : void 0;
|
|
219
|
-
const GridCellCheckboxRenderer =
|
|
219
|
+
const GridCellCheckboxRenderer = GridCellCheckboxForwardRef;
|
|
220
220
|
exports.GridCellCheckboxRenderer = GridCellCheckboxRenderer;
|
package/node/index.js
CHANGED