@mui/x-internals 8.11.0 → 8.11.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 +74 -0
- package/esm/store/Store.d.ts +1 -0
- package/esm/store/useStore.d.ts +5 -5
- package/esm/store/useStoreEffect.d.ts +2 -2
- package/package.json +5 -5
- package/store/Store.d.ts +1 -0
- package/store/useStore.d.ts +5 -5
- package/store/useStoreEffect.d.ts +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,80 @@
|
|
|
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.11.1
|
|
9
|
+
|
|
10
|
+
_Sep 4, 2025_
|
|
11
|
+
|
|
12
|
+
We'd like to extend a big thank you to the 6 contributors who made this release possible. Here are some highlights ✨:
|
|
13
|
+
|
|
14
|
+
Special thanks go out to the community members for their valuable contributions:
|
|
15
|
+
@sai6855
|
|
16
|
+
|
|
17
|
+
The following are all team members who have contributed to this release:
|
|
18
|
+
@brijeshb42, @flaviendelangle, @JCQuintas, @mapache-salvaje, @oliviertassinari
|
|
19
|
+
|
|
20
|
+
### Data Grid
|
|
21
|
+
|
|
22
|
+
#### `@mui/x-data-grid@8.11.1`
|
|
23
|
+
|
|
24
|
+
- [DataGrid] Refine types in `GridCell` component (#19384) @sai6855
|
|
25
|
+
|
|
26
|
+
#### `@mui/x-data-grid-pro@8.11.1` [](https://mui.com/r/x-pro-svg-link 'Pro plan')
|
|
27
|
+
|
|
28
|
+
Same changes as in `@mui/x-data-grid@8.11.1`.
|
|
29
|
+
|
|
30
|
+
#### `@mui/x-data-grid-premium@8.11.1` [](https://mui.com/r/x-premium-svg-link 'Premium plan')
|
|
31
|
+
|
|
32
|
+
Same changes as in `@mui/x-data-grid-pro@8.11.1`.
|
|
33
|
+
|
|
34
|
+
### Date and Time Pickers
|
|
35
|
+
|
|
36
|
+
#### `@mui/x-date-pickers@8.11.1`
|
|
37
|
+
|
|
38
|
+
- [pickers] Merge `slotProps` for input adornment in `PickerFieldUI` component (#19399) @sai6855
|
|
39
|
+
|
|
40
|
+
#### `@mui/x-date-pickers-pro@8.11.1` [](https://mui.com/r/x-pro-svg-link 'Pro plan')
|
|
41
|
+
|
|
42
|
+
Same changes as in `@mui/x-date-pickers@8.11.1`.
|
|
43
|
+
|
|
44
|
+
### Charts
|
|
45
|
+
|
|
46
|
+
#### `@mui/x-charts@8.11.1`
|
|
47
|
+
|
|
48
|
+
- [charts] Prevent crash and warn user on incorrect `axisId` when composing (#19397) @JCQuintas
|
|
49
|
+
|
|
50
|
+
#### `@mui/x-charts-pro@8.11.1` [](https://mui.com/r/x-pro-svg-link 'Pro plan')
|
|
51
|
+
|
|
52
|
+
Same changes as in `@mui/x-charts@8.11.1`.
|
|
53
|
+
|
|
54
|
+
### Tree View
|
|
55
|
+
|
|
56
|
+
#### `@mui/x-tree-view@8.11.1`
|
|
57
|
+
|
|
58
|
+
- [tree view] Expose the methods to manually refetch the children of an item (#19248) @flaviendelangle
|
|
59
|
+
- [tree view] Use the shared store implementation instead of the custom one (#19261) @flaviendelangle
|
|
60
|
+
|
|
61
|
+
#### `@mui/x-tree-view-pro@8.11.1` [](https://mui.com/r/x-pro-svg-link 'Pro plan')
|
|
62
|
+
|
|
63
|
+
Same changes as in `@mui/x-tree-view@8.11.1`.
|
|
64
|
+
|
|
65
|
+
### Codemod
|
|
66
|
+
|
|
67
|
+
#### `@mui/x-codemod@8.11.1`
|
|
68
|
+
|
|
69
|
+
Internal changes.
|
|
70
|
+
|
|
71
|
+
### Docs
|
|
72
|
+
|
|
73
|
+
- [docs] Fix grammar and spelling mistakes on the Date and Time Pickers pages (#19300) @mapache-salvaje
|
|
74
|
+
- [docs] Remove wrong legend info (#19383) @JCQuintas
|
|
75
|
+
|
|
76
|
+
### Core
|
|
77
|
+
|
|
78
|
+
- [internal] Fix action alert (#19388) @oliviertassinari
|
|
79
|
+
- [internal] Fix pnpm valelint to have 0 errors @oliviertassinari
|
|
80
|
+
- [infra] Remove "main" fields from publishable packages (#19407) @brijeshb42
|
|
81
|
+
|
|
8
82
|
## 8.11.0
|
|
9
83
|
|
|
10
84
|
_Aug 29, 2025_
|
package/esm/store/Store.d.ts
CHANGED
package/esm/store/useStore.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import type {
|
|
2
|
-
export declare function useStore<State, Value>(store:
|
|
3
|
-
export declare function useStore<State, Value, A1>(store:
|
|
4
|
-
export declare function useStore<State, Value, A1, A2>(store:
|
|
5
|
-
export declare function useStore<State, Value, A1, A2, A3>(store:
|
|
1
|
+
import type { ReadonlyStore } from "./Store.js";
|
|
2
|
+
export declare function useStore<State, Value>(store: ReadonlyStore<State>, selector: (state: State) => Value): Value;
|
|
3
|
+
export declare function useStore<State, Value, A1>(store: ReadonlyStore<State>, selector: (state: State, a1: A1) => Value, a1: A1): Value;
|
|
4
|
+
export declare function useStore<State, Value, A1, A2>(store: ReadonlyStore<State>, selector: (state: State, a1: A1, a2: A2) => Value, a1: A1, a2: A2): Value;
|
|
5
|
+
export declare function useStore<State, Value, A1, A2, A3>(store: ReadonlyStore<State>, selector: (state: State, a1: A1, a2: A2, a3: A3) => Value, a1: A1, a2: A2, a3: A3): Value;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import type {
|
|
1
|
+
import type { ReadonlyStore } from "./Store.js";
|
|
2
2
|
/**
|
|
3
3
|
* An Effect implementation for the Store. This should be used for side-effects only. To
|
|
4
4
|
* compute and store derived state, use `createSelectorMemoized` instead.
|
|
5
5
|
*/
|
|
6
|
-
export declare function useStoreEffect<State, Value>(store:
|
|
6
|
+
export declare function useStoreEffect<State, Value>(store: ReadonlyStore<State>, selector: (state: State) => Value, effect: (previous: Value, next: Value) => void): void;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mui/x-internals",
|
|
3
|
-
"version": "8.11.
|
|
3
|
+
"version": "8.11.1",
|
|
4
4
|
"author": "MUI Team",
|
|
5
5
|
"description": "Utility functions for the MUI X packages (internal use only).",
|
|
6
6
|
"license": "MIT",
|
|
@@ -45,13 +45,13 @@
|
|
|
45
45
|
"exports": {
|
|
46
46
|
"./package.json": "./package.json",
|
|
47
47
|
"./*": {
|
|
48
|
-
"import": {
|
|
49
|
-
"types": "./esm/*/index.d.ts",
|
|
50
|
-
"default": "./esm/*/index.js"
|
|
51
|
-
},
|
|
52
48
|
"require": {
|
|
53
49
|
"types": "./*/index.d.ts",
|
|
54
50
|
"default": "./*/index.js"
|
|
51
|
+
},
|
|
52
|
+
"default": {
|
|
53
|
+
"types": "./esm/*/index.d.ts",
|
|
54
|
+
"default": "./esm/*/index.js"
|
|
55
55
|
}
|
|
56
56
|
},
|
|
57
57
|
"./esm": null
|
package/store/Store.d.ts
CHANGED
package/store/useStore.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import type {
|
|
2
|
-
export declare function useStore<State, Value>(store:
|
|
3
|
-
export declare function useStore<State, Value, A1>(store:
|
|
4
|
-
export declare function useStore<State, Value, A1, A2>(store:
|
|
5
|
-
export declare function useStore<State, Value, A1, A2, A3>(store:
|
|
1
|
+
import type { ReadonlyStore } from "./Store.js";
|
|
2
|
+
export declare function useStore<State, Value>(store: ReadonlyStore<State>, selector: (state: State) => Value): Value;
|
|
3
|
+
export declare function useStore<State, Value, A1>(store: ReadonlyStore<State>, selector: (state: State, a1: A1) => Value, a1: A1): Value;
|
|
4
|
+
export declare function useStore<State, Value, A1, A2>(store: ReadonlyStore<State>, selector: (state: State, a1: A1, a2: A2) => Value, a1: A1, a2: A2): Value;
|
|
5
|
+
export declare function useStore<State, Value, A1, A2, A3>(store: ReadonlyStore<State>, selector: (state: State, a1: A1, a2: A2, a3: A3) => Value, a1: A1, a2: A2, a3: A3): Value;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import type {
|
|
1
|
+
import type { ReadonlyStore } from "./Store.js";
|
|
2
2
|
/**
|
|
3
3
|
* An Effect implementation for the Store. This should be used for side-effects only. To
|
|
4
4
|
* compute and store derived state, use `createSelectorMemoized` instead.
|
|
5
5
|
*/
|
|
6
|
-
export declare function useStoreEffect<State, Value>(store:
|
|
6
|
+
export declare function useStoreEffect<State, Value>(store: ReadonlyStore<State>, selector: (state: State) => Value, effect: (previous: Value, next: Value) => void): void;
|