@mui/system 9.1.2 → 9.2.0
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 +41 -3
- package/Stack/Stack.js +1 -1
- package/Stack/Stack.mjs +1 -1
- package/Stack/StackProps.d.mts +1 -1
- package/Stack/StackProps.d.ts +1 -1
- package/index.js +1 -1
- package/index.mjs +1 -1
- package/package.json +4 -4
- package/version/index.js +3 -3
- package/version/index.mjs +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,44 @@
|
|
|
1
1
|
# [Versions](https://mui.com/material-ui/getting-started/versions/)
|
|
2
2
|
|
|
3
|
+
## 9.2.0
|
|
4
|
+
|
|
5
|
+
<!-- generated comparing v9.1.2..master -->
|
|
6
|
+
|
|
7
|
+
_Jul 2, 2026_
|
|
8
|
+
|
|
9
|
+
A big thanks to the 9 contributors who made this release possible.
|
|
10
|
+
|
|
11
|
+
- ⚙️ Add support for [`data-*` attributes on `slotProps`](https://mui.com/material-ui/guides/typescript/#allowing-data-attributes-on-slotprops).
|
|
12
|
+
|
|
13
|
+
### `@mui/material@9.1.3`
|
|
14
|
+
|
|
15
|
+
- [l10n] Add missing MuiPagination localization to zh-CN locale (#48741) @greymoth-jp
|
|
16
|
+
- [select] Guard display ref during mouse down (#48744) @michelengelen
|
|
17
|
+
|
|
18
|
+
### `@mui/utils@9.1.3`
|
|
19
|
+
|
|
20
|
+
- [utils] Add opt-in `DataAttributesOverrides` augmentation for slot props (#48554) @LukasTy
|
|
21
|
+
|
|
22
|
+
### Docs
|
|
23
|
+
|
|
24
|
+
- [docs] Improve Icon Dialog responsiveness on small screens (#48639) @Prakash1185
|
|
25
|
+
- [docs] Fix invalid UTF-8 in skill references (#48739) @mturac
|
|
26
|
+
|
|
27
|
+
### Core
|
|
28
|
+
|
|
29
|
+
- [code-infra] Resolve Renovate dashboard warnings (#48700) @Sushantplive
|
|
30
|
+
- [code-infra] Validate npm publishing through dry run (#48691) @brijeshb42
|
|
31
|
+
- [code-infra] Run prettier after renovate update (#48754) @Janpot
|
|
32
|
+
- [code-infra] Fix 'A11y results committed?' check on react-pinned nightly jobs (#48740) @Janpot
|
|
33
|
+
- [core] Remove leftover Joy UI references (#48719) @siriwatknp
|
|
34
|
+
- [code-infra] Bump react-router to 7.15.1 (#48725) @Janpot
|
|
35
|
+
- [docs-infra] Drive docs analytics IDs via ANALYTICS_ENV (#48694) @Janpot
|
|
36
|
+
- [docs-infra] Pre-render API page descriptions (#48693) @brijeshb42
|
|
37
|
+
- [code-infra][icons-material] Build lib/package.json with code-infra --no-expand (#48689) @Janpot
|
|
38
|
+
- [code-infra] Fix react@18/next nightly workflow (#48635) @Janpot
|
|
39
|
+
|
|
40
|
+
All contributors of this release in alphabetical order: @brijeshb42, @greymoth-jp, @Janpot, @LukasTy, @michelengelen, @mturac, @Prakash1185, @siriwatknp, @Sushantplive
|
|
41
|
+
|
|
3
42
|
## 9.1.2
|
|
4
43
|
|
|
5
44
|
<!-- generated comparing v9.1.1..master -->
|
|
@@ -20,7 +59,7 @@ A big thanks to the 5 contributors who made this release possible.
|
|
|
20
59
|
### Docs
|
|
21
60
|
|
|
22
61
|
- Fix typos in release instructions (#48687) @brijeshb42
|
|
23
|
-
- Update @mui/x
|
|
62
|
+
- Update @mui/x-\* packages to latest (#48661) @Janpot
|
|
24
63
|
|
|
25
64
|
### Core
|
|
26
65
|
|
|
@@ -28,12 +67,11 @@ A big thanks to the 5 contributors who made this release possible.
|
|
|
28
67
|
- [code-infra] Bump to latest code-infra packages (#48672) @brijeshb42
|
|
29
68
|
- [code-infra] Resolve remaining minimatch advisory (#48662) @Janpot
|
|
30
69
|
- [code-infra] Bump nx to resolve minimatch advisory (#48658) @Janpot
|
|
31
|
-
- [core] Drop @babel
|
|
70
|
+
- [core] Drop @babel/\* pnpm overrides (#48710) @Janpot
|
|
32
71
|
- [docs-infra] Revert "Pin StackBlitz demo vite to v7 and plugin-react to v5" (#48709) @Janpot
|
|
33
72
|
- [docs-infra] Fix code-block copy button broken on direct page load (#48653) @brijeshb42
|
|
34
73
|
- [test] Stabilize Data Grid demo data in Argos screenshots (#48654) @LukasTy
|
|
35
74
|
|
|
36
|
-
|
|
37
75
|
All contributors of this release in alphabetical order: @brijeshb42, @Janpot, @LukasTy, @mj12albert, @siriwatknp
|
|
38
76
|
|
|
39
77
|
## 9.1.1
|
package/Stack/Stack.js
CHANGED
|
@@ -56,7 +56,7 @@ process.env.NODE_ENV !== "production" ? Stack.propTypes /* remove-proptypes */ =
|
|
|
56
56
|
/**
|
|
57
57
|
* If `true`, the CSS flexbox `gap` is used instead of applying `margin` to children.
|
|
58
58
|
*
|
|
59
|
-
* While CSS `gap` removes the
|
|
59
|
+
* While CSS `gap` removes the known limitations,
|
|
60
60
|
* it is not fully supported in some browsers. We recommend checking https://caniuse.com/?search=flex%20gap before using this flag.
|
|
61
61
|
*
|
|
62
62
|
* To enable this flag globally, follow the theme's default props configuration.
|
package/Stack/Stack.mjs
CHANGED
|
@@ -50,7 +50,7 @@ process.env.NODE_ENV !== "production" ? Stack.propTypes /* remove-proptypes */ =
|
|
|
50
50
|
/**
|
|
51
51
|
* If `true`, the CSS flexbox `gap` is used instead of applying `margin` to children.
|
|
52
52
|
*
|
|
53
|
-
* While CSS `gap` removes the
|
|
53
|
+
* While CSS `gap` removes the known limitations,
|
|
54
54
|
* it is not fully supported in some browsers. We recommend checking https://caniuse.com/?search=flex%20gap before using this flag.
|
|
55
55
|
*
|
|
56
56
|
* To enable this flag globally, follow the theme's default props configuration.
|
package/Stack/StackProps.d.mts
CHANGED
|
@@ -25,7 +25,7 @@ export interface StackBaseProps {
|
|
|
25
25
|
/**
|
|
26
26
|
* If `true`, the CSS flexbox `gap` is used instead of applying `margin` to children.
|
|
27
27
|
*
|
|
28
|
-
* While CSS `gap` removes the
|
|
28
|
+
* While CSS `gap` removes the known limitations,
|
|
29
29
|
* it is not fully supported in some browsers. We recommend checking https://caniuse.com/?search=flex%20gap before using this flag.
|
|
30
30
|
*
|
|
31
31
|
* To enable this flag globally, follow the theme's default props configuration.
|
package/Stack/StackProps.d.ts
CHANGED
|
@@ -25,7 +25,7 @@ export interface StackBaseProps {
|
|
|
25
25
|
/**
|
|
26
26
|
* If `true`, the CSS flexbox `gap` is used instead of applying `margin` to children.
|
|
27
27
|
*
|
|
28
|
-
* While CSS `gap` removes the
|
|
28
|
+
* While CSS `gap` removes the known limitations,
|
|
29
29
|
* it is not fully supported in some browsers. We recommend checking https://caniuse.com/?search=flex%20gap before using this flag.
|
|
30
30
|
*
|
|
31
31
|
* To enable this flag globally, follow the theme's default props configuration.
|
package/index.js
CHANGED
package/index.mjs
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mui/system",
|
|
3
|
-
"version": "9.
|
|
3
|
+
"version": "9.2.0",
|
|
4
4
|
"author": "MUI Team",
|
|
5
5
|
"description": "MUI System is a set of CSS utilities to help you build custom designs more efficiently. It makes it possible to rapidly lay out custom designs.",
|
|
6
6
|
"license": "MIT",
|
|
@@ -28,10 +28,10 @@
|
|
|
28
28
|
"clsx": "^2.1.1",
|
|
29
29
|
"csstype": "^3.2.3",
|
|
30
30
|
"prop-types": "^15.8.1",
|
|
31
|
-
"@mui/private-theming": "^9.1.1",
|
|
32
31
|
"@mui/styled-engine": "^9.1.1",
|
|
33
|
-
"@mui/
|
|
34
|
-
"@mui/types": "^9.1.1"
|
|
32
|
+
"@mui/private-theming": "^9.2.0",
|
|
33
|
+
"@mui/types": "^9.1.1",
|
|
34
|
+
"@mui/utils": "^9.2.0"
|
|
35
35
|
},
|
|
36
36
|
"peerDependencies": {
|
|
37
37
|
"@emotion/react": "^11.5.0",
|
package/version/index.js
CHANGED
|
@@ -4,9 +4,9 @@ Object.defineProperty(exports, "__esModule", {
|
|
|
4
4
|
value: true
|
|
5
5
|
});
|
|
6
6
|
exports.version = exports.prerelease = exports.patch = exports.minor = exports.major = exports.default = void 0;
|
|
7
|
-
const version = exports.version = "9.
|
|
7
|
+
const version = exports.version = "9.2.0";
|
|
8
8
|
const major = exports.major = Number("9");
|
|
9
|
-
const minor = exports.minor = Number("
|
|
10
|
-
const patch = exports.patch = Number("
|
|
9
|
+
const minor = exports.minor = Number("2");
|
|
10
|
+
const patch = exports.patch = Number("0");
|
|
11
11
|
const prerelease = exports.prerelease = undefined;
|
|
12
12
|
var _default = exports.default = version;
|
package/version/index.mjs
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
export const version = "9.
|
|
1
|
+
export const version = "9.2.0";
|
|
2
2
|
export const major = Number("9");
|
|
3
|
-
export const minor = Number("
|
|
4
|
-
export const patch = Number("
|
|
3
|
+
export const minor = Number("2");
|
|
4
|
+
export const patch = Number("0");
|
|
5
5
|
export const prerelease = undefined;
|
|
6
6
|
export default version;
|