@mui/x-date-pickers 7.23.0 → 7.23.1

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,72 @@
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
+ ## 7.23.1
7
+
8
+ _Dec 5, 2024_
9
+
10
+ We'd like to offer a big thanks to the 7 contributors who made this release possible. Here are some highlights ✨:
11
+
12
+ - 🌍 Improve German locale on the Data Grid component
13
+ - 🐞 Bugfixes
14
+
15
+ Special thanks go out to the community contributors who have helped make this release possible:
16
+ @lhilgert9.
17
+
18
+ Following are all team members who have contributed to this release:
19
+ @arthurbalduini, @cherniavskii, @flaviendelangle, @JCQuintas, @LukasTy and @MBilalShafi.
20
+
21
+ <!--/ HIGHLIGHT_ABOVE_SEPARATOR /-->
22
+
23
+ ### Data Grid
24
+
25
+ #### `@mui/x-data-grid@7.23.1`
26
+
27
+ - [DataGrid] Make column autosizing work with flex columns (#15712) @cherniavskii
28
+ - [l10n] Improve German (de-DE) locale (#15641) @lhilgert9
29
+
30
+ #### `@mui/x-data-grid-pro@7.23.1` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
31
+
32
+ Same changes as in `@mui/x-data-grid@7.23.1`, plus:
33
+
34
+ - [DataGridPro] Cleanup pinned rows on removal (#15702) @cherniavskii
35
+
36
+ #### `@mui/x-data-grid-premium@7.23.1` [![premium](https://mui.com/r/x-premium-svg)](https://mui.com/r/x-premium-svg-link 'Premium plan')
37
+
38
+ Same changes as in `@mui/x-data-grid-pro@7.23.1`.
39
+
40
+ ### Date and Time Pickers
41
+
42
+ #### `@mui/x-date-pickers@7.23.1`
43
+
44
+ - [TimePicker] Prevent mouse events after `touchend` event (#15430) @arthurbalduini
45
+
46
+ #### `@mui/x-date-pickers-pro@7.23.1` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
47
+
48
+ Same changes as in `@mui/x-date-pickers@7.23.1`.
49
+
50
+ ### Charts
51
+
52
+ #### `@mui/x-charts@7.23.1`
53
+
54
+ - [charts] Improve SVG `pattern` and `gradient` support (#15724) @JCQuintas
55
+
56
+ #### `@mui/x-charts-pro@7.23.1` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
57
+
58
+ Same changes as in `@mui/x-charts@7.23.1`.
59
+
60
+ ### Docs
61
+
62
+ - [docs] Fix Pickers theme augmentation example (#15675) @LukasTy
63
+ - [docs] Remove duplicated warning (#15715) @cherniavskii
64
+ - [test] Force hover in headless Chrome (#15711) @cherniavskii
65
+ - [docs-infra] Bump `@mui/internal-markdown` to support nested demo imports (#15738) @alexfauquette
66
+ - [docs] Improve SEO titles for the Data Grid (#15695) @MBilalShafi
67
+
68
+ ### Core
69
+
70
+ - [core] Add `@mui/x-tree-view-pro` to `releaseChangelog` (#15747) @flaviendelangle
71
+
6
72
  ## 7.23.0
7
73
 
8
74
  _Nov 29, 2024_
@@ -222,6 +222,7 @@ export function Clock(inProps) {
222
222
  setTime(event, 'finish');
223
223
  isMoving.current = false;
224
224
  }
225
+ event.preventDefault();
225
226
  };
226
227
  const handleMouseMove = event => {
227
228
  // event.buttons & PRIMARY_MOUSE_BUTTON
package/index.js CHANGED
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @mui/x-date-pickers v7.23.0
2
+ * @mui/x-date-pickers v7.23.1
3
3
  *
4
4
  * @license MIT
5
5
  * This source code is licensed under the MIT license found in the
@@ -222,6 +222,7 @@ export function Clock(inProps) {
222
222
  setTime(event, 'finish');
223
223
  isMoving.current = false;
224
224
  }
225
+ event.preventDefault();
225
226
  };
226
227
  const handleMouseMove = event => {
227
228
  // event.buttons & PRIMARY_MOUSE_BUTTON
package/modern/index.js CHANGED
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @mui/x-date-pickers v7.23.0
2
+ * @mui/x-date-pickers v7.23.1
3
3
  *
4
4
  * @license MIT
5
5
  * This source code is licensed under the MIT license found in the
@@ -230,6 +230,7 @@ function Clock(inProps) {
230
230
  setTime(event, 'finish');
231
231
  isMoving.current = false;
232
232
  }
233
+ event.preventDefault();
233
234
  };
234
235
  const handleMouseMove = event => {
235
236
  // event.buttons & PRIMARY_MOUSE_BUTTON
package/node/index.js CHANGED
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @mui/x-date-pickers v7.23.0
2
+ * @mui/x-date-pickers v7.23.1
3
3
  *
4
4
  * @license MIT
5
5
  * This source code is licensed under the MIT license found in the
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mui/x-date-pickers",
3
- "version": "7.23.0",
3
+ "version": "7.23.1",
4
4
  "description": "The community edition of the Date and Time Picker components (MUI X).",
5
5
  "author": "MUI Team",
6
6
  "main": "./node/index.js",